/* ============================================================
   CEO INTERVIEW / PROFILE PAGE
   ============================================================ */

/* Hero */
.interview-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
}
.interview-hero .container { position: relative; z-index: 1; }

@keyframes interview-item-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.interview-hero .interview-back      { animation: interview-item-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0s    both; }
.interview-hero .page-hero-eyebrow   { animation: interview-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s  both; }
.interview-hero h1                   { animation: interview-item-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both; }
.interview-hero .interview-hero-sub  { animation: interview-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both; }
.interview-hero .interview-byline    { animation: interview-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s  both; }

.interview-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
  transition: color var(--ease);
}
.interview-back:hover { color: #fff; }

.interview-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.interview-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 28px;
}

.interview-byline {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.3px;
}
.interview-byline span {
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

/* Article */
.interview-article {
  background: #fff;
  padding: var(--section-v) 32px;
}
.interview-body {
  max-width: 760px;
  margin: 0 auto;
}

/* Lead / deck paragraph */
.interview-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-base);
  line-height: 1.72;
  margin-bottom: 0;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Chapter sections */
.interview-chapter {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.interview-chapter:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.interview-chapter-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.interview-body p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.82;
  margin-bottom: 22px;
}
.interview-body p:last-child { margin-bottom: 0; }

/* Pull quotes */
.interview-pull-quote {
  margin: 32px 0;
  padding: 22px 28px;
  border-left: 4px solid var(--orange);
  background: rgba(255,135,5,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.interview-pull-quote p {
  font-style: italic;
  font-size: 16.5px;
  color: var(--text-base);
  line-height: 1.72;
  margin-bottom: 0;
}

/* Audre Lorde closing quote */
.interview-lorde-quote {
  margin: 48px 0 32px;
  padding: 40px 36px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  text-align: center;
}
.interview-lorde-quote p {
  font-style: italic;
  font-size: 18px;
  color: var(--text-base);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto 20px;
}
.interview-lorde-quote cite {
  display: block;
  font-size: 11.5px;
  color: var(--text-sub);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: normal;
}

/* Author's closing paragraph */
.interview-closing {
  font-style: italic;
  font-size: 15.5px;
  color: var(--text-sub);
  line-height: 1.82;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .interview-hero { padding-bottom: 60px; }
  .interview-article { padding: var(--section-v) 20px; }
  .interview-chapter { margin-top: 44px; padding-top: 44px; }
  .interview-pull-quote { padding: 18px 22px; }
  .interview-lorde-quote { padding: 32px 24px; }
  .interview-lorde-quote p { font-size: 16px; }
}

@media (max-width: 480px) {
  .interview-article { padding: var(--section-v) 16px; }
  .interview-chapter { margin-top: 36px; padding-top: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .interview-hero * { animation: none; }
}
