/* article.css */
/* Stylizacja sekcji artykułu */
.article {
    background: #f9f9f9; /* Jasne tło, spójne z sekcją "O Mnie" */
    padding: 80px 20px;
    text-align: center;
    border-top: 3px solid #D4AF37; /* Pasek akcentujący */
  }
  
  .article-container {
    max-width: 800px; /* Ograniczenie szerokości dla czytelności */
    margin: 0 auto;
    text-align: left;
  }
  
  .article h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
  }
  
  .article h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 90%;
    height: 3px;
    background: #D4AF37; /* Akcent kolorystyczny */
  }
  
  .article-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .article-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtelny cień */
  }
  
  .article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
  }
  
  .article-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  
  .article-content p {
    margin-bottom: 20px;
  }
  
  .article-content a{
    text-decoration: none;
    transition: .3s ease-out;
  }
  .article-content a:hover{
    color: rgb(104, 32, 104);
  }
  .article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
  }

  .article-footer a {
    text-decoration: none;
  }
  
  .social-icon {
    font-size: 1.5rem;
    color: #D4AF37; /* Kolor akcentujący */
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: #333; /* Zmiana koloru przy najechaniu */
  }
  /* Responsywność */
  @media (max-width: 768px) {
    .article-container {
      padding: 0 20px;
    }
  
    .article h1 {
      font-size: 2rem;
    }
  
    .article-content {
      font-size: 1rem;
    }
  
    .article-footer {
      flex-direction: column;
      gap: 20px;
    }
  }