/* ═══════════════════════════════════════════════════════════
   RITUELS PAGE — Responsive & Modern
   Ajoute ce fichier dans Rituels.html :
   <link rel="stylesheet" href="rituels.css" />
═══════════════════════════════════════════════════════════ */

/* ─── Page layout ─── */
.rit-page {
  background: var(--bg);
  color: var(--ink);
  padding-top: 100px;
}

.rit-section {
  padding: 0 1rem 3rem;
}
@media (min-width: 768px) {
  .rit-section { padding: 0 2rem 5rem; }
}
@media (min-width: 1024px) {
  .rit-section { padding: 0 2.5rem 6rem; }
}

.rit-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ─── Hero ─── */
.rit-hero {
  position: relative;
  padding: 2rem 0 3rem;
  text-align: center;
}
.rit-hero .h-section {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.01em;
}
.rit-hero p {
  max-width: 540px;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .rit-hero { padding: 3rem 0 4rem; }
  .rit-hero p { font-size: 1.05rem; }
}

/* ─── Grid ─── */
.rit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .rit-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
  .rit-grid > .rit-card:nth-child(1) { grid-column: span 7; }
  .rit-grid > .rit-card:nth-child(2) { grid-column: span 5; }
  .rit-grid > .rit-card:nth-child(3) { grid-column: span 5; }
  .rit-grid > .rit-card:nth-child(4) { grid-column: span 7; }
  .rit-grid > .rit-card:nth-child(5) { grid-column: span 12; }
  .rit-grid > .rit-card:nth-child(6) { grid-column: span 12; }
}
@media (min-width: 1024px) {
  .rit-grid { gap: 2rem 2.5rem; }
}

/* ─── Card base ─── */
.rit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px -10px rgba(26, 26, 26, 0.1);
}
@media (min-width: 768px) {
  .rit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(63, 9, 25, 0.2);
  }
}

/* ─── Card layouts — MOBILE: always stacked ─── */
.rit-card.layout-wide,
.rit-card.layout-hero {
  flex-direction: column;
}

/* TABLET+ : side by side for wide & hero */
@media (min-width: 768px) {
  .rit-card.layout-wide { flex-direction: row; }
  .rit-card.layout-wide.reverse { flex-direction: row-reverse; }
  .rit-card.layout-hero { flex-direction: row; }
}

/* ─── Image area ─── */
.rit-card .rit-image {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.rit-card.layout-vertical .rit-image {
  aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
  .rit-card.layout-wide .rit-image {
    width: 45%;
    aspect-ratio: auto;
    min-height: 100%;
  }
  .rit-card.layout-hero .rit-image {
    width: 50%;
    min-height: 100%;
  }
  .rit-card.layout-vertical .rit-image {
    aspect-ratio: 16 / 9;
  }
}

.rit-card .rit-image .ph {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 0;
}

/* ─── Badge ─── */
.rit-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: var(--cream);
  color: var(--green);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.rit-badge.signature {
  background: var(--gold);
  color: var(--cream);
}
.rit-badge .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 6px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ─── Price tag (hero card only) ─── */
.rit-card.layout-hero .rit-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.4) 100%);
  pointer-events: none;
}
.rit-price-tag {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 1rem;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.rit-price-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}

/* ─── Body ─── */
.rit-body {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .rit-body { padding: 2rem; }
  .rit-card.layout-wide .rit-body,
  .rit-card.layout-hero .rit-body { padding: 2rem 2.25rem; }
}
@media (min-width: 1024px) {
  .rit-card.layout-hero .rit-body { padding: 3rem; }
}

/* ─── Meta (durée · prix) ─── */
.rit-meta {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.rit-meta .rit-price {
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* ─── Name ─── */
.rit-name {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin: 0.5rem 0 0;
  letter-spacing: -0.005em;
}
.rit-card.layout-hero .rit-name {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
}

/* ─── Subtitle ─── */
.rit-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* ─── Description ─── */
.rit-desc {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 56ch;
}
@media (min-width: 768px) {
  .rit-desc { font-size: 0.95rem; margin-top: 1rem; }
}

/* ─── Rule ─── */
.rit-rule {
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin: 1.25rem 0 0;
}

/* ─── Toggle button ─── */
.rit-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  transition: color 0.3s;
}
.rit-toggle:hover { color: var(--green); }
.rit-toggle .acc-icon { color: var(--gold); }

/* ─── Steps panel ─── */
.rit-steps-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.rit-steps-panel.open {
  max-height: 1400px;
}

/* ─── Steps list ─── */
.rit-steps {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* 2 colonnes UNIQUEMENT sur desktop ET cartes larges */
@media (min-width: 1024px) {
  .rit-card.layout-hero .rit-steps,
  .rit-card.layout-wide .rit-steps {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }
}

.rit-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(184, 134, 90, 0.15);
}
.rit-step:last-child {
  border-bottom: 1px solid rgba(184, 134, 90, 0.15);
}
.rit-step-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1.5;
}
.rit-step-text {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.5;
  word-break: break-word;
}

