/* ===========================================================
   I-Perform — blocs séminaire harmonisés (template Cardiologie)
   Bandeau intervenant (photo gauche + nom) + présentation hôtel.
   À lier APRÈS le <style> inline de la page pour primer.
   =========================================================== */

/* --- Bandeau intervenant : photo à gauche, nom à droite --- */
.intervenant-banner { display: flex; align-items: center; gap: 1.1rem; padding-bottom: 1.3rem; margin-bottom: 1.3rem; border-bottom: 1px solid rgba(74,95,135,0.14); }
.intervenant-banner .intervenant-photo { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: var(--cream); margin: 0; }
.intervenant-banner .intervenant-photo image-slot,
.intervenant-banner .intervenant-photo img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.intervenant-id { min-width: 0; }
.intervenant-fullname { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; color: var(--indigo-deep, var(--indigo-dark)); letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 0.1rem; }
.intervenant-banner .intervenant-name { margin: 0 0 0.15rem; font-size: 0.98rem; color: var(--terracotta); font-style: italic; font-weight: 500; }
.intervenant-banner .intervenant-role { margin: 0; }

/* --- Présentation hôtel (pleine largeur, sous "Le cadre") --- */
.hotel-present { margin-top: 4rem; padding-top: 3.5rem; border-top: 1px solid rgba(74,95,135,0.14); }
.hotel-present-head { max-width: 760px; margin-bottom: 2.2rem; }
.hp-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 0.8rem; }
.hotel-present-head h3 { font-family: var(--serif); font-weight: 500; font-size: 1.85rem; color: var(--indigo-deep, var(--indigo-dark)); margin-bottom: 0.8rem; letter-spacing: -0.015em; }
.hotel-present-head p { color: var(--ink-soft); line-height: 1.8; font-size: 1.02rem; }
.hotel-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2.5rem; }
.hotel-gallery figure { margin: 0; }
.hotel-gallery image-slot { display: block; width: 100%; height: 220px; border-radius: 6px; }
.hotel-gallery figcaption { margin-top: 0.5rem; font-size: 0.8rem; color: var(--ink-soft); }
.hotel-offer { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; background: var(--cream-warm); border-radius: 8px; padding: 2.5rem; align-items: start; }
.hotel-offer-text h4 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; color: var(--indigo-deep, var(--indigo-dark)); margin-bottom: 0.8rem; }
.hotel-offer-text p { color: var(--ink-soft); line-height: 1.75; font-size: 0.98rem; }
.hotel-amenities { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; margin: 0; padding: 0; }
.hotel-amenities li { font-size: 0.95rem; color: var(--ink); padding: 0.6rem 0 0.6rem 1.4rem; position: relative; border-bottom: 1px solid rgba(74,95,135,0.1); }
.hotel-amenities li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
@media (max-width: 900px) { .hotel-gallery { grid-template-columns: 1fr 1fr; } .hotel-offer { grid-template-columns: 1fr; gap: 1.5rem; } .hotel-amenities { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .hotel-gallery { grid-template-columns: 1fr; } }
