/* ========================================
   INTERVIEW PAGE STYLES
   ======================================== */

/* ── HERO ── */
.iv-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  margin-top: var(--header-height);
}
.iv-hero-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #333);
}
.iv-hero-img .placeholder-image {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: rgba(255,255,255,0.3);
}
.iv-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 60px 0 48px;
}
.iv-hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.iv-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.iv-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
}

/* ── PROFILE BAR ── */
.iv-profile {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.iv-profile-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.iv-profile-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}
.iv-profile-info {
  flex: 1;
}
.iv-profile-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}
.iv-profile-info span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.iv-profile-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.iv-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  background: rgba(0,200,83,0.1);
  border: 1px solid rgba(0,200,83,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── ARTICLE ── */
.iv-container {
  max-width: 720px;
}
.iv-article {
  padding: 64px 0;
}

/* Q&A */
.iv-qa-block {
  margin-bottom: 48px;
}
.iv-q {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.iv-q-label {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
}
.iv-q p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
}
.iv-a p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.iv-a p:last-child { margin-bottom: 0; }

/* Photo Insert */
.iv-photo-insert {
  margin: 40px 0;
}
.iv-photo-insert .placeholder-image {
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}
/* 「最近の話」近況ブロック（手紙の追伸感を演出） */
.iv-ps {
  display: flex !important;
  align-items: center;
  gap: 24px;
  max-width: 580px;
  margin: 56px auto;
  padding: 18px 22px;
  background: #fafafa;
  border-left: 3px solid var(--color-accent, #00c853);
  border-radius: 6px;
}
.iv-ps__img {
  flex: 0 0 140px !important;
  width: 140px !important;
  height: 140px !important;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.iv-ps__body { flex: 1; min-width: 0; }
.iv-ps__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent, #00c853);
  margin-bottom: 4px;
}
.iv-ps__text {
  font-size: 0.95rem;
  color: var(--color-text, #333);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .iv-ps { gap: 16px; padding: 14px 18px; }
  .iv-ps__img { flex-basis: 100px !important; width: 100px !important; height: 100px !important; }
}
.iv-photo-caption {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ── SCHEDULE ── */
.iv-schedule {
  margin: 64px 0;
  padding: 40px;
  background: var(--color-bg-light);
  border-radius: 20px;
}
.iv-section-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid var(--color-accent);
}
.iv-timeline {
  position: relative;
  padding-left: 24px;
}
.iv-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-border);
}
.iv-time-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  position: relative;
}
.iv-time-item:last-child { padding-bottom: 0; }
.iv-time-item::before {
  content: '';
  position: absolute;
  left: -29px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid #fff;
}
.iv-time {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  min-width: 48px;
  flex-shrink: 0;
}
.iv-time-content strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.iv-time-content p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ── MESSAGE ── */
.iv-message {
  margin: 64px 0;
}
.iv-quote {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 2;
  color: var(--color-primary);
  padding: 32px;
  background: linear-gradient(135deg, rgba(0,200,83,0.05), rgba(0,200,83,0.02));
  border-left: 4px solid var(--color-accent);
  border-radius: 0 16px 16px 0;
}

/* ── OTHER STAFF ── */
.iv-others {
  padding: 80px 0;
  background: var(--color-bg-light);
}
.iv-others-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.iv-others-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.iv-others-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.iv-others-photo {
  aspect-ratio: 16/10;
  background: #e0e0e0;
  overflow: hidden;
}
.iv-others-info {
  padding: 20px;
}
.iv-others-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.iv-others-info strong {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── CTA ── */
.iv-cta {
  padding: 80px 0;
}
.iv-cta-text {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-primary);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .iv-hero { height: 50vh; min-height: 360px; }
  .iv-title { font-size: 1.6rem; }
  .iv-profile-tags { width: 100%; }
  .iv-schedule { padding: 24px; }
  .iv-others-grid { grid-template-columns: 1fr; }
  .iv-quote { padding: 20px; font-size: 1rem; }
}
