/* Founder interview: editorial Q&A layout. Reuses general.css tokens. */

.iv-hero { padding: 150px 0 0; }
.iv-hero__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.iv-hero__inner .eyebrow { display: block; margin-bottom: 24px; }
.iv-hero__title {
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  font-style: italic;
  margin-bottom: 30px;
}
.iv-hero__title em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.iv-hero__lead {
  max-width: 74ch;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.iv-source {
  max-width: 80ch;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--stone);
}
.iv-source a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  transition: color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.iv-source a:hover { color: var(--gold); border-color: var(--ink); }

.iv-hero__media {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 50px 70px -50px rgba(78, 55, 33, 0.45);
}
.iv-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.iv-body { padding: 96px 0 110px; }
.iv-body__inner { max-width: 1100px; margin: 0 auto; }

.iv-intro {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.5;
  color: var(--ink);
  padding-bottom: 44px;
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(78, 55, 33, 0.16);
}
.iv-intro em { font-style: italic; color: var(--ink-soft); }

.iv-qa { margin-bottom: 54px; }
.iv-q {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.3vw, 33px);
  line-height: 1.24;
  letter-spacing: -0.008em;
  color: var(--ink);
  padding-left: 26px;
  border-left: 2px solid var(--gold);
  margin-bottom: 24px;
}
.iv-a { display: flex; flex-direction: column; gap: 20px; }
.iv-a p {
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.85;
  color: var(--ink-soft);
}

.iv-figure {
  margin: 52px auto;
  max-width: 400px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 60px -45px rgba(78, 55, 33, 0.55);
}
.iv-figure img { width: 100%; height: auto; display: block; }

/* Armenian headings fall back to a system serif (Cormorant has no Armenian
   glyphs); shrink the big serif sizes and allow wrapping, per theme convention. */
html[lang="hy"] .iv-hero__title,
html[lang="hy"] .iv-q,
html[lang="hy"] .iv-intro {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
html[lang="hy"] .iv-hero__title { font-size: clamp(24px, 2.7vw, 42px); line-height: 1.2; }
html[lang="hy"] .iv-q           { font-size: clamp(21px, 2vw, 28px); }
html[lang="hy"] .iv-intro       { font-size: clamp(19px, 1.7vw, 24px); }

@media (max-width: 820px) {
  .iv-hero { padding: 124px 0 0; }
  .iv-hero__media { margin-top: 44px; aspect-ratio: 4 / 3; }
  .iv-body { padding: 68px 0 80px; }
  .iv-intro { padding-bottom: 34px; margin-bottom: 40px; }
  .iv-qa { margin-bottom: 44px; }
  .iv-q { padding-left: 18px; }
  .iv-figure { margin: 40px auto; max-width: 320px; }
}
