/* ── BLOG TEMPLATE SPECIFIC ── */
.blog-container {
  margin-top: 100px;
}

.blog-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 0 0 40px 40px;
  background: var(--charcoal);
}

.blog-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.hero-overlay {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(28,23,18,0.9) 100%);
  padding: 60px 24px;
  z-index: 1;
  color: #fff;
}

.category-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(14px, 4vw, 18px);
  opacity: 0.9;
  font-weight: 300;
  margin-top: 12px;
  max-width: 600px;
}

.article-body {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--smoke);
  line-height: 1.8;
}

.lead-text {
  font-size: 20px;
  color: var(--smoke);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── EEAT Section ── */
.author-eeat {
  margin: 80px 0 40px;
  padding: 40px;
  background: var(--gold-pale);
  border-radius: 24px;
  border: 1px solid rgba(184, 146, 74, 0.15);
}

.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.author-info p {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.7;
  margin: 0;
}

/* ── FAQ Section ── */
.blog-faq {
  margin: 80px 0;
}

.blog-faq h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--parchment);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(184, 146, 74, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 17px;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-symbol, .faq-icon {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.open .faq-symbol, 
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
}

/* ── CTA BOX ── */
.cta-box {
  background: var(--charcoal);
  color: #fff;
  padding: 60px 40px;
  border-radius: 32px;
  text-align: center;
  margin-top: 80px;
  border: 1px solid rgba(184, 146, 74, 0.2);
}

.cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-box p {
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
  box-shadow: 0 10px 20px rgba(184, 146, 74, 0.2);
}

.style-checklist {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--parchment);
  margin: 60px 0;
}

.style-checklist h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
}

.style-checklist ul {
  list-style: none;
}

.style-checklist li {
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}

.style-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.style-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  text-align: center;
  margin: 60px 0;
  padding: 40px;
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
  color: var(--gold);
}

@media (max-width: 768px) {
  .blog-hero {
    height: 50vh;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .author-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ── BLOG CONTACT SECTION ── */
.blog-contact {
    margin-top: 60px;
    padding: 60px 24px;
    background: var(--cream-dark);
    border-radius: 40px 40px 0 0;
    border-top: 1px solid var(--parchment);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--white);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--parchment);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-info h4 {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 4px;
}

.contact-info p {
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 24px;
    margin: 30px 0;
}

.footer-link {
    font-size: 13px;
    color: var(--smoke);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Related Articles Section */
.related-articles {
    margin-top: 4rem;
    padding: 2.5rem;
    background: #fbf9f6;
    border: 1px solid #eee;
    border-radius: 4px;
}

.related-articles h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.related-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ddd;
}

.related-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-articles a {
    text-decoration: none;
    color: #333;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.related-articles a::before {
    content: '→';
    margin-right: 12px;
    color: #c5a059;
    font-weight: bold;
}

.related-articles a:hover {
    color: #c5a059;
    transform: translateX(5px);
}
