/* ============================================================
   Le Hub de l'Excellence — Site web
   Feuille de style partagée. Tokens hérités de tokens.css.
   Aucune couleur inventée — palette de marque uniquement.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--color-ivoire);
  color: var(--color-encre);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--lh-body);
  overflow-x: hidden;
}
::selection { background: var(--color-or); color: var(--color-encre); }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Layout shells ──────────────────────────────────────── */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 56px; }
.wrap-narrow { max-width: 860px; }
section { position: relative; }
.pad { padding: 116px 0; }
.pad-sm { padding: 84px 0; }

.bg-encre   { background: var(--color-encre); color: var(--color-ivoire); }
.bg-ivoire  { background: var(--color-ivoire); }
.bg-deep    { background: var(--color-ivoire-deep); }
.bg-white   { background: #fff; }
.bg-laurier { background: var(--color-laurier); color: var(--color-ivoire); }

/* ── Diamond pattern (ton-sur-ton, jamais dominant) ─────── */
.diamonds { position: absolute; inset: 0; pointer-events: none; }
.diamonds-gold {
  background-image:
    repeating-linear-gradient(45deg, rgba(201,162,39,.07) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(201,162,39,.07) 0 1px, transparent 1px 26px);
}
.diamonds-ivoire {
  background-image:
    repeating-linear-gradient(45deg, rgba(246,241,231,.05) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, rgba(246,241,231,.05) 0 1px, transparent 1px 24px);
}
.diamonds-laurier {
  background-image:
    repeating-linear-gradient(45deg, rgba(33,87,74,.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, rgba(33,87,74,.06) 0 1px, transparent 1px 24px);
}

/* ── Type primitives ────────────────────────────────────── */
.serif { font-family: var(--font-serif); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--color-laurier);
}
.eyebrow-gold { color: var(--color-or); }
.eyebrow-on-dark { color: var(--color-or-soft); }

.display {
  font-family: var(--font-serif);
  font-weight: 400; letter-spacing: 0.02em;
  line-height: 1.04;
}
.h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 52px); line-height: 1.1; letter-spacing: 0.02em; }
.h3 { font-family: var(--font-serif); font-weight: 400; font-size: 26px; line-height: 1.25; }
.lead { font-size: 20px; line-height: 1.6; color: var(--color-beige); text-wrap: pretty; }
.lead-on-dark { color: rgba(246,241,231,.66); }
.body { font-size: 16px; line-height: 1.7; color: var(--color-beige); text-wrap: pretty; }
.measure { max-width: 600px; }

/* Filet d'or signature — 2px */
.rule { width: 64px; height: 2px; background: var(--color-or); border: 0; }
.rule-sm { width: 44px; }
.hairline { height: 1px; background: rgba(15,31,28,.1); border: 0; }
.hairline-on-dark { background: rgba(246,241,231,.14); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 26px; border: none; border-radius: 4px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: opacity .15s ease, background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--color-or); outline-offset: 2px; }
.btn-gold { background: var(--color-or); color: var(--color-encre); }
.btn-gold:hover { opacity: .9; }
.btn-encre { background: var(--color-encre); color: var(--color-ivoire); }
.btn-encre:hover { opacity: .88; }
.btn-ivoire { background: var(--color-ivoire); color: var(--color-encre); }
.btn-ivoire:hover { opacity: .9; }
.btn-ghost-dark { background: transparent; color: var(--color-encre); box-shadow: inset 0 0 0 1.5px rgba(15,31,28,.28); }
.btn-ghost-dark:hover { background: rgba(15,31,28,.05); }
.btn-ghost-light { background: transparent; color: var(--color-ivoire); box-shadow: inset 0 0 0 1.5px rgba(246,241,231,.32); }
.btn-ghost-light:hover { background: rgba(246,241,231,.07); }
.btn-lg { font-size: 13px; padding: 16px 32px; }

