/* ===== ARTICLE PAGE ===== */
.page-article {
  background: #fff;
}

.article-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.article-hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 24px;
}

.article-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 500;
}

.article-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 64px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
}

/* Body Container */
.article-body-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}

.article-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.5;
  color: #111;
  text-align: center;
  margin-bottom: 80px;
  font-style: italic;
}

.article-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.article-text-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #111;
}

.article-text-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.article-text-block.wide {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.article-img-block img {
  width: 100%;
  height: auto;
  display: block;
}

.article-quote {
  margin: 80px 0;
  padding: 48px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.article-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  color: #111;
  line-height: 1.4;
}

.article-footer-cta {
  text-align: center;
  margin-top: 100px;
  border-top: 1px solid #eee;
  padding-top: 60px;
}

.article-footer-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 16px 48px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 800px) {
  .article-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .article-img-block {
    order: -1;
  }
  .article-quote blockquote {
    font-size: 24px;
  }
}
