/* =========================================================
   Vitrine — Anciens élèves du Collège de Payerne
   Design polish (chargé après style.css)
   ========================================================= */

:root {
	--ac-radius: 10px;
	--ac-shadow: 0 6px 24px rgba(17, 17, 17, .08);
	--ac-shadow-hover: 0 12px 32px rgba(17, 17, 17, .14);
	--ac-red: #e00000;
	--ac-ink: #111;
}

body { font-size: 1.02rem; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 { font-weight: 700; letter-spacing: -.01em; }
h1, .h1 { line-height: 1.1; }
.lead { font-weight: 400; }
.the-content { line-height: 1.7; }
.the-content h2, .the-content h3 { margin-top: 2rem; }
.the-content a:not(.ac-doc) { text-decoration: underline; text-underline-offset: 2px; }
.the-content a.ac-doc, .the-content a.ac-doc:hover, .the-content a.ac-doc:focus { text-decoration: none; }
.section-title { position: relative; display: inline-block; padding-bottom: .5rem; margin-bottom: 1.5rem; }
.section-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; background: var(--ac-red); border-radius: 2px; }

/* ---------- Header sticky + navigation ---------- */
.wrapper > header {
	position: sticky; top: 0; z-index: 1030;
	background: #fff;
	border-bottom: 1px solid #eee;
	box-shadow: 0 2px 8px rgba(17, 17, 17, .04);
}
.main-menu li a {
	padding: .35rem .1rem;
	font-weight: 500;
	color: var(--ac-ink);
	position: relative;
	transition: color .2s ease;
}
.main-menu li:not(:last-child) { margin-right: 1.1rem; }
.main-menu li a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
	height: 2px; background: var(--ac-red); transition: right .25s ease;
}
.main-menu li a:hover::after,
.main-menu .current-menu-item > a::after,
.main-menu .current_page_item > a::after,
.main-menu .current-menu-ancestor > a::after { right: 0; }
.main-menu .current-menu-item > a,
.main-menu .current_page_item > a { color: var(--ac-red); }
header .logo img { transition: opacity .2s ease; }
header .logo:hover img { opacity: .85; }