/* Lien fléché */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-laurier); text-decoration: none;
  transition: gap .15s ease, color .15s ease;
}
.arrow-link:hover { gap: 13px; color: var(--color-encre); }
.arrow-link .arw { transition: transform .15s ease; }
.arrow-link:hover .arw { transform: translateX(2px); }
.arrow-link.on-dark { color: var(--color-or-soft); }
.arrow-link.on-dark:hover { color: var(--color-ivoire); }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled {
  height: 64px; background: rgba(246,241,231,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(15,31,28,.08);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand svg { width: 30px; height: 30px; flex: none; transition: opacity .2s; }
.brand-wm {
  font-family: var(--font-serif); font-size: 11px; line-height: 1.25;
  letter-spacing: 0.17em; text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; position: relative; padding: 4px 0;
  transition: color .15s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--color-or); transition: right .22s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }

/* Variantes de header selon le fond derrière */
.site-header.on-dark { color: var(--color-ivoire); }
.site-header.on-dark .brand-wm { color: var(--color-ivoire); }
.site-header.on-dark .nav a { color: rgba(246,241,231,.78); }
.site-header.on-dark .nav a:hover { color: var(--color-ivoire); }
.site-header.scrolled { color: var(--color-encre); }
.site-header.scrolled .brand-wm { color: var(--color-encre); }
.site-header.scrolled .nav a { color: var(--color-beige); }
.site-header.scrolled .nav a:hover { color: var(--color-encre); }

.menu-toggle { display: none; }

/* ── Photo placeholder (charte : vraies photos cohortes) ── */
.photo-slot {
  position: relative; overflow: hidden;
  background-color: var(--color-ivoire-deep);
  background-image: repeating-linear-gradient(135deg,
     rgba(33,87,74,.10) 0 2px, transparent 2px 11px);
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.photo-slot.on-dark {
  background-color: rgba(246,241,231,.05);
  background-image: repeating-linear-gradient(135deg,
     rgba(246,241,231,.08) 0 2px, transparent 2px 11px);
}
.photo-slot .ph-label {
  font-family: 'Courier New', monospace; font-size: 11px; letter-spacing: 0.04em;
  color: var(--color-laurier); background: rgba(246,241,231,.86);
  padding: 6px 10px; margin: 12px; border-radius: 2px;
}
.photo-slot.on-dark .ph-label { color: var(--color-or-soft); background: rgba(15,31,28,.55); }

/* ── Reveal on scroll ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--color-encre); color: var(--color-ivoire); position: relative; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; position: relative; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand svg { width: 38px; height: 38px; }
.footer-wm { font-family: var(--font-serif); font-size: 11px; line-height: 1.25; letter-spacing: 0.17em; text-transform: uppercase; color: rgba(246,241,231,.62); }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: rgba(246,241,231,.5); margin-top: 22px; max-width: 320px; line-height: 1.4; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,241,231,.34); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(246,241,231,.55); text-decoration: none; padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: var(--color-ivoire); }
.footer-base { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(246,241,231,.12); position: relative; }
.footer-copy { font-size: 11.5px; color: rgba(246,241,231,.32); letter-spacing: 0.04em; }
.footer-seal { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,241,231,.32); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 920px) {
  .wrap { padding: 0 32px; }
  .pad { padding: 84px 0; }
  .nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════
   COMPOSANTS PARTAGÉS — refonte « école d'abord »
   ════════════════════════════════════════════════════════ */

/* ── Intro curtain (one-time, élégant, jamais bloquant) ──── */
.curtain { position: fixed; inset: 0; z-index: 1000; background: var(--color-encre);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; }
.curtain[hidden] { display: none; }
.curtain.lift { opacity: 0; visibility: hidden; transition: opacity .85s cubic-bezier(.4,0,.2,1), visibility .85s; }
.curtain .ct-mark { width: 60px; height: 60px; opacity: 0; transform: translateY(12px) scale(.94);
  animation: ctUp 1s cubic-bezier(.2,.7,.3,1) .05s forwards; }
.curtain .ct-line { width: 0; height: 1px; background: rgba(201,162,39,.65); animation: ctLine .9s ease .45s forwards; }
.curtain .ct-wm { font-family: var(--font-serif); letter-spacing: .36em; text-transform: uppercase;
  font-size: 12px; color: var(--color-or-soft); opacity: 0; animation: ctUp 1s cubic-bezier(.2,.7,.3,1) .28s forwards; }
@keyframes ctUp { to { opacity: 1; transform: none; } }
@keyframes ctLine { to { width: 132px; } }

/* ── Chapter marker (façon ouvrage relié) ─────────────────── */
.chapter { display: inline-flex; align-items: center; gap: 13px; }
.chapter .ch-num { font-family: var(--font-serif); font-size: 13px; letter-spacing: .14em; color: var(--color-or); }
.chapter .ch-line { width: 32px; height: 1px; background: rgba(201,162,39,.55); }
.chapter .ch-lab { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--color-laurier); }
.chapter.on-dark .ch-lab { color: var(--color-or-soft); }
.chapter.on-dark .ch-line { background: rgba(220,190,116,.45); }

/* ── Piliers de l'excellence (largeur des soft skills) ────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(246,241,231,.12); border: 1px solid rgba(246,241,231,.12); border-radius: 12px; overflow: hidden; }
.pillar { background: var(--color-encre); padding: 40px 32px; transition: background .25s ease; }
.pillar:hover { background: #13251f; }
.pillar .pl-n { font-family: var(--font-serif); font-size: 13px; letter-spacing: .14em; color: var(--color-or); }
.pillar h4 { font-family: var(--font-serif); font-weight: 400; font-size: 23px; color: var(--color-ivoire); margin: 16px 0 9px; }
.pillar p { font-size: 14px; line-height: 1.58; color: rgba(246,241,231,.6); }

/* ── Fil d'actualités / cohortes (annonces) ───────────────── */
.feed { border-top: 1px solid rgba(15,31,28,.12); }
.feed-item { display: grid; grid-template-columns: 156px 1fr auto; gap: 32px; align-items: center;
  padding: 30px 16px; border-bottom: 1px solid rgba(15,31,28,.12);
  text-decoration: none; color: inherit; transition: background .2s ease, padding .2s ease; }
.feed-item:hover { background: #fff; padding-left: 26px; padding-right: 26px; }
.feed-when { font-size: 11.5px; letter-spacing: .04em; color: var(--color-sable); }
.feed-when .fw-status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 9px; }
.feed-when .dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--color-laurier); }
.feed-when .dot-soon { width: 7px; height: 7px; border-radius: 50%; background: var(--color-or); }
.feed-when .dot-done { width: 7px; height: 7px; border-radius: 50%; background: var(--color-sable); }
.feed-main h3 { font-family: var(--font-serif); font-size: clamp(22px, 2.6vw, 30px); font-weight: 400; line-height: 1.14; margin-bottom: 8px; transition: color .15s; }
.feed-main p { font-size: 14px; color: var(--color-beige); max-width: 520px; line-height: 1.55; }
.feed-main .fm-meta { display: flex; gap: 10px; align-items: center; margin-top: 12px; font-size: 12px; letter-spacing: .04em; color: var(--color-sable); }
.feed-cta { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(15,31,28,.2); flex: none; transition: background .2s, color .2s, box-shadow .2s; }
.feed-item:hover .feed-cta { background: var(--color-encre); color: var(--color-ivoire); box-shadow: none; }
.feed-item:hover .feed-main h3 { color: var(--color-laurier); }
.status-live { color: var(--color-laurier); }
.status-soon { color: var(--color-or); }
.status-done { color: var(--color-sable); }