/* ─── Reserve button ─── */
.rit-reserve {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* ═══════════════════════════════════════
   MADÉROTHÉRAPIE VISAGE
═══════════════════════════════════════ */
.rit-madero {
  margin-top: 2rem;
  background: var(--green);
  color: var(--cream);
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .rit-madero {
    grid-template-columns: 1.4fr 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
    margin-top: 3rem;
    border-radius: 24px;
  }
}
@media (min-width: 1024px) {
  .rit-madero {
    padding: 3rem 3.5rem;
    gap: 3.5rem;
  }
}

/* Decorative corner ornament */
.rit-madero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 90, 0.18), transparent 70%);
  pointer-events: none;
}

.madero-body {
  position: relative;
  z-index: 1;
  order: 2;
}
@media (min-width: 768px) {
  .madero-body { order: 1; }
}

.madero-name {
  color: var(--cream) !important;
  margin-top: 1rem !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
}

.madero-meta {
  margin-top: 0.9rem;
  color: var(--gold);
}
.madero-meta .madero-price {
  color: var(--cream) !important;
}

.madero-intro {
  margin-top: 1.25rem;
  color: rgba(250, 246, 241, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 52ch;
}
@media (min-width: 768px) {
  .madero-intro { font-size: 1rem; }
}

.madero-rule {
  height: 1px;
  background: rgba(184, 134, 90, 0.4);
  margin: 1.5rem 0 0;
}

.madero-toggle {
  color: var(--cream) !important;
}
.madero-toggle:hover { color: var(--gold) !important; }

/* Bienfaits — bullet list (not numbered) */
.madero-bienfaits {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .madero-bienfaits {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
}

.madero-bienfait {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(184, 134, 90, 0.25);
  align-items: baseline;
}
.madero-bienfait:last-child {
  border-bottom: 1px solid rgba(184, 134, 90, 0.25);
}
@media (min-width: 1024px) {
  .madero-bienfait:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid rgba(184, 134, 90, 0.25);
  }
}

.madero-dot {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  transform: translateY(2px);
}

.madero-bienfait-text {
  color: rgba(250, 246, 241, 0.85);
  font-size: 0.88rem;
  line-height: 1.65;
}
.madero-bienfait-text strong {
  display: block;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.madero-reserve {
  margin-top: 1.75rem;
  align-self: flex-start;
  background: var(--cream);
  color: var(--green);
}
.madero-reserve:hover {
  background: var(--gold);
  color: var(--cream);
}

/* Image side */
.madero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  order: 1;
}
@media (min-width: 768px) {
  .madero-image {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    order: 2;
  }
}

.madero-image .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.madero-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--cream);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
@media (min-width: 768px) {
  .madero-tag { top: 1rem; right: 1rem; padding: 6px 14px; }
}

/* ═══════════════════════════════════════
   TOUT-PETITS
═══════════════════════════════════════ */
.rit-toutpetits {
  margin-top: 3rem;
  background: var(--sand);
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .rit-toutpetits {
    grid-template-columns: 1fr 1.4fr;
    padding: 2.5rem;
    gap: 2.5rem;
    margin-top: 4rem;
    border-radius: 24px;
  }
}

.rit-toutpetits .tp-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .rit-toutpetits .tp-image {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }
}

.rit-toutpetits .tp-image .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.tp-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--cream);
  color: var(--green);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .tp-tag { top: 1rem; left: 1rem; padding: 6px 14px; }
}

