/* antheducation.com — shared styles. See DESIGN.md. */

:root {
  --bg: #FAF8F5;
  --ink: #1C1B1A;
  --muted: #5E5A55;
  --accent: #1F4FBF;
  --accent-ink: #FFFFFF;
  --accent-soft: #E9EEFA;
  --card: #FFFFFF;
  --border: #E8E4DE;
  --border-strong: #D6D0C7;
  --field: #FFFFFF;
  --danger: #B42318;
  --danger-soft: #FDECEA;
  --focus: #1F4FBF;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1100px;
  --gutter: 16px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: 180ms;
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141312;
    --ink: #EDEAE5;
    --muted: #A8A29A;
    --accent: #8AA8FF;
    --accent-ink: #0E1530;
    --accent-soft: #1C2440;
    --card: #1C1B19;
    --border: #2E2B28;
    --border-strong: #423E39;
    --field: #191816;
    --danger: #FF8A80;
    --danger-soft: #3A1D1A;
    --focus: #8AA8FF;
    color-scheme: dark;
  }
}

@media (min-width: 720px) {
  :root { --gutter: 32px; }
}

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

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

img, svg { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

[tabindex="-1"]:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -48px;
  background: var(--ink); color: var(--bg);
  padding: 8px 14px; border-radius: 8px; z-index: 100;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  min-height: 64px;
  transition: border-color var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); }

.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: 64px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 600; letter-spacing: -0.01em;
  font-size: 15px;
}
.brand:hover { text-decoration: none; }
.brand img { width: 28px; height: 28px; border-radius: 8px; }
.brand-name { display: none; }
@media (min-width: 560px) { .brand-name { display: inline; } }

.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 2px;
}
.site-nav a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px; font-weight: 500;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--ink); text-decoration: none; background: color-mix(in srgb, var(--ink) 5%, transparent); }
.site-nav a[aria-current="page"] { color: var(--ink); background: color-mix(in srgb, var(--ink) 7%, transparent); }
@media (max-width: 380px) { .site-nav a { padding: 8px 9px; font-size: 13.5px; } }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 96px;
  padding: 32px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.site-footer .wrap {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
}
.site-footer nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--ink); }

/* ---------- Type ---------- */

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  font-size: clamp(40px, 8.5vw, 76px);
}
.display em { font-style: italic; color: var(--accent); font-weight: 400; }

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-size: clamp(28px, 4.6vw, 40px);
  margin: 0 0 12px;
}

.lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 34em;
  margin: 20px 0 0;
  line-height: 1.55;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 88%, var(--ink)); }
.btn-primary:active { transform: scale(0.985); }
.btn-primary[disabled] { opacity: .7; cursor: progress; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); }

.link-quiet {
  background: none; border: 0; padding: 4px 2px; font: inherit;
  color: var(--muted); font-size: 14px; cursor: pointer;
  text-decoration: underline; text-decoration-color: var(--border-strong); text-underline-offset: 3px;
  transition: color var(--dur) var(--ease);
}
.link-quiet:hover { color: var(--ink); text-decoration-color: currentColor; }

/* ---------- Home ---------- */

.hero { padding: 72px 0 40px; position: relative; }
@media (min-width: 720px) { .hero { padding: 120px 0 64px; } }

.hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.35fr 1fr; gap: 56px; } }

.hero-art { display: none; color: var(--accent); }
@media (min-width: 900px) { .hero-art { display: block; } }
.hero-art svg { width: 100%; height: auto; max-width: 400px; margin-left: auto; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.section { padding: 48px 0; }
@media (min-width: 720px) { .section { padding: 72px 0; } }
.section-head { margin-bottom: 32px; max-width: 40em; }
.section-head p { color: var(--muted); margin: 0; }

.door-grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .door-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.door {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px;
  min-height: 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
@media (min-width: 720px) { .door { padding: 36px; min-height: 300px; } }
.door:hover { text-decoration: none; border-color: var(--border-strong); transform: translateY(-2px); }
.door-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 28px; }
.door h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.015em; line-height: 1.15;
  margin: 0 0 8px;
}
.door p { color: var(--muted); margin: 0; max-width: 28em; }
.door-foot {
  margin-top: auto; padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 600; color: var(--accent);
}
.door-foot .arrow { transition: transform var(--dur) var(--ease); }
.door:hover .door-foot .arrow { transform: translateX(4px); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--bg);
}
.door-top { display: flex; justify-content: space-between; align-items: flex-start; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.steps li {
  counter-increment: step;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}
.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 15px; color: var(--accent);
  margin-bottom: 14px; letter-spacing: .04em;
}
.steps h3 { margin: 0 0 6px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.steps p { margin: 0; color: var(--muted); }

.quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.3; letter-spacing: -0.01em;
  font-weight: 400; font-style: italic;
  max-width: 24em; margin: 0;
}
.quote-by { margin-top: 16px; color: var(--muted); font-size: 15px; }