/* ════════════════════════════════════════════════════════
   AGENDA DE L'ÉCOLE — événements (rentrées · cohortes · masterclass)
   ════════════════════════════════════════════════════════ */

/* ── Ruban d'annonce (héro) — le prochain rendez-vous ────── */
.announce {
  display: inline-flex; align-items: stretch; border-radius: 30px; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(220,190,116,.38); text-decoration: none;
  transition: box-shadow .2s ease, background .2s ease;
}
.announce:hover { box-shadow: inset 0 0 0 1px rgba(220,190,116,.7); background: rgba(246,241,231,.04); }
.announce .a-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.15); color: var(--color-or-soft);
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 14px;
}
.announce .a-flag i { width: 6px; height: 6px; border-radius: 50%; background: var(--color-or); flex: none; }
.announce .a-text {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 13px; font-size: 12.5px; color: rgba(246,241,231,.85);
}
.announce .a-text .arw { color: var(--color-or-soft); transition: transform .15s ease; }
.announce:hover .a-text .arw { transform: translateX(3px); }

/* ── Étiquette de type d'événement ──────────────────────── */
.event-type {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 3px; white-space: nowrap;
}
.type-rentree     { color: var(--color-or);      box-shadow: inset 0 0 0 1px rgba(201,162,39,.5); }
.type-cohorte     { color: var(--color-laurier); box-shadow: inset 0 0 0 1px rgba(33,87,74,.4); }
.type-masterclass { color: var(--color-laurier); box-shadow: inset 0 0 0 1px rgba(33,87,74,.4); }
.type-portes      { color: var(--color-beige);   box-shadow: inset 0 0 0 1px rgba(15,31,28,.2); }
.on-encre .type-rentree     { color: var(--color-or-soft); box-shadow: inset 0 0 0 1px rgba(220,190,116,.5); }
.on-encre .type-cohorte,
.on-encre .type-masterclass { color: var(--color-or-soft); box-shadow: inset 0 0 0 1px rgba(246,241,231,.28); }

