/* ═══════════════════════════════════════════════════════════════
   SITE VITRINE — INSIGHTS.HTML SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy-deep);
  padding: 5rem 4rem 4rem;
  border-bottom: 1px solid rgba(180,154,106,0.15);
}
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.page-hero-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--gold); display: block; }
.page-hero-eyebrow span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero-sub { font-size: 0.9rem; color: rgba(245,240,232,0.45); max-width: 520px; line-height: 1.8; font-weight: 300; }

/* ─── INSIGHTS GRID ─── */
.insights-section { padding: 5rem 4rem; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 5rem; }

.insight-card {
  background: white;
  border: 1px solid rgba(28,43,58,0.08);
  border-top: 2px solid var(--gold);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(28,43,58,0.1); }
.insight-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.insight-category {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  background: rgba(180,154,106,0.1); border: 1px solid rgba(180,154,106,0.3);
  padding: 0.2rem 0.6rem;
}
.insight-date { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.08em; }
.insight-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--navy); line-height: 1.35; margin-bottom: 0.8rem; letter-spacing: 0.01em; }
.insight-excerpt { font-size: 0.8rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
.insight-read { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--gold); padding-bottom: 2px; display: inline-block; }

.insight-featured {
  grid-column: span 2;
  background: var(--navy-deep);
  border-top: 2px solid var(--gold);
  padding: 2.5rem;
}
.insight-featured .insight-title { color: var(--cream); font-size: 1.6rem; }
.insight-featured .insight-excerpt { color: rgba(245,240,232,0.55); }
.insight-featured .insight-read { color: var(--gold); border-color: rgba(180,154,106,0.5); }
.insight-featured .insight-date { color: rgba(245,240,232,0.35); }

/* ─── MODAL ARTICLE ─── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(17,29,40,0.92);
  z-index: 3000;
  overflow-y: auto;
  padding: 3rem 2rem;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.modal {
  background: var(--warm-white);
  max-width: 720px; width: 100%;
  padding: 3.5rem;
  position: relative;
  animation: fadeInUp 0.4s ease;
}
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--text-mid);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--navy); }
.modal-category { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.8rem; display: block; }
.modal h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--navy); line-height: 1.3; margin-bottom: 0.5rem; }
.modal-meta { font-size: 0.68rem; color: var(--text-light); margin-bottom: 2rem; letter-spacing: 0.08em; padding-bottom: 2rem; border-bottom: 1px solid rgba(28,43,58,0.1); }
.modal-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.9; font-weight: 300; }
.modal-body p { margin-bottom: 1.2rem; }
.modal-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--navy); margin: 2rem 0 0.8rem; }
.modal-body blockquote { border-left: 2px solid var(--gold); padding: 0.8rem 1.5rem; margin: 1.5rem 0; font-style: italic; color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; }
.modal-disclaimer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(28,43,58,0.1); font-size: 0.7rem; color: var(--text-light); line-height: 1.6; font-style: italic; }

/* ─── NEWSLETTER / CTA ─── */
.insights-cta {
  background: var(--cream);
  padding: 4rem;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-top: 1px solid rgba(28,43,58,0.08);
  flex-wrap: wrap;
}
.insights-cta-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--navy); margin-bottom: 0.5rem; }
.insights-cta-text p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.insights-cta-action { flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer-right { font-size: 0.65rem; color: rgba(245,240,232,0.2); max-width: 400px; text-align: right; }

/* ─── RESPONSIVE INSIGHTS ─── */
@media (max-width: 900px) {
  .page-hero, .insights-section { padding: 4rem 1.5rem; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-featured { grid-column: span 1; }
  .modal { padding: 2rem; }
  .footer-right { text-align: center; }
  .insights-cta { flex-direction: column; padding: 3rem 1.5rem; }
}