/* ---------- Page header (inner pages) ---------- */

.page-head { padding: 64px 0 32px; }
@media (min-width: 720px) { .page-head { padding: 96px 0 40px; } }
.page-head .display { font-size: clamp(38px, 7vw, 60px); }

/* ---------- Bibliothèque ---------- */

.soon-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .soon-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.book {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  border: 1px dashed var(--border-strong);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--ink) 5%, transparent) 0 10px, transparent 10px) ,
    var(--card);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px 16px 16px 26px;
}
.book-line { height: 8px; border-radius: 4px; background: color-mix(in srgb, var(--ink) 8%, transparent); margin-top: 8px; }
.book-line.w60 { width: 60%; }
.book-line.w80 { width: 80%; }
.book-line.w40 { width: 40%; }

.feature-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
@media (min-width: 720px) { .feature-list { grid-template-columns: 1fr 1fr; gap: 24px; } }
.feature {
  padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card);
}
.feature h2 { font-family: var(--font-display); font-weight: 500; font-size: 24px; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--muted); }
.feature .door-icon { margin-bottom: 20px; }

.notice {
  margin-top: 32px; padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--ink); font-size: 15px;
}
.notice a { font-weight: 600; }

/* ---------- Découverte: gate ---------- */

.state[hidden] { display: none !important; }

.gate {
  min-height: calc(100vh - 64px - 140px);
  display: flex; align-items: center; justify-content: center;
  padding-top: 48px; padding-bottom: 24px;
}
.gate-card {
  width: 100%; max-width: 420px;
  text-align: center;
}
.gate-lock {
  width: 56px; height: 56px; margin: 0 auto 24px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
}
.gate-lock svg { width: 26px; height: 26px; }
.gate h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 6vw, 44px); letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 12px; }
.gate-sub { color: var(--muted); margin: 0 0 32px; }

.gate-form { display: grid; gap: 12px; text-align: left; }
.field {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  font: inherit; font-size: 17px; letter-spacing: .02em;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); letter-spacing: 0; }
.field:hover { border-color: color-mix(in srgb, var(--ink) 35%, var(--border-strong)); }
.field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
.field[aria-invalid="true"] { border-color: var(--danger); }
.field[aria-invalid="true"]:focus { box-shadow: 0 0 0 4px color-mix(in srgb, var(--danger) 18%, transparent); }

.gate-form .btn { width: 100%; min-height: 52px; font-size: 16px; }

.form-error {
  min-height: 22px; margin: 0;
  color: var(--danger); font-size: 14px; font-weight: 500;
}
.form-help { margin: 20px 0 0; color: var(--muted); font-size: 14px; text-align: center; }

.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid currentColor; border-right-color: transparent;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-state {
  min-height: 50vh; display: grid; place-items: center; color: var(--muted);
}
.loading-state .spinner { width: 22px; height: 22px; }

/* ---------- Découverte: shelves ---------- */

.shelves-head { padding-top: 48px; padding-bottom: 8px; }
@media (min-width: 720px) { .shelves-head { padding-top: 72px; } }
.shelves-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.shelves-head h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 6vw, 52px); letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.shelves-head p { color: var(--muted); margin: 10px 0 0; }

.toolbar {
  position: sticky; top: 64px; z-index: 10;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  margin-top: 24px;
  border-bottom: 1px solid var(--border);
}
.toolbar .wrap { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }

