/* ==========================================================================
   leteckanavigace.cz — design system
   Authoritative tokens + components. See .claude/skills/leteckanavigace-design-
   system/ for the reference. Aviation/navigation theme: deep sky blues + amber.
   ========================================================================== */

:root {
  /* Palette */
  --ln-sky-900: #0b2545;   /* deep navy — headers, text */
  --ln-sky-700: #13315c;
  --ln-sky-500: #2299cc;   /* primary (matches original WP accent) */
  --ln-sky-300: #8ecae6;
  --ln-sky-050: #eef6fb;
  --ln-amber:   #f4a259;   /* rally accent */
  --ln-ink:     #1a2433;
  --ln-muted:   #5b6b7f;
  --ln-line:    #e2e8f0;
  --ln-bg:      #ffffff;
  --ln-bg-soft: #f6f9fc;
  --ln-white:   #ffffff;
  --ln-danger:  #c0392b;
  --ln-success: #1e8e5a;

  /* Typography */
  --ln-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ln-h-font: "Open Sans", system-ui, sans-serif;

  /* Spacing / layout */
  --ln-container: 1140px;
  --ln-container-narrow: 760px;
  --ln-radius: 12px;
  --ln-radius-sm: 8px;
  --ln-shadow: 0 6px 24px rgba(11, 37, 69, 0.08);
  --ln-shadow-lg: 0 12px 40px rgba(11, 37, 69, 0.14);
  --ln-gap: 1.5rem;
}

/* Reset / base ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ln-font);
  color: var(--ln-ink);
  background: var(--ln-bg);
  line-height: 1.6;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ln-sky-500); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--ln-h-font); color: var(--ln-sky-900); line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ln-sky-900); color: #fff; padding: .6rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Layout ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--ln-container); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: var(--ln-container-narrow); }
.section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--muted { background: var(--ln-bg-soft); }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.section__title { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0; }
.section__link { font-weight: 600; white-space: nowrap; }
.empty { color: var(--ln-muted); font-style: italic; }

.page-head { margin-bottom: 2rem; }
.page-head__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-head__lead { color: var(--ln-muted); font-size: 1.15rem; max-width: 60ch; }
.breadcrumb { margin: 1.5rem 0 0; font-size: .95rem; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: 999px; font-weight: 600;
  border: 2px solid transparent; cursor: pointer; transition: .15s ease;
  text-decoration: none; font-size: 1rem;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--ln-sky-500); color: #fff; }
.btn--primary:hover { background: var(--ln-sky-700); }
.btn--ghost { background: transparent; color: var(--ln-sky-700); border-color: var(--ln-sky-300); }
.btn--ghost:hover { background: var(--ln-sky-050); }

/* Header / nav ------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ln-line); transition: box-shadow .2s ease;
}
.site-header[data-scrolled] { box-shadow: var(--ln-shadow); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.site-header__brand { display: flex; align-items: center; gap: .65rem; }
.site-header__mark { flex: none; height: 42px; width: auto; }
.site-header__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-header__brand-name { font-weight: 800; color: var(--ln-sky-900); font-size: 1.05rem; }
.site-header__brand-sub { font-size: .72rem; color: var(--ln-muted); text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 420px) { .site-header__brand-sub { display: none; } }
.site-nav__list { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.site-nav__list a { color: var(--ln-sky-900); font-weight: 600; padding: .4rem 0; border-bottom: 2px solid transparent; }
.site-nav__list a:hover { text-decoration: none; border-bottom-color: var(--ln-sky-300); }
.site-nav__list a[aria-current="page"] { border-bottom-color: var(--ln-sky-500); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ln-sky-900); transition: .2s; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .site-nav { position: fixed; inset: 68px 0 auto 0; background: #fff; border-bottom: 1px solid var(--ln-line); transform: translateY(-150%); transition: transform .25s ease; }
  .site-nav[data-open] { transform: translateY(0); box-shadow: var(--ln-shadow); }
  .site-nav__list { flex-direction: column; gap: 0; padding: 1rem 1.25rem; }
  .site-nav__list a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--ln-line); }
}

/* Hero (photo) ------------------------------------------------------------ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: #fff; background: var(--ln-sky-900);
  min-height: clamp(380px, 58vh, 580px);
  display: flex; align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
/* Photo layer + navy gradient scrim for text legibility (left-weighted). */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("/assets/img/hero-airfield.jpg") center 62% / cover no-repeat;
  transform: scale(1.02); /* hide cover edges */
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(8,25,48,.92) 0%, rgba(9,30,57,.74) 40%, rgba(11,37,69,.30) 100%),
    linear-gradient(0deg, rgba(8,25,48,.55), rgba(8,25,48,0) 45%);
}
.hero__inner { max-width: 640px; }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700;
  color: var(--ln-sky-300); margin: 0 0 .85rem;
}
.hero__title {
  color: #fff; font-size: clamp(2.1rem, 5.6vw, 3.6rem); line-height: 1.07; margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.hero__lead {
  color: rgba(255, 255, 255, .92); font-size: clamp(1.05rem, 2.2vw, 1.25rem); max-width: 52ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .3);
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.85rem; }
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .6); backdrop-filter: blur(2px); }
.hero__actions .btn--ghost:hover { background: rgba(255, 255, 255, .14); }