/* Sous-menu déroulant (Actualités) */
.main-menu .menu-item-has-children { position: relative; }
.main-menu .menu-item-has-children > a { padding-right: 1rem; }
.main-menu .menu-item-has-children > a::after {
	content: ""; left: auto; right: 0; bottom: auto; top: 50%;
	width: 0; height: 0; background: none; opacity: .7;
	border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor;
	transform: translateY(-40%); transition: none;
}
.main-menu .sub-menu {
	position: absolute; top: 100%; right: 0; min-width: 210px; margin: 0; padding: .4rem 0;
	list-style: none; background: #fff; border: 1px solid #eee; border-radius: 10px;
	box-shadow: var(--ac-shadow); text-align: left;
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 1040;
}
.main-menu .menu-item-has-children:hover > .sub-menu,
.main-menu .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.main-menu .sub-menu li { display: block; margin: 0; }
.main-menu .sub-menu li a { display: block; padding: .5rem 1.1rem; white-space: nowrap; font-weight: 500; }
.main-menu .sub-menu li a::after { display: none; }
.main-menu .sub-menu li a:hover { background: #f7f7f8; color: var(--ac-red); }

/* ---------- Boutons ---------- */
.btn { border-radius: 8px; font-weight: 600; padding: .55rem 1.25rem; }
.btn-sm { padding: .35rem .85rem; }
.btn-lg { padding: .8rem 1.75rem; }

/* ---------- Sections ---------- */
.space { padding-top: 4.5rem; padding-bottom: 4.5rem; }
@media (max-width: 991.98px) { .space { padding-top: 3rem; padding-bottom: 3rem; } }
.container-page > section + section { border-top: 0; }

/* ---------- Hero ---------- */
.hero-accueil { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.hero-accueil.hero-has-image {
	padding-top: 7rem; padding-bottom: 7rem;
	background-attachment: scroll;
}
.hero-accueil .hero-overlay {
	background: linear-gradient(180deg, rgba(17, 17, 17, .55) 0%, rgba(17, 17, 17, .68) 100%);
}
.hero-accueil.text-white .hero-titre { text-shadow: 0 2px 12px rgba(0, 0, 0, .35); }
.hero-titre { font-size: clamp(2rem, 4.5vw, 3.25rem); }
.hero-texte { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 46rem; margin-inline: auto; opacity: .95; }

/* Hero slider (carrousel de photos) */
.hero-accueil.hero-slider { position: relative; overflow: hidden; min-height: clamp(380px, 58vh, 720px); display: flex; align-items: center; padding: 4rem 0; }
.hero-slider .hero-bg, .hero-slider .hero-bg-single { position: absolute; inset: 0; z-index: 0; }
.hero-slider .hero-bg, .hero-slider .hero-bg .slick-list, .hero-slider .hero-bg .slick-track { height: 100%; }
.hero-slider .hero-slide { height: clamp(380px, 58vh, 720px); background-size: cover; background-position: center; }
.hero-slider .hero-bg:not(.slick-initialized) .hero-slide { position: absolute; inset: 0; }
.hero-slider .hero-bg:not(.slick-initialized) .hero-slide:not(:first-child) { display: none; }
.hero-slider .hero-bg-single { background-size: cover; background-position: center; }
.hero-slider .hero-overlay { z-index: 1; }
.hero-slider .hero-content { position: relative; z-index: 2; width: 100%; }
.hero-slider .slick-dots { position: absolute; bottom: 20px; left: 0; margin: 0; z-index: 3; }
.hero-slider .slick-dots li button { border-color: rgba(255, 255, 255, .8); }
.hero-slider .slick-dots .slick-active button { background: #fff; border-color: #fff; }

/* ---------- Compteurs ---------- */
.compteurs .compteur { padding: .5rem 0; }
.compteur-valeur { letter-spacing: -.02em; }
.compteurs .col-6:not(:last-child) .compteur,
.compteurs .col-md:not(:last-child) .compteur { position: relative; }
@media (min-width: 768px) {
	.compteurs .col-md + .col-md .compteur::before {
		content: ""; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: rgba(17, 17, 17, .1);
	}
}

/* ---------- Cartes (articles) ---------- */
.card { border: 1px solid #eee; border-radius: var(--ac-radius); overflow: hidden; box-shadow: var(--ac-shadow); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--ac-shadow-hover); }
.card .card-img-top { transition: transform .4s ease; }
.card:hover .card-img-top { transform: scale(1.04); }
.card-title a { color: var(--ac-ink); }
.card-title a:hover { color: var(--ac-red); }
.card .ratio { background: #f2f2f2; }

/* ---------- Grille galerie photos (articles reconstruits) ---------- */
.ac-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .75rem; margin: 1.5rem 0; }
.ac-gallery a { display: block; overflow: hidden; border-radius: 8px; aspect-ratio: 1 / 1; background: #f2f2f2; }
.ac-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ac-gallery a:hover img { transform: scale(1.06); }
@media (max-width: 575.98px) { .ac-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Liste de PDF (Bulletins, Travaux) ---------- */
.ac-docs { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin: 1rem 0 2rem; }
.ac-doc {
	display: flex; align-items: center; gap: .9rem;
	padding: 1rem 1.1rem; background: #fff; border: 1px solid #eee; border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow); text-decoration: none; color: var(--ac-ink);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ac-doc:hover { transform: translateY(-3px); box-shadow: var(--ac-shadow-hover); border-color: var(--ac-red); color: var(--ac-ink); }
.ac-doc .ac-doc-ic {
	flex: 0 0 auto; width: 42px; height: 42px; border-radius: 8px;
	display: grid; place-items: center; background: rgba(224, 0, 0, .08); color: var(--ac-red); font-size: 1.15rem;
}
.ac-doc .ac-doc-t { font-weight: 600; line-height: 1.25; }
.ac-doc .ac-doc-s { font-size: .8rem; color: #777; }
.ac-year-title { margin: 2rem 0 1rem; font-size: 1.1rem; color: #555; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Gravity Forms (habillage Bootstrap) ---------- */
.gform_wrapper .gform_fields { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem 1.25rem; }
.gform_wrapper .gfield { grid-column: span 12; }
.gform_wrapper .gfield.gf_left_half, .gform_wrapper .gfield.gf_right_half { grid-column: span 6; }
@media (max-width: 575.98px) { .gform_wrapper .gfield.gf_left_half, .gform_wrapper .gfield.gf_right_half { grid-column: span 12; } }
.gform_wrapper .gfield_label { font-weight: 600; margin-bottom: .35rem; display: block; }
.gform_wrapper .gfield_required { color: var(--ac-red); }
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper select,
.gform_wrapper textarea {
	width: 100%; padding: .6rem .85rem; font-size: 1rem; line-height: 1.5;
	color: var(--ac-ink); background: #fff; border: 1px solid #ced4da; border-radius: 8px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
	outline: 0; border-color: var(--ac-red); box-shadow: 0 0 0 .2rem rgba(224, 0, 0, .15);
}
.gform_wrapper textarea { min-height: 140px; }
.gform_wrapper .gfield_radio, .gform_wrapper .gfield_checkbox { display: flex; flex-direction: column; gap: .4rem; }
.gform_wrapper .gchoice { display: flex; align-items: center; gap: .5rem; }
.gform_wrapper .gform_footer { margin-top: 1.25rem; }
.gform_wrapper .gform_required_legend { font-size: .85rem; color: #777; }
.gform_confirmation_message { padding: 1rem 1.25rem; background: var(--bs-success-bg-subtle, #d1e7dd); border: 1px solid var(--bs-success-border-subtle, #a3cfbb); border-radius: var(--ac-radius); }
.gform_wrapper .validation_message, .gform_wrapper .gfield_description.validation_message { color: var(--ac-red); font-size: .85rem; margin-top: .25rem; }
.gform_wrapper .gfield_error input, .gform_wrapper .gfield_error textarea, .gform_wrapper .gfield_error select { border-color: var(--ac-red); }

/* ---------- Blocs contenu migrés (WPBakery) : neutralisation douce ---------- */
.the-content .wpb_row, .the-content .vc_row { display: block; margin-bottom: 1rem; }
.the-content .wpb_column, .the-content .vc_column_container { display: block; width: 100% !important; padding: 0 !important; }
.the-content .wpb_single_image img, .the-content .vc_single_image-wrapper img { border-radius: 8px; }
.the-content p:empty { display: none; }

/* ---------- Pagination ---------- */
.pagination { justify-content: center; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 .5rem; margin: 0 .15rem; border-radius: 8px; border: 1px solid #e5e5e5; color: var(--ac-ink); text-decoration: none; }
.page-numbers.current { background: var(--ac-red); border-color: var(--ac-red); color: #fff; }
.page-numbers:hover:not(.current) { border-color: var(--ac-red); color: var(--ac-red); }

/* ---------- Footer ---------- */
.site-footer { background: #fafafa; }
.site-footer .footer-logo { max-width: 260px; }
.cta-facebook { background: var(--ac-ink) !important; }

/* ---------- En-tête de page (H1) ---------- */
.page-header { padding: 3rem 0 0; }
.page-header .page-title { font-size: clamp(1.9rem, 4vw, 2.6rem); position: relative; padding-bottom: .75rem; }
.page-header .page-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px; background: var(--ac-red); border-radius: 2px; }
.home .page-title, .archive .page-title, .blog .page-title { position: relative; padding-bottom: .75rem; }

/* ---------- Accueil : teaser "L'association" ---------- */
.apropos { background: #fff; }
.apropos-buts li { padding: .55rem 0; border-bottom: 1px solid #f0f0f0; font-weight: 500; }
.apropos-buts li:last-child { border-bottom: 0; }

/* ---------- Présentation : cartes "buts" avec pictos ---------- */
.but-card .but-ic { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(224, 0, 0, .08); color: var(--ac-red); font-size: 1.5rem; }
.but-card { transition: transform .2s ease, box-shadow .2s ease; }

/* ---------- Cartes PDF : corps texte ---------- */
.ac-doc-body { min-width: 0; }
.ac-doc .ac-doc-t { overflow-wrap: anywhere; }

/* ---------- Contact : carte coordonnées ---------- */
.contact-infos .card { border: 1px solid #eee; }
.contact-infos a { color: var(--ac-ink); text-decoration: none; }
.contact-infos a:hover { color: var(--ac-red); }
.contact-map { border-radius: var(--ac-radius); overflow: hidden; box-shadow: var(--ac-shadow); }
.contact-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* =========================================================
   Coup de jeune — plus moderne / accueillant
   ========================================================= */
:root { --ac-radius: 16px; --ac-shadow: 0 10px 30px rgba(17, 17, 17, .08); --ac-shadow-hover: 0 18px 46px rgba(17, 17, 17, .16); }

/* Police d'en-têtes moderne */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5,
.hero-titre, .compteur-valeur, .page-title, .card-title, .btn {
	font-family: "Poppins", var(--bs-font-sans-serif);
}
h1, h2, h3, .hero-titre, .page-title { letter-spacing: -.02em; }

/* Boutons pilule */
.btn { border-radius: 50rem; padding: .6rem 1.5rem; font-weight: 600; }
.btn-sm { padding: .42rem 1.15rem; }
.btn-lg { padding: .85rem 2rem; }

/* Compteurs plus punchy */
.compteur-valeur { font-size: clamp(2.6rem, 6vw, 4.25rem); font-weight: 800; letter-spacing: -.03em; }
.compteur-label { font-weight: 600; color: #6b7280; letter-spacing: .08em; }

/* Cartes plus douces */
.card, .ac-doc, .contact-map { border-radius: var(--ac-radius); }
.card:hover { transform: translateY(-6px); }

/* Hero plus chaleureux + entrée en douceur */
.hero-slider .hero-overlay { background: linear-gradient(160deg, rgba(17, 17, 17, .5) 0%, rgba(17, 17, 17, .55) 55%, rgba(120, 0, 0, .45) 100%); }
.hero-titre { font-weight: 800; }
.hero-content { animation: acHeroIn .7s ease both; }
@keyframes acHeroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Rythme des sections */
.dernieres-actus { background: #fafafb; }
.section-title::after, .page-header .page-title::after { height: 4px; width: 60px; border-radius: 4px; }

/* ---------- Annuaire membres (vue restreinte) ---------- */
.am-pub-table thead th { border-bottom: 2px solid #eee; text-transform: uppercase; font-size: .78rem; letter-spacing: .03em; color: #6b7280; white-space: nowrap; }
.am-pub-table th.am-sort:hover, .am-pub-table th.am-sort-active { color: var(--ac-red); }
.am-pub-table .am-arrow { font-size: .7em; }
.am-pub-table td { font-size: .95rem; }

/* =========================================================
   Annuaire — gestion comité (front)
   ========================================================= */
.am-gestion { max-width: 1600px; margin: 2rem auto 4rem; padding: 0 1.25rem; }
.am-gestion-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.am-gestion .table-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

/* Boutons d'action */
.am-btn { display: inline-flex; align-items: center; justify-content: center; gap: .15rem; border: 1px solid #dcdcde; background: #fff; color: var(--ac-ink); border-radius: 50rem; padding: .5rem 1.15rem; font-weight: 600; font-size: .9rem; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease; -webkit-user-select: none; -moz-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent; }
.am-btn:hover, .am-btn:focus { text-decoration: none; }
.am-btn:hover { border-color: var(--ac-red); color: var(--ac-red); background: #fff5f5; }
.am-btn:focus { outline: none; }
.am-btn:focus-visible { outline: none; border-color: var(--ac-red); color: var(--ac-red); box-shadow: 0 0 0 .2rem rgba(224,0,0,.18); }
.am-btn:active { background: #ffe9e9; transform: translateY(1px); }
.am-btn:disabled, .am-btn[disabled] { opacity: .45; cursor: default; transform: none; }
.am-btn:disabled:hover, .am-btn[disabled]:hover { border-color: #dcdcde; color: var(--ac-ink); background: #fff; }
.am-btn-primary { background: var(--ac-red); border-color: var(--ac-red); color: #fff; }
.am-btn-primary:hover { background: #b30000; border-color: #b30000; color: #fff; }
.am-btn-primary:focus-visible { border-color: #b30000; color: #fff; box-shadow: 0 0 0 .2rem rgba(224,0,0,.35); }
.am-btn-primary:active { background: #990000; }

/* Bande d'appel à l'action « Modifier mes infos » (vue membre) */
.am-edit-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 1.25rem; background: #fbfbfc; border: 1px solid #ececf0; border-radius: 14px; padding: .85rem 1.15rem; margin-bottom: 1.5rem; }
.am-edit-cta-text { display: flex; align-items: center; gap: .55rem; color: #55575c; font-size: .93rem; }
.am-edit-cta-text i { color: var(--ac-red); font-size: 1.05rem; flex: none; }

/* Colonnes cotisation (lecture seule, coup d'œil payé/non payé) */
.am-coti-cell { text-align: center; font-variant-numeric: tabular-nums; white-space: nowrap; }
.am-coti-cell.am-paid { color: #157347; font-weight: 600; }
.am-coti-cell.am-unpaid { color: #c9ccd1; }
.am-don-cell { color: #6a6d73; font-weight: 400; }
/* Cellules cotisation/don éditables (double-clic) */
.am-coti-edit { cursor: cell; }
.am-coti-edit:hover { background: #fffbe6; }
.am-coti-input { width: 62px; text-align: center; padding: 2px 4px; border: 1px solid var(--ac-red); border-radius: 4px; font: inherit; }
/* Petit loader pendant l'enregistrement d'une cellule coti/don */
.am-coti-spin { display: inline-block; width: 14px; height: 14px; vertical-align: middle; border: 2px solid #d9d9de; border-top-color: var(--ac-red); border-radius: 50%; animation: am-coti-rot .6s linear infinite; }
@keyframes am-coti-rot { to { transform: rotate(360deg); } }
/* Séparateurs visuels : début du bloc cotisations et du bloc radiation */
#membresTable th.am-grp-start, #membresTable td.am-grp-start { border-left: 2px solid #e3e3e8; }

/* Bouton « Réinitialiser » de la barre de filtres.
   Spécificité renforcée (#am-filters-card … .am-btn) pour battre inline.css du plugin
   qui impose un hover bleu + margin-top:25px + border-radius:10px. */
#am-filters-card #am-reset-filters.am-btn {
  height: calc(1.5em + .75rem + 2px);
  margin-top: 0;
  padding: 0 1.15rem;
  font-size: 1rem;
  border-radius: 50rem;
  background: #fff;
  border: 1px solid #dcdcde;
  color: var(--ac-ink);
}
#am-filters-card #am-reset-filters.am-btn:hover,
#am-filters-card #am-reset-filters.am-btn:focus-visible {
  background: #eef0f2;
  border-color: #c3c7cd;
  color: var(--ac-ink);
  box-shadow: none;
}
#am-filters-card #am-reset-filters.am-btn:active { background: #e4e6e9; }
.am-link { background: none; border: 0; color: var(--ac-red); cursor: pointer; font-size: .85rem; padding: 0 .3rem; }

/* Panneau colonnes + filtres */
.am-cols-panel { background: #fff; border: 1px solid #eee; border-radius: var(--ac-radius); box-shadow: var(--ac-shadow); padding: 1.1rem 1.25rem; margin-bottom: 1.25rem; }
.am-cols-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.am-cols-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .4rem 1.25rem; margin-top: .9rem; }
.am-cols-foot { margin-top: 1rem; }
.am-chk { display: flex; align-items: center; gap: .45rem; font-size: .9rem; margin: 0; }
.am-filters-card { background: #f7f7f8; border-radius: var(--ac-radius); padding: 1.25rem; margin-bottom: 1.25rem; }
.am-filters-card.is-hidden, .am-cols-panel[hidden] { display: none; }
.am-filters-card label { font-weight: 600; color: #6b7280; margin-bottom: .3rem; }

/* Compteur résultats */
.am-results-count { font-weight: 600; color: #374151; }

/* Table */
.am-table-wrap { background: #fff; border: 1px solid #eee; border-radius: var(--ac-radius); box-shadow: var(--ac-shadow); }
.am-gestion #membresTable { width: 100%; font-size: .9rem; margin: 0; }
.am-gestion #membresTable thead th { position: sticky; top: 0; z-index: 2; background: #fff; border-bottom: 2px solid #eee; text-transform: uppercase; font-size: .72rem; letter-spacing: .03em; color: #6b7280; white-space: nowrap; padding: .7rem .55rem; }
.am-gestion #membresTable th.am-sort { cursor: pointer; user-select: none; }
.am-gestion #membresTable th.am-sort:hover { color: var(--ac-red); }
.am-sort-ind { font-size: .7em; opacity: .55; }
.am-gestion #membresTable td { padding: .45rem .55rem; border-bottom: 1px solid #f1f5f9; vertical-align: middle; white-space: nowrap; }
.am-gestion #membresTable tbody tr:hover { background: #fafafb; }
.am-gestion .am-editable { cursor: cell; }
.am-gestion .am-editable:hover { background: #fff8e6; box-shadow: inset 0 0 0 1px #e6c34d; border-radius: 4px; }
.am-editor, .am-select { width: 100%; padding: .3rem .4rem; border: 1px solid var(--ac-red); border-radius: 6px; font-size: .9rem; }
.am-loading { opacity: .5; }

/* Pagination client (annuaire) */
.am-pager-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem; }
.am-perpage { border: 1px solid #dcdcde; border-radius: 8px; padding: .2rem .45rem; background: #fff; }

/* ---------- Fiche membre (single, comité) ---------- */
.fiche-back { text-decoration: none; color: #6a6d73; font-size: .92rem; }
.fiche-back:hover { color: var(--ac-red); }
.fiche-statut { display: inline-flex; align-items: center; font-size: .78rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 50rem; }
.fiche-statut.is-actif { background: #e6f4ea; color: #157347; }
.fiche-statut.is-radie { background: #f1f2f4; color: #6a6d73; }
.fiche-card { border: 1px solid #ececf0; border-radius: 14px; background: #fff; box-shadow: var(--ac-shadow); overflow: hidden; }
.fiche-card-head { background: #fafafb; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--ac-ink); padding: .8rem 1.15rem; border-bottom: 1px solid #ececf0; }
.fiche-card-body { padding: 1.15rem; }
.fiche-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .03em; color: #8a8d93; margin-bottom: 2px; }
.fiche-value { font-size: 1rem; color: var(--ac-ink); word-break: break-word; }
.fiche-card-rad .fiche-card-head { background: #fdf3f3; color: #b02a2a; border-bottom-color: #f3dede; }
.fiche-cotis thead th { background: #fafafb; font-family: 'Poppins', sans-serif; font-size: .85rem; }

/* ---------- Utilitaires ---------- */
.bg-soft { background: #f7f7f8; }
.border-radius-5px { border-radius: var(--ac-radius) !important; }
img { max-width: 100%; height: auto; }
