/* ============================================
   Interview Detail Page Styles
   ============================================ */

/* ---------- Page Header ---------- */
.page-header--interview .page-header__inner {
  padding-bottom: 24px;
}

.page-header--interview .page-header__subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 12px;
  line-height: 1.6;
}

.page-header--interview .page-header__role {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ---------- Container ---------- */
.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Interview Article ---------- */
.interview-article {
  padding: 64px 0 80px;
}

.interview-article__figure {
  margin: 0 0 40px 0;
}

.interview-article__img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-section) 0%, #e2e8f0 100%);
}

.interview-article__img-wrap--placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.interview-article__img-wrap .interview-article__img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-article__placeholder-label {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.interview-article__block {
  margin-bottom: 48px;
}

.interview-article__block:last-of-type {
  margin-bottom: 0;
}

.interview-article__block--closing {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.interview-article__heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.interview-article__lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.interview-article__text {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 2;
  margin-bottom: 1.2em;
}

.interview-article__text:last-child {
  margin-bottom: 0;
}

.interview-article__text em {
  font-style: normal;
  color: var(--primary);
  font-weight: 600;
}

.interview-article__text--emphasis {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5em;
}

.interview-article__list {
  list-style: none;
  margin: 16px 0 24px 0;
  padding: 0;
}

.interview-article__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.interview-article__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.interview-article__back {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.interview-article__back .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .interview-article {
    padding: 40px 0 64px;
  }

  .interview-article__figure {
    margin-bottom: 32px;
  }

  .interview-article__block {
    margin-bottom: 36px;
  }

  .interview-article__heading {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .page-header--interview .page-header__subtitle {
    font-size: 1rem;
  }
}