.segmented {
  display: inline-flex; padding: 4px; gap: 2px;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  border-radius: 999px;
}
.segmented button {
  font: inherit; font-size: 14px; font-weight: 600;
  border: 0; cursor: pointer;
  padding: 8px 18px; min-height: 38px;
  border-radius: 999px;
  background: transparent; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.segmented button:hover { color: var(--ink); }
.segmented button[aria-selected="true"] {
  background: var(--card); color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 0 0 1px var(--border);
}
.segmented .count { font-weight: 500; color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }

.search {
  position: relative; flex: 1 1 240px; max-width: 360px;
}
.search svg { position: absolute; left: 14px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search input {
  width: 100%; min-height: 42px;
  padding: 0 14px 0 40px;
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--field);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
.search input::-webkit-search-cancel-button { cursor: pointer; }
@media (max-width: 559px) { .search { max-width: none; flex-basis: 100%; } }

.shelf-body { padding-top: 32px; }

.group { margin: 0 0 48px; }
.group-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 0 0 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.group-head h2 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.group-head h2 .crumb { color: var(--muted); font-weight: 500; }
.group-head .n { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; white-space: nowrap; }

.cards { display: grid; gap: 12px; grid-template-columns: 1fr; list-style: none; margin: 0; padding: 0; }
@media (min-width: 560px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.card {
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { text-decoration: none; border-color: var(--border-strong); transform: translateY(-2px); }
.card-title { font-size: 16px; font-weight: 600; line-height: 1.35; letter-spacing: -0.005em; margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.chip {
  display: inline-block; max-width: 100%;
  font-size: 12px; font-weight: 500; line-height: 1;
  padding: 6px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.chip-level { background: var(--accent-soft); color: var(--accent); font-weight: 600; letter-spacing: .02em; }

mark { background: color-mix(in srgb, var(--accent) 22%, transparent); color: inherit; border-radius: 3px; padding: 0 1px; }

.empty {
  text-align: center; padding: 64px 16px;
  border: 1px dashed var(--border-strong); border-radius: var(--radius);
  color: var(--muted);
}
.empty h2 { color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: 26px; margin: 0 0 8px; letter-spacing: -0.01em; }
.empty p { margin: 0 auto; max-width: 30em; }
.empty .btn { margin-top: 20px; }

.shelves-foot { display: flex; justify-content: center; padding: 16px 0 0; }

/* ---------- Viewer ---------- */

body.viewer { height: 100vh; height: 100dvh; min-height: 0; overflow: hidden; }
.viewer-bar {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 12px;
  height: 52px; padding: 0 12px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.viewer-back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px 8px 8px; border-radius: 999px;
  color: var(--ink); font-size: 14px; font-weight: 600;
  flex: 0 0 auto;
  transition: background-color var(--dur) var(--ease);
}
.viewer-back:hover { background: color-mix(in srgb, var(--ink) 6%, transparent); text-decoration: none; }
.viewer-back svg { width: 18px; height: 18px; }
.viewer-title {
  flex: 1 1 auto; min-width: 0;
  margin: 0; font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-align: center;
}
.viewer-spacer { flex: 0 0 auto; width: 88px; display: flex; justify-content: flex-end; }
.viewer-spacer img { width: 24px; height: 24px; border-radius: 7px; }
@media (max-width: 480px) {
  .viewer-back .lbl { display: none; }
  .viewer-back { padding: 8px; }
  .viewer-spacer { width: 36px; }
  .viewer-title { text-align: left; }
}
.viewer-stage { flex: 1 1 auto; position: relative; min-height: 0; background: #fff; }
.viewer-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; background: #fff; }
.viewer-msg {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: var(--bg); color: var(--muted); padding: 24px;
}
.viewer-msg[hidden] { display: none; }
.viewer-msg h1 { color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: 28px; margin: 0 0 8px; }
.viewer-msg p { margin: 0 0 20px; }

/* ---------- Motion ---------- */

.fade-in { animation: fade .2s var(--ease) both; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .door:hover, .card:hover { transform: none; }
  .spinner { animation: none; border-right-color: currentColor; opacity: .5; }
}

/* ---------- Cours sections (content/sections.txt order) ---------- */

.shelf-section { margin: 0 0 56px; }
.shelf-section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 0 0 20px;
}
.shelf-section-head h2 {
  margin: 0; min-width: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}
.shelf-section-head .n { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.subgroup { margin: 0 0 32px; }
.subgroup:last-child { margin-bottom: 0; }
.subgroup .group-head { margin-bottom: 14px; }
.subgroup .group-head h3 { margin: 0; min-width: 0; font-size: 15px; font-weight: 600; letter-spacing: -0.005em; overflow-wrap: anywhere; }
.subgroup .group-head h3 .crumb { color: var(--muted); font-weight: 500; }
.card-soon {
  background: transparent;
  border-style: dashed; border-color: var(--border-strong);
  color: var(--muted); gap: 6px;
}
.card-soon:hover { transform: none; border-color: var(--border-strong); }
.card-soon .card-title { color: var(--muted); font-weight: 600; }
.card-soon p { margin: 0; font-size: 14px; line-height: 1.45; }
@media (max-width: 559px) { .shelf-section-head h2 { font-size: 24px; } }