/* Tout-petits steps — always 1 column on mobile */
.rit-toutpetits .rit-steps {
  grid-template-columns: 1fr !important;
}
@media (min-width: 768px) {
  .rit-toutpetits .rit-steps {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ═══════════════════════════════════════
   SAUNA BANNER
═══════════════════════════════════════ */
.rit-sauna {
  margin-top: 2rem;
  background: var(--green);
  color: var(--cream);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .rit-sauna {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
  }
}

.sauna-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 90, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.sauna-text {
  flex: 1;
}
.sauna-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 400;
}
@media (min-width: 768px) {
  .sauna-text strong { font-size: 1.3rem; }
}
.sauna-text .label {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.25rem;
}

.sauna-meta {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.sauna-meta span {
  color: var(--gold);
  padding: 0 0.4rem;
}

/* ═══════════════════════════════════════
   CARTE CADEAU
═══════════════════════════════════════ */
.rit-cadeau {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid rgba(184, 134, 90, 0.3);
}
@media (min-width: 768px) {
  .rit-cadeau {
    margin-top: 4rem;
    padding: 3.5rem 2rem;
  }
}

.rit-cadeau .ornament { color: var(--gold); }
.rit-cadeau h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 1rem 0 0;
  line-height: 1.2;
}
.rit-cadeau p {
  color: var(--muted);
  max-width: 460px;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.rit-cadeau .btn-pill {
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════
   PLANITY WIDGET (si intégré en bas)
═══════════════════════════════════════ */
.rit-planity-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 8px 40px -20px rgba(26,26,26,0.1);
  overflow: hidden;
}
@media (min-width: 768px) {
  .rit-planity-wrapper { padding: 2rem; }
}

/* Planity overrides */
.css-1u1908p { display: none !important; }
.css-1jrbrg6 { display: none !important; }
.css-8xz9l5 { padding-top: 0 !important; }
.css-d3rpho { padding-top: 0 !important; margin-top: 0 !important; }
#planitywl { background-color: #faf6f1 !important; }
@media (min-width: 768px) { #planitywl h3 { color: #3f0919 !important; } }
.planity_bookappointment-button-choose {
  background-color: #3f0919 !important;
  border-color: #3f0919 !important;
  color: #FAF6F1 !important;
  border-radius: 999px !important;
}
.planity_bookappointment-button-choose:hover {
  background-color: #B8865A !important;
  border-color: #B8865A !important;
}
.planity-gift-voucher-button-choose {
  background-color: #3f0919 !important;
  border-radius: 999px !important;
}
.planity_ui_appointment_background > div:nth-child(2) { padding: 10px; }
#planitywl > div:nth-child(2) > div:nth-child(2) > div > div > div > div > h2,
#planitywl > div:nth-child(2) > div:nth-child(2) > div > div > div > h2 {
  color: #3f0919 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}
.service_set-module_title-kIcbL {
  font-family: 'Playfair Display', Georgia, serif !important;
  color: #3f0919 !important;
}
.service-module_name-EScCA {
  font-family: 'DM Sans', sans-serif !important;
}
.service-module_price-pLu8r span {
  font-family: 'Playfair Display', serif !important;
  color: #3f0919 !important;
}

.rit-card .rit-image {
  position: relative;
  overflow: hidden;
}

.rit-card .rit-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


/* ─── Carte Cadeau — contact ─── */
.cadeau-contact {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(184, 134, 90, 0.08);
  border: 1px solid rgba(184, 134, 90, 0.25);
  border-radius: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.cadeau-contact-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cadeau-contact-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cadeau-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}
.cadeau-link svg {
  color: var(--gold);
  flex-shrink: 0;
}
.cadeau-link:hover {
  color: var(--gold);
}

.cadeau-sep {
  color: var(--gold);
  opacity: 0.5;
  font-size: 1.1rem;
}

@media (max-width: 639px) {
  .cadeau-contact-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cadeau-sep {
    display: none;
  }
}

/* ============ BON À SAVOIR ============ */
.rit-savoir {
  margin-top: 5rem;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(184, 134, 90, 0.3);
}
.rit-savoir-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.rit-savoir-head h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 1rem 0 0;
  letter-spacing: -0.005em;
}
.rit-savoir-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .rit-savoir-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.rit-savoir-card {
  background: var(--bg);
  border: 1px solid rgba(184, 134, 90, 0.22);
  border-radius: 20px;
  padding: 2rem 1.75rem 2.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .rit-savoir-card { padding: 2.5rem 2.25rem 2.5rem; }
}
.rit-savoir-card--contre {
  background: var(--sand);
  border-color: rgba(63, 9, 25, 0.12);
}
.rit-savoir-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.rit-savoir-card--contre .rit-savoir-icon {
  border-color: var(--green);
  color: var(--green);
}
.rit-savoir-card .label {
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.rit-savoir-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 1.5rem;
  letter-spacing: -0.005em;
  max-width: 32ch;
}
.rit-savoir-card--contre h4 { color: var(--green); }

.rit-savoir-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.rit-savoir-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
  border-top: 1px solid rgba(184, 134, 90, 0.16);
}
.rit-savoir-list li:first-child { border-top: none; }
.rit-savoir-card--contre .rit-savoir-list li {
  color: var(--muted);
  border-top-color: rgba(63, 9, 25, 0.1);
}

.rit-savoir-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  position: relative;
}
.rit-savoir-mark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.rit-savoir-mark--x::before {
  width: 10px;
  height: 10px;
  top: 50%;
  left: 2px;
  transform: translateY(-50%) rotate(45deg);
  background: transparent;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  opacity: 0.55;
}
.rit-savoir-mark--x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(-45deg);
  border-top: 1px solid var(--green);
  opacity: 0.55;
}

.rit-savoir-foot {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(63, 9, 25, 0.12);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--green);
  font-size: 0.95rem;
  line-height: 1.5;
}