/* ═══════════════════════════════════════════════
   INSIGHTS.CSS — Insights page + Free Guide page
   Used by: insights.html, free-guide.html
   ═══════════════════════════════════════════════ */

/* ── Nav active link ── */
.nav-active-link {
  color: var(--navy) !important;
  font-weight: 500;
}

/* ── Quinn nav link ── */
.quinn-nav-link {
  font-style: italic;
  color: var(--gold) !important;
}

/* ══════════════════════════════════
   INSIGHTS PAGE
   ══════════════════════════════════ */

/* Hero */
.insights-hero {
  background: linear-gradient(rgba(8,14,30,0.72), rgba(8,14,30,0.72)),
              url('images/bg-aurora.jpg') center/cover no-repeat;
  padding: 140px 0 88px;
  text-align: center;
}

.insights-hero .label.light {
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.insights-hero-h1 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin: 18px 0 16px;
  line-height: 1.3;
}

.insights-hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
}

/* Layout: main + sidebar */
.insights-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .insights-layout {
    grid-template-columns: 1fr;
  }
  .insights-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .insights-sidebar .sidebar-widget:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .insights-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Tags */
.insights-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.itag {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.82rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.itag:hover,
.itag.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Article Grid */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 700px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* Article Card */
.insight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.insight-card:hover {
  box-shadow: 0 8px 28px rgba(18,30,68,0.10);
  transform: translateY(-2px);
}

.insight-card.ic-featured {
  grid-column: 1 / -1;
  background: var(--cream);
  border-color: transparent;
}

.ic-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ic-title {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}

.insight-card.ic-featured .ic-title {
  font-size: 1.55rem;
}

.ic-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 18px;
}

.ic-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.ic-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

/* Coming soon */
.insights-coming-soon {
  text-align: center;
  padding: 32px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* Sidebar */
.insights-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
}

.sidebar-guide {
  background: var(--navy);
  border-color: transparent;
  color: #fff;
}

.sidebar-guide h3 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin: 8px 0 10px;
  line-height: 1.4;
}

.sidebar-guide p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  line-height: 1.65;
}

.sw-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}

.sidebar-author {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 10px;
}

.sidebar-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.sidebar-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.sidebar-author p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.sidebar-cta {
  text-align: center;
  background: var(--cream);
  border-color: transparent;
}

.sidebar-cta p {
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 500;
}


/* ══════════════════════════════════
   FREE GUIDE PAGE
   ══════════════════════════════════ */

/* Hero */
.guide-hero {
  background: var(--navy);
  padding: 120px 0 80px;
}

.guide-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .guide-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Hero Text */
.guide-hero-text .label {
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.guide-hero-text h1 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  margin: 18px 0 8px;
  line-height: 1.25;
}

.guide-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 28px;
}

.guide-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-checklist li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.guide-cta-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Form Card */
.guide-form-wrap {
  /* card floats on dark bg */
}

.guide-form-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.guide-form-card h2 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.guide-form-card > p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.guide-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gf-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}

.gf-field label span {
  color: var(--gold);
}

.gf-field input,
.gf-field select {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fafafa;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.gf-field input:focus,
.gf-field select:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
}

.gf-submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.gf-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

/* Success State */
.guide-form-success {
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  width: 52px;
  height: 52px;
  background: #e8f5e9;
  color: #388e3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.guide-form-success h3 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.guide-form-success p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.guide-form-success a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
}

/* ── Guide Preview Section ── */
.guide-preview {
  padding: 72px 0;
}

.guide-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .guide-timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .guide-timeline {
    grid-template-columns: 1fr;
  }
}

.gt-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  position: relative;
}

.gt-item-plus {
  background: var(--navy);
  border-color: transparent;
}

.gt-item-plus .gt-grade {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
}

.gt-item-plus h4 {
  color: #fff;
}

.gt-item-plus p {
  color: rgba(255,255,255,0.7);
}

.gt-grade {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.gt-content h4 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.gt-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive: free-guide form on mobile ── */
@media (max-width: 600px) {
  .guide-hero {
    padding: 100px 0 56px;
  }
  .guide-form-card {
    padding: 28px 20px 24px;
  }
  .insights-hero {
    padding: 100px 0 56px;
  }
  .insights-layout {
    padding-top: 36px;
    padding-bottom: 56px;
  }
}

/* ── Article Page ─────────────────────────────── */
.article-hero {
  background: var(--navy);
  padding: 120px 0 60px;
}
.article-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.article-hero-meta .ic-tag {
  font-size: 0.72rem;
}
.article-date, .article-read {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.article-h1 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  padding-top: 56px;
  padding-bottom: 80px;
  align-items: start;
}
.article-content {
  max-width: 100%;
  font-family: 'Noto Sans SC', 'Noto Serif SC', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
}
.article-content p {
  margin: 0 0 1.4em;
}
.article-content h2 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin: 2.2em 0 0.8em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.article-content h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.8em 0 0.6em;
}
.uplus-insight {
  background: var(--cream);
  border-left: 3px solid var(--gold-dark);
  padding: 20px 24px;
  margin: 1.8em 0;
  border-radius: 0 6px 6px 0;
}
.uplus-insight-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.uplus-insight p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}
.article-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 3rem;
  text-align: center;
}
.article-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin: 0 0 1.2rem;
}
.article-nav {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 3rem;
}
.article-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.article-nav a:hover { color: var(--gold-dark); }
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .article-hero { padding: 100px 0 48px; }
  .article-h1 { font-size: 1.5rem; }
}
