/* ============================================================
   interviews.css — Paroles d'experts
   ============================================================ */

/* ── LISTE HERO ───────────────────────────────────────────── */
.interviews-hero {
  padding: 56px 0 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.interviews-hero__title {
  font-size: 42px;
  font-weight: 300;
  color: var(--black);
  font-family: 'Georgia', serif;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.interviews-hero__sub {
  font-size: 15px;
  color: var(--text);
  margin: 0;
}

.interviews-section { background: var(--white); padding: 48px 0 80px !important; }

/* ── GRILLE CARDS ─────────────────────────────────────────── */
.interviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.interview-card {
  border: 1px solid var(--border);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.interview-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.interview-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
}
.interview-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  filter: grayscale(20%);
}
.interview-card:hover .interview-card__img { transform: scale(1.04); filter: grayscale(0%); }
.interview-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: #f3f4f6;
}

.interview-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.interview-card__nom {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  font-family: 'Georgia', serif;
  margin: 0 0 6px;
}
.interview-card__specialite {
  font-size: 13px;
  color: var(--text);
  margin: 0 0 20px;
  flex: 1;
}
.interview-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  transition: background .2s;
}
.interview-card__btn:hover { background: #8a6f32; }

.interviews-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text);
  font-style: italic;
}

/* ── PAGE ARTICLE ─────────────────────────────────────────── */
.itw-hero {
  position: relative;
  height: 320px;
  background: var(--black) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.itw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,20,34,.85) 0%, rgba(5,20,34,.3) 100%);
}
.itw-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
}
.itw-hero__badge {
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.itw-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  font-family: 'Georgia', serif;
  margin: 0;
  line-height: 1.3;
}
.itw-hero__title span { color: rgba(255,255,255,.7); font-size: 22px; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.itw-section { background: var(--white); padding: 48px 0 80px !important; }
.itw-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar */
.itw-sidebar {
  position: sticky;
  top: 24px;
  text-align: center;
}

/* Carte artiste */
.itw-sidebar__card {
  background: #f0ede8;
  border: 1px solid var(--border);
  padding: 28px 20px;
  margin-bottom: 24px;
}
.itw-sidebar__portrait {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  overflow: hidden;
  border: none;
}
.itw-sidebar__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.itw-sidebar__nom {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  font-family: 'Georgia', serif;
  margin-bottom: 14px;
}
.itw-sidebar__bio {
  font-size: 12px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  text-align: center;
}
.itw-sidebar__linkedin {
  display: block;
  width: 100%;
  font-size: 13px !important;
  padding: 13px 20px !important;
  text-align: center;
  box-sizing: border-box;
}

/* Partager */
.itw-sidebar__share {
  text-align: center;
  padding: 20px 0 0;
}
.itw-sidebar__share p {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 14px;
}
.itw-sidebar__share-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.itw-sidebar__share-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 14px; text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.itw-sidebar__share-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Corps article */
.itw-body { min-width: 0; }

.itw-section-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.itw-section-block:last-of-type { border-bottom: none; }

.itw-section-title {
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  font-family: 'Georgia', serif;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.itw-qr { margin-bottom: 24px; }
.itw-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 10px;
}
.itw-reponse p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 12px;
}
.itw-reponse blockquote {
  margin: 16px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  font-style: italic;
  font-size: 15px;
  color: var(--black);
  font-family: 'Georgia', serif;
  line-height: 1.7;
}

.itw-back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.itw-back a {
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .04em;
}
.itw-back a:hover { color: var(--gold); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .interviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .itw-layout { grid-template-columns: 1fr; }
  .itw-sidebar { position: static; }
  .interviews-grid { grid-template-columns: 1fr; }
  .interviews-hero__title { font-size: 28px; }
}

/* ── IMAGES Q/R ───────────────────────────────────────────── */
.itw-qr-image {
  margin: 16px 0 20px;
}
.itw-qr-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--border);
  display: block;
}
.itw-qr-image__caption {
  font-size: 12px;
  color: var(--text);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
  padding: 0 8px;
}

/* ── NEWSLETTER SIDEBAR ───────────────────────────── */
.itw-sidebar__newsletter {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 24px 20px;
  margin-top: 16px;
}
.itw-sidebar__nl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.itw-sidebar__nl-icon {
  font-size: 22px;
  color: var(--gold);
}
.itw-sidebar__nl-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  font-family: 'Georgia', serif;
}
.itw-sidebar__nl-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}
.itw-sidebar__nl-desc {
  font-size: 12px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.itw-sidebar__nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.itw-sidebar__nl-form input[type="email"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 13px;
  background: var(--white);
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s;
}
.itw-sidebar__nl-form input[type="email"]:focus { border-color: var(--gold); }
.itw-sidebar__nl-form .btn {
  padding: 12px !important;
  font-size: 13px !important;
  width: 100%;
}
.itw-sidebar__nl-msg {
  font-size: 11px;
  padding: 6px;
  min-height: 0;
  text-align: center;
}
.itw-sidebar__nl-msg.success { color: #16a34a; }
.itw-sidebar__nl-msg.error   { color: #dc2626; }
.itw-sidebar__nl-rgpd {
  font-size: 10px;
  color: #bbb;
  line-height: 1.5;
  text-align: center;
}
.itw-sidebar__nl-rgpd a { color: rgba(165,133,66,.7); }