/* ── Statut (inscriptions ouvertes · en cours · bientôt · complet) ── */
.event-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.event-status i { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.st-open { color: var(--color-laurier); } .st-open i { background: var(--color-laurier); }
.st-live { color: var(--color-laurier); } .st-live i { background: var(--color-laurier); }
.st-soon { color: var(--color-or); }      .st-soon i { background: var(--color-or); }
.st-full { color: var(--color-sable); }   .st-full i { background: var(--color-sable); }
.on-encre .st-open, .on-encre .st-live { color: #7FB8A6; } .on-encre .st-open i, .on-encre .st-live i { background: #7FB8A6; }
.on-encre .st-soon { color: var(--color-or-soft); } .on-encre .st-soon i { background: var(--color-or); }

/* ── Carte vedette — le prochain rendez-vous ────────────── */
.agenda-feature {
  position: relative; overflow: hidden;
  background: var(--color-encre); color: var(--color-ivoire);
  border-radius: 14px; padding: 46px 50px;
  display: grid; grid-template-columns: 188px 1fr; gap: 50px; align-items: center;
}
.agenda-feature::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--color-or); }
.af-date { position: relative; z-index: 1; }
.afd-day { font-family: var(--font-serif); font-size: 92px; line-height: .86; color: var(--color-ivoire); }
.afd-mo { display: block; font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--color-or-soft); margin-top: 12px; line-height: 1.5; }
.af-divider { position: absolute; left: 224px; top: 46px; bottom: 46px; width: 1px; background: rgba(220,190,116,.3); }
.af-body { position: relative; z-index: 1; }
.af-top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.af-title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(26px, 3vw, 36px); line-height: 1.14; letter-spacing: .01em; color: var(--color-ivoire); }
.af-desc { font-size: 15px; line-height: 1.65; color: rgba(246,241,231,.66); max-width: 520px; margin-top: 14px; text-wrap: pretty; }
.af-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 20px; font-size: 12.5px; letter-spacing: .03em; color: rgba(246,241,231,.5); }
.af-meta .sep { color: rgba(246,241,231,.28); }
.af-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 28px; }

/* ── Grille des prochains événements ────────────────────── */
.agenda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.event-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid rgba(15,31,28,.08); border-radius: 12px;
  padding: 26px 26px 22px; text-decoration: none; color: inherit;
  transition: box-shadow .2s ease, transform .12s ease, border-color .2s ease;
}
.event-card:hover { box-shadow: 0 6px 22px rgba(15,31,28,.09); transform: translateY(-2px); border-color: rgba(33,87,74,.18); }
.ec-date { display: flex; align-items: baseline; gap: 8px; }
.ec-mo { font-family: var(--font-serif); font-size: 16px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-or); }
.ec-yr { font-size: 13px; color: var(--color-sable); letter-spacing: .04em; }
.ec-tags { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ec-title { font-family: var(--font-serif); font-weight: 400; font-size: 21px; line-height: 1.2; color: var(--color-encre); }
.ec-desc { font-size: 13.5px; line-height: 1.55; color: var(--color-beige); flex: 1; text-wrap: pretty; }
.ec-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 15px; border-top: 1px solid rgba(15,31,28,.08); }
.ec-meta { font-size: 11.5px; letter-spacing: .03em; color: var(--color-sable); }
.ec-arw { color: var(--color-laurier); font-size: 15px; transition: transform .15s ease; }
.event-card:hover .ec-arw { transform: translateX(3px); }

/* ── Agenda responsive ──────────────────────────────────── */
@media (max-width: 920px) {
  .agenda-feature { grid-template-columns: 1fr; gap: 26px; padding: 36px 32px; }
  .af-divider { display: none; }
  .afd-day { font-size: 72px; }
  .agenda-grid { grid-template-columns: 1fr; }
}

/* ── Agenda head ────────────────────────────────────────── */
.agenda-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 20px; }
.agenda-legend { display: flex; gap: 18px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.agenda-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .06em; color: var(--color-sable); }
.agenda-legend i { width: 8px; height: 8px; border-radius: 2px; flex: none; }

/* ── Section divider en losange (transition soignée) ──────── */
.diamond-divider { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 6px 0; }
.diamond-divider .dd-line { height: 1px; width: 90px; background: rgba(201,162,39,.4); }
.diamond-divider .dd-gem { width: 8px; height: 8px; background: var(--color-or); transform: rotate(45deg); }

@media (max-width: 920px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .feed-item { grid-template-columns: 1fr auto; }
  .feed-when { display: none; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
}