/* Team band — national-team identity strip ------------------------------- */
.team-band { background: var(--ln-sky-050); }
.team-band__inner {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem);
}
.team-band__media { border-radius: var(--ln-radius); overflow: hidden; box-shadow: var(--ln-shadow-lg); }
.team-band__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.team-band__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 700; color: var(--ln-sky-500); margin: 0 0 .5rem; }
.team-band__title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 .75rem; }
.team-band__text { color: var(--ln-muted); font-size: 1.08rem; }
@media (max-width: 760px) {
  .team-band__inner { grid-template-columns: 1fr; }
  .team-band__media { order: -1; }
}

/* Card grids -------------------------------------------------------------- */
.card-grid { display: grid; gap: var(--ln-gap); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.post-card { background: #fff; border: 1px solid var(--ln-line); border-radius: var(--ln-radius); overflow: hidden; display: flex; flex-direction: column; transition: .15s ease; }
.post-card:hover { box-shadow: var(--ln-shadow); transform: translateY(-2px); }
.post-card__media img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card__body { padding: 1.1rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.post-card__meta { display: flex; gap: .75rem; align-items: center; font-size: .82rem; color: var(--ln-muted); margin: 0; }
.post-card__cat { background: var(--ln-sky-050); color: var(--ln-sky-700); padding: .15rem .6rem; border-radius: 999px; font-weight: 600; }
.post-card__title { font-size: 1.2rem; margin: 0; }
.post-card__excerpt { color: var(--ln-muted); margin: 0; font-size: .95rem; }
.post-card__more { font-weight: 600; margin-top: auto; }

.card-grid--galleries { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.gallery-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--ln-line); border-radius: var(--ln-radius); overflow: hidden; color: var(--ln-ink); }
.gallery-card:hover { text-decoration: none; box-shadow: var(--ln-shadow); }
.gallery-card__media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.gallery-card__title { font-weight: 700; padding: .8rem 1rem .2rem; }
.gallery-card__date { padding: 0 1rem 1rem; color: var(--ln-muted); font-size: .85rem; }

/* Documents --------------------------------------------------------------- */
.doc-category { margin-bottom: 2.5rem; }
.doc-category__title { font-size: 1.5rem; border-bottom: 2px solid var(--ln-sky-300); padding-bottom: .4rem; margin-bottom: 1rem; }
.doc-group__title { font-size: 1.05rem; color: var(--ln-sky-700); margin: 1.25rem 0 .5rem; }
.doc-list { list-style: none; margin: 0; padding: 0; }
.doc-list__item { border-bottom: 1px solid var(--ln-line); }
.doc-list__link { display: flex; align-items: center; gap: .75rem; padding: .8rem .25rem; color: var(--ln-ink); }
.doc-list__link:hover { text-decoration: none; color: var(--ln-sky-700); }
.doc-list__icon { font-size: 1.2rem; }
.doc-list__title { font-weight: 600; }
.doc-list__date { margin-left: auto; color: var(--ln-muted); font-size: .85rem; }

/* Article / prose --------------------------------------------------------- */
.article { padding-block: 2rem 3rem; }
.article__eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--ln-sky-500); font-weight: 700; }
.article__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.article__meta { display: flex; gap: 1rem; color: var(--ln-muted); font-size: .9rem; }
.article__cover { margin: 1.5rem 0; }
.article__cover img { border-radius: var(--ln-radius); width: 100%; }
.prose { font-size: 1.08rem; }
.prose h2 { margin-top: 2rem; }
.prose img { border-radius: var(--ln-radius-sm); margin: 1.5rem 0; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose blockquote { border-left: 4px solid var(--ln-sky-300); margin: 1.5rem 0; padding: .25rem 0 .25rem 1.25rem; color: var(--ln-muted); }

/* Lightbox gallery -------------------------------------------------------- */
.lightbox-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.lightbox-grid__item img { aspect-ratio: 1; object-fit: cover; width: 100%; border-radius: var(--ln-radius-sm); transition: .15s; }
.lightbox-grid__item:hover img { transform: scale(1.03); box-shadow: var(--ln-shadow); }
.lb-overlay { position: fixed; inset: 0; background: rgba(7, 18, 33, 0.92); display: none; align-items: center; justify-content: center; z-index: 200; }
.lb-overlay[data-open] { display: flex; }
.lb-overlay img { max-width: 92vw; max-height: 88vh; border-radius: var(--ln-radius-sm); }
.lb-overlay__btn { position: absolute; background: none; border: 0; color: #fff; font-size: 2.5rem; cursor: pointer; padding: 1rem; }
.lb-overlay__close { top: .5rem; right: 1rem; }
.lb-overlay__prev { left: .5rem; top: 50%; transform: translateY(-50%); }
.lb-overlay__next { right: .5rem; top: 50%; transform: translateY(-50%); }

/* Forms ------------------------------------------------------------------- */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1.5fr; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { margin: 0 0 .75rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; font-size: .95rem; }
.field input, .field textarea {
  border: 1px solid var(--ln-line); border-radius: var(--ln-radius-sm); padding: .65rem .8rem;
  font: inherit; background: #fff; transition: border-color .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ln-sky-500); box-shadow: 0 0 0 3px rgba(34,153,204,.15); }
.field--error input, .field--error textarea { border-color: var(--ln-danger); }
.field__error { color: var(--ln-danger); font-size: .85rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form__status { margin-top: 1rem; font-weight: 600; }
.contact-form__status[data-state="ok"] { color: var(--ln-success); }
.contact-form__status[data-state="err"] { color: var(--ln-danger); }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--ln-sky-900); color: rgba(255,255,255,.85); margin-top: 3rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-block: 2.5rem; }
@media (max-width: 720px) { .site-footer__inner { grid-template-columns: 1fr; gap: 1.25rem; } }
.site-footer__logo { width: 230px; max-width: 100%; height: auto; margin-bottom: .5rem; }
.site-footer__sub { font-size: .85rem; color: var(--ln-sky-300); }
.site-footer__nav { display: flex; flex-direction: column; gap: .5rem; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: #fff; }
.site-footer__social { display: flex; gap: 1rem; margin-top: .5rem; }
.site-footer__legal { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1rem; font-size: .85rem; }

/* Error page -------------------------------------------------------------- */
.error-page { text-align: center; padding-block: 4rem; }
.error-page__code { font-size: clamp(4rem, 15vw, 8rem); color: var(--ln-sky-300); margin: 0; }
.error-page__msg { font-size: 1.25rem; color: var(--ln-muted); margin-bottom: 1.5rem; }

/* ==========================================================================
   Úspěchy — medal timeline + discipline pages
   ========================================================================== */

/* Discipline colour tokens (also used by medal dots) */
:root { --ln-rally: var(--ln-amber); --ln-precision: var(--ln-sky-500); --ln-anr: #2a9d8f; }

/* Medal stats band -------------------------------------------------------- */
.medal-stats { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 1.5rem 0 .5rem; }
.medal-stat { flex: 1 1 140px; max-width: 200px; text-align: center; padding: 1.1rem 1rem; border-radius: var(--ln-radius); background: #fff; border: 1px solid var(--ln-line); box-shadow: var(--ln-shadow); }
.medal-stat__num { display: block; font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 800; line-height: 1; color: var(--ln-sky-900); }
.medal-stat__lbl { display: block; font-size: .85rem; color: var(--ln-muted); margin-top: .3rem; }
.medal-stat--1 { border-top: 4px solid #f5b301; }
.medal-stat--2 { border-top: 4px solid #bcc6d1; }
.medal-stat--3 { border-top: 4px solid #cd7f3f; }
.medal-stat--total { border-top: 4px solid var(--ln-sky-500); }
.medal-stats__note { text-align: center; color: var(--ln-muted); font-size: .9rem; margin: .25rem 0 1.25rem; }

/* Discipline legend ------------------------------------------------------- */
.medal-legend { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; margin: 0 0 2rem; font-size: .85rem; color: var(--ln-muted); }
.medal-legend__item { display: inline-flex; align-items: center; gap: .4rem; }
.medal-legend__dot { width: 10px; height: 10px; border-radius: 50%; }
.medal-legend__dot--precision { background: var(--ln-precision); }
.medal-legend__dot--rally { background: var(--ln-rally); }
.medal-legend__dot--anr { background: var(--ln-anr); }

/* Vertical timeline (single left spine; year marker before each row) ------ */
.timeline { position: relative; list-style: none; margin: 1rem 0 0; padding: 0; }
.timeline::before { content: ""; position: absolute; top: 6px; bottom: 6px; left: 23px; width: 3px; background: linear-gradient(var(--ln-sky-300), var(--ln-line)); border-radius: 3px; }
.timeline__item { position: relative; padding: 0 0 1.75rem 64px; }
.timeline__marker { position: absolute; left: 0; top: 0; }
.timeline__year { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--ln-sky-900); color: #fff; font-weight: 800; font-size: .8rem; box-shadow: 0 0 0 4px var(--ln-bg), var(--ln-shadow); }
.timeline__card { background: #fff; border: 1px solid var(--ln-line); border-radius: var(--ln-radius); padding: .9rem 1.05rem 1.05rem; box-shadow: var(--ln-shadow); }
.timeline__count { margin: 0 0 .6rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ln-muted); font-weight: 700; }
.medal-row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }

/* Medal chip (button → popup) -------------------------------------------- */
.medal { position: relative; display: inline-flex; align-items: center; gap: .6rem; padding: .35rem 1.1rem .35rem .35rem; border: 1px solid var(--ln-line); border-radius: 999px; background: #fff; cursor: pointer; font: inherit; text-align: left; transition: .15s ease; }
.medal:hover { box-shadow: var(--ln-shadow); transform: translateY(-1px); border-color: var(--ln-sky-300); }
.medal:focus-visible { outline: 3px solid rgba(34, 153, 204, .45); outline-offset: 2px; }
.medal__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: .92rem; }
.medal--1 .medal__icon { background: linear-gradient(145deg, #ffe08a, #f5b301); color: #6b4e00; box-shadow: inset 0 -2px 4px rgba(0, 0, 0, .18); }
.medal--2 .medal__icon { background: linear-gradient(145deg, #eef2f6, #b9c4cf); color: #42505e; box-shadow: inset 0 -2px 4px rgba(0, 0, 0, .12); }
.medal--3 .medal__icon { background: linear-gradient(145deg, #e8b483, #cd7f3f); color: #5a2f10; box-shadow: inset 0 -2px 4px rgba(0, 0, 0, .15); }
.medal__text { display: flex; flex-direction: column; line-height: 1.15; }
.medal__cat { font-weight: 700; font-size: .88rem; color: var(--ln-ink); }
.medal__who { font-size: .76rem; color: var(--ln-muted); }
.medal__disc { position: absolute; top: 7px; right: 9px; width: 8px; height: 8px; border-radius: 50%; }
.medal__disc--precision { background: var(--ln-precision); }
.medal__disc--rally { background: var(--ln-rally); }
.medal__disc--anr { background: var(--ln-anr); }

.medal-source { margin-top: 2rem; font-size: .82rem; color: var(--ln-muted); font-style: italic; }

/* Medal detail popup ------------------------------------------------------ */
.medal-pop { position: fixed; inset: 0; background: rgba(7, 18, 33, .62); display: none; align-items: center; justify-content: center; z-index: 200; padding: 1rem; }
.medal-pop[data-open] { display: flex; }
.medal-pop__card { position: relative; background: #fff; border-radius: var(--ln-radius); max-width: 440px; width: 100%; padding: 1.75rem 1.6rem 1.6rem; box-shadow: var(--ln-shadow-lg); }
.medal-pop__close { position: absolute; top: .5rem; right: .6rem; background: none; border: 0; font-size: 1.7rem; line-height: 1; color: var(--ln-muted); cursor: pointer; padding: .3rem .5rem; border-radius: 8px; }
.medal-pop__close:hover { background: var(--ln-bg-soft); color: var(--ln-ink); }
.medal-pop__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.medal-pop__rank { flex: none; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.4rem; }
.medal-pop--1 .medal-pop__rank { background: linear-gradient(145deg, #ffe08a, #f5b301); color: #6b4e00; }
.medal-pop--2 .medal-pop__rank { background: linear-gradient(145deg, #eef2f6, #b9c4cf); color: #42505e; }
.medal-pop--3 .medal-pop__rank { background: linear-gradient(145deg, #e8b483, #cd7f3f); color: #5a2f10; }
.medal-pop__rankword { font-size: 1.25rem; font-weight: 800; color: var(--ln-sky-900); margin: 0; }
.medal-pop__cat { color: var(--ln-muted); margin: .1rem 0 0; }
.medal-pop__rows { list-style: none; margin: 0; padding: 0; }
.medal-pop__rows li { display: flex; gap: .75rem; padding: .5rem 0; border-top: 1px solid var(--ln-line); }
.medal-pop__rows dt, .medal-pop__k { flex: none; width: 110px; color: var(--ln-muted); font-size: .9rem; }
.medal-pop__v { font-weight: 600; color: var(--ln-ink); }
.medal-pop__disc-tag { display: inline-flex; align-items: center; gap: .4rem; }
.medal-pop__disc-dot { width: 9px; height: 9px; border-radius: 50%; }

/* Discipline page --------------------------------------------------------- */
.discipline { background: #fff; border: 1px solid var(--ln-line); border-radius: var(--ln-radius); padding: clamp(1.25rem, 3vw, 2rem); margin-bottom: 1.5rem; box-shadow: var(--ln-shadow); border-left: 5px solid var(--ln-sky-300); }
.discipline__head { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-bottom: .75rem; }
.discipline__badge { font-weight: 800; font-size: 1.3rem; color: var(--ln-sky-900); }
.discipline__badge--precision { color: var(--ln-precision); }
.discipline__badge--rally { color: #d6831f; }
.discipline__badge--anr { color: var(--ln-anr); }
.discipline__sub { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ln-muted); }
.discipline__lead { font-size: 1.1rem; color: var(--ln-ink); }
.discipline__points { margin: .75rem 0 0; padding-left: 1.2rem; }
.discipline__points li { margin-bottom: .5rem; }
.discipline-cta { text-align: center; padding: 2rem 1rem; background: var(--ln-sky-050); border-radius: var(--ln-radius); margin-top: 1rem; }
.discipline-cta p { font-size: 1.15rem; font-weight: 600; color: var(--ln-sky-900); margin-bottom: 1rem; }
