
.article-page {
    padding: 60px 0;
  }

  .article-page {
    padding: 70px 0;
  margin-bottom: 150px;
  }

  .article-page .container {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 40px;
    border-radius: 8px;
    background: #fff;
  }
  
  
  .article-page .article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 30px;
    border: 2px solid #ccc;
    transition: transform 0.4s ease;
  }

  .article-page .article-image:hover {
    transform: scale(1.05);
  }
  
  
  
  .article-page .article-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0d518d;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  }



  .article-page .article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
  }

  .article-page .article-meta .article-author {
    border: 1px solid #379ffa;
    background: rgba(55,159,250,0.05);
    padding: 4px 10px;
    border-radius: 4px;
  }

  .article-page .article-meta .article-date {
    border-radius: 0;
    margin-bottom: 0;
  }



  .article-page .article-meta .article-author {
    background: #379ffa5d;
    color: #0d518d;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 0;
    
    
    align-self: flex-start;
  }
  
  
  .article-page .article-annotation {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #333;
    max-width: 800px;
    font-style: italic;
  }
  
  
  
  .article-page .article-content {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
  }
  
  .article-page .article-content p {
    margin-bottom: 20px;
  }
  
  
  .article-page .article-content h2,
  .article-page .article-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #0d518d;
    font-weight: bold;
  }
  
  
  .article-page .article-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .article-page .article-content ul li {
    margin-bottom: 10px;
  }
  
  .article-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #0d518d;
  }
  
  .article-paragraph {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

/* -------------------SHARE */

.article-share {
    margin-top: 40px;
    text-align: center;
  }
  .article-share p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #0d518d;
  }
  
  
  .share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  
  .share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #0d518d;
    color: #0d518d;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
  }
  
  
  .share-button img {
    width: 18px;
    height: 18px;
    display: block;
  }
  
  
  .share-button:hover {
    background: #0d518d;
    color: #fff;
  }
  
  
  /* share btns */

  .share-button.facebook {
    border-color: #4267B2;
    color: #4267B2;
  }
  .share-button.facebook:hover {
    background: #4267B2;
    color: #fff;
  }
  
  
  .share-button.telegram {
    border-color: #0088cc;
    color: #0088cc;
  }
  .share-button.telegram:hover {
    background: #0088cc;
    color: #fff;
  }
  
  
  .share-button.viber {
    border-color: #7360F2;
    color: #7360F2;
  }
  .share-button.viber:hover {
    background: #7360F2;
    color: #fff;
  }

  
.share-button.x {
    border-color: #000;
    color: #000;
  }
  .share-button.x:hover {
    background: #000;
    color: #fff;
  }
  
  
  .share-button.whatsapp {
    border-color: #25D366;
    color: #25D366;
  }
  .share-button.whatsapp:hover {
    background: #25D366;
    color: #fff;
  }

  
.share-button.linkedin {
    border-color: #0077B5;
    color: #0077B5;
  }
  .share-button.linkedin:hover {
    background: #0077B5;
    color: #fff;
  }