/* ===== ABOUT PAGE STYLES ===== */

.about-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #fafbfc;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== ARTICLE HEADER ===== */
.article-header {
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 4rem;
  text-align: center;
}

.header-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category {
  color: #2789ce;
  background: rgba(39, 137, 206, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(39, 137, 206, 0.15);
}

.publish-date {
  color: #64748b;
  font-weight: 300;
}

.article-title {
  font-size: 4rem;
  font-weight: 300;
  color: #1a202c;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}

.article-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2789ce, transparent);
}

.article-subtitle {
  font-size: 1.3rem;
  color: #4a5568;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ===== ARTICLE CONTENT ===== */
.article-content {
  max-width: 100%;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section:last-child {
  margin-bottom: 2rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #374151;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* ===== HEADINGS ===== */
.content-section h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #1a202c;
  margin: 0 0 2rem 0;
  line-height: 1.3;
}

.content-section h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a202c;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

/* ===== QUOTES AND STATEMENTS ===== */
.statement {
  font-size: 1.4rem;
  color: #1a202c;
  text-align: center;
  margin: 3rem 0;
  padding: 0;
  border: none;
  font-style: normal;
}

.main-quote {
  font-size: 1.8rem;
  font-weight: 300;
  color: #1a202c;
  font-style: italic;
  text-align: center;
  margin: 3rem 0;
  padding: 0;
  border: none;
}

.closing-statement {
  font-size: 1.3rem;
  color: #1a202c;
  text-align: center;
  margin: 3rem 0;
  font-weight: 500;
}

.invitation {
  font-size: 1.1rem;
  color: #2789ce;
  font-weight: 400;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

/* ===== TOPIC LIST ===== */
.topic-list {
  margin-top: 2rem;
}

.topic-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.topic-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.topic-item h3 {
  margin-bottom: 1rem;
}

.topic-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .about-container {
    padding: 0 1.5rem;
    max-width: 100%;
  }

  .article-header {
    padding: 3rem 0 2rem 0;
  }

  .header-meta {
    gap: 1.5rem;
    font-size: 0.8rem;
  }

  .category {
    padding: 0.4rem 0.8rem;
  }

  .article-title {
    font-size: 2.8rem;
  }

  .article-subtitle {
    font-size: 1.1rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section h3 {
    font-size: 1.2rem;
  }

  .statement {
    font-size: 1.2rem;
  }

  .main-quote {
    font-size: 1.5rem;
  }

  .closing-statement {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 1rem;
  }

  .article-header {
    padding: 2rem 0 1.5rem 0;
  }

  .header-meta {
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
  }

  .article-title {
    font-size: 2.2rem;
  }

  .article-subtitle {
    font-size: 1rem;
  }

  .content-section {
    margin-bottom: 3rem;
  }

  .content-section p {
    font-size: 1rem;
  }

  .content-section h2 {
    font-size: 1.3rem;
  }

  .content-section h3 {
    font-size: 1.1rem;
  }

  .topic-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .statement {
    font-size: 1.1rem;
  }

  .main-quote {
    font-size: 1.3rem;
  }

  .closing-statement {
    font-size: 1rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  .category {
    border: 2px solid #2789ce;
  }
}
