/* ReMeT Cluster — Clinical Teal / Slate Navy
   Portable static site. Colors as CSS variables. Relative assets. */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-deep: #115e59;
  --teal-soft: #ccfbf1;
  --teal-mist: #f0fdfa;
  --navy: #0f172a;
  --navy-2: #1e293b;
  --navy-3: #334155;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-2: #cbd5e1;
  --bg: #f8fafc;
  --white: #ffffff;
  --sand: #f4f1ea;
  --danger: #b42318;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
  --max: 1180px;
  --header: 76px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; width: 100%; max-width: 100%; }
body {
  overflow-x: clip;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
}
body.is-menu {
  overflow: hidden;
  height: 100dvh;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--navy);
}
p { margin: 0 0 1em; color: var(--navy-3); }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus {
  left: 12px; top: 12px; z-index: 10000;
  background: var(--teal); color: #fff; padding: 8px 12px; border-radius: 8px;
}
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  box-sizing: border-box;
  min-width: 0;
}
.split > *, .featured-card > *, .member-hero > *,
.grid-2 > *, .grid-3 > *, .grid-4 > *, .form-row > *,
.hero-inner > *, .footer-grid > *, .newsbar-inner > * {
  min-width: 0;
}
h1, h2, h3, h4, p, li, td, th {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}
.eyebrow {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-dark); margin-bottom: 10px;
  max-width: 100%;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--teal); display: block;
}

/* Header — AIM-like sticky bar, medical palette */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line);
  height: var(--header);
}
.header-inner {
  height: var(--header);
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  box-sizing: border-box;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); flex: 0 1 auto;
  min-width: 0;
}
.logo svg { width: 42px; height: 42px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: 0.02em; }
.logo-text span { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--navy-2); font-size: 14px; font-weight: 600;
  padding: 8px 10px; border-radius: 8px;
}
.nav a:hover, .nav a.is-active { color: var(--teal-dark); background: var(--teal-mist); }
.header-tools { display: flex; align-items: center; gap: 8px; margin-left: auto; flex: 0 0 auto; }
.nav { margin-left: auto; }
@media (min-width: 981px) {
  .header-tools { margin-left: 8px; }
}
.lang {
  display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
}
.lang a, .lang button {
  border: 0; background: transparent; padding: 6px 10px; cursor: pointer;
  font-size: 12px; font-weight: 800; color: var(--muted);
  text-decoration: none; line-height: 1.2;
}
.lang a.is-on, .lang button.is-on { background: var(--navy); color: #fff; }
.lang a:hover { color: var(--navy); }
.menu-btn {
  display: none; border: 1px solid var(--line); background: #fff;
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
}
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--navy); margin: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
}
.btn:focus-visible, .nav a:focus-visible, .lang a:focus-visible, .menu-btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible, .card-link:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-outline {
  background: #fff; color: var(--navy); border-color: var(--line-2);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* Hero */
.hero {
  position: relative; color: #fff;
  min-height: 86vh;
  display: block;
  background: var(--navy);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.hero-media, .hero-shade, .hero-inner { min-width: 0; }
.hero-media {
  position: absolute; inset: 0;
  min-width: 0;
}
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.62) 48%, rgba(15,23,42,.28) 100%),
    linear-gradient(180deg, rgba(15,23,42,.2) 0%, rgba(15,23,42,.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 20px 72px;
  box-sizing: border-box;
}
.hero h1 {
  color: #fff; font-size: clamp(40px, 6vw, 74px); margin: 0 0 8px;
  font-weight: 600;
}
.hero .lead-name {
  color: var(--teal-soft); font-size: clamp(18px, 2.2vw, 26px);
  font-family: var(--serif); margin: 0 0 18px; max-width: 18em;
}
.hero p.uvp {
  color: rgba(255,255,255,.86);
  max-width: min(38em, 100%);
  width: 100%;
  font-size: 18px;
  overflow-wrap: break-word;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 22px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-meta div { min-width: 0; }
.hero-meta b { display: block; color: #fff; font-size: 22px; font-family: var(--serif); }
.hero-meta span { color: rgba(255,255,255,.7); font-size: 13px; }

/* Featured news strip like AIM */
.featured {
  background: var(--white);
  margin-top: -36px; position: relative; z-index: 3;
}
.featured-card {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  min-width: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
}
.featured-card > picture { display: block; min-height: 280px; height: 100%; }
.featured-card img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.featured-body { padding: 32px 34px; }
.featured-body h2 { font-size: 28px; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }

/* Sections */
.section { padding: 88px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; margin-bottom: 28px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin: 0; }
.section-muted { background: var(--bg); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,.78); }
.section-teal {
  background: linear-gradient(160deg, #0f766e 0%, #0d9488 55%, #134e4a 100%);
  color: #fff;
}
.section-teal h2, .section-teal h3 { color: #fff; }
.section-teal p { color: rgba(255,255,255,.88); }

/* Cards — AIM 3-col news/events/programs */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
}
.card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.card-img picture { display: block; width: 100%; height: 100%; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 20px; margin: 0; }
.card-body p { font-size: 14.5px; margin: 0; flex: 1; }
.card-link { font-weight: 700; font-size: 14px; color: var(--teal-dark); margin-top: 8px; }
.date { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .04em; }

/* Activity tiles */
.act {
  background: #fff; border-radius: 16px; padding: 26px;
  border: 1px solid var(--line);
}
.act .num {
  font-family: var(--serif); font-size: 32px; color: var(--teal); display: block; margin-bottom: 8px;
}
.act h3 { font-size: 22px; }

/* Table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
th { background: var(--navy); color: #fff; font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
td.money { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--teal-deep); }

/* Members */
.member-logo {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  min-height: 120px; display: grid; place-items: center; padding: 16px;
  text-align: center;
}
.member-logo strong { display: block; font-family: var(--serif); font-size: 18px; }
.member-logo span { font-size: 12px; color: var(--muted); }
.member-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; }
.member-hero img { border-radius: 16px; width: 100%; height: 420px; object-fit: cover; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 18px; }
.facts dt { font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.facts dd { margin: 0 0 8px; font-weight: 600; }

/* Newsletter — AIM pattern */
.newsbar {
  background: var(--navy); color: #fff; padding: 36px 0;
}
.newsbar-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap;
}
.newsbar h2 { color: #fff; font-size: 26px; margin: 0 0 6px; }
.newsbar p { color: rgba(255,255,255,.72); margin: 0; }
.newsbar form { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.newsbar form.is-sent input, .newsbar form.is-sent button { display: none; }
.newsbar input[type="email"] {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 12px 14px; border-radius: 999px; min-width: 0;
  width: min(280px, 100%);
}
.newsbar input::placeholder { color: rgba(255,255,255,.5); }

/* Forms */
.form {
  display: grid; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--navy-2); }
input, select, textarea {
  width: 100%; border: 1px solid var(--line-2); border-radius: 10px;
  padding: 12px 12px; background: #fff; color: var(--navy);
}
textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-note { font-size: 12.5px; color: var(--muted); }
.form-ok {
  display: none; background: var(--teal-mist); border: 1px solid var(--teal);
  color: var(--teal-deep); padding: 14px 16px; border-radius: 12px; font-weight: 600;
}
.form.is-sent .form-ok { display: block; }
.form.is-sent .form-fields { display: none; }
.sponsors {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px;
}
.sponsor {
  border: 1px dashed var(--line-2); border-radius: 12px; min-height: 84px;
  display: grid; place-items: center; color: var(--muted); font-size: 13px; font-weight: 700;
  background: #fff;
}

/* Page hero compact */
.page-hero {
  color: #fff;
  padding: 72px 0 56px;
  background-color: var(--navy);
  background-image: linear-gradient(120deg, rgba(15,23,42,.88), rgba(13,148,136,.4)), var(--ph, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 56px); }
.page-hero p { color: rgba(255,255,255,.8); max-width: min(40em, 100%); overflow-wrap: anywhere; }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 48px 0 24px; }
.footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 12px; font-family: var(--font); letter-spacing: .08em; text-transform: uppercase; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-copy {
  margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: grid; place-items: center; color: #fff;
}
.social a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.social a.is-soon { opacity: .4; pointer-events: none; }
.footer .logo svg rect:first-child { fill: #0d9488; }

/* Prose */
.prose { max-width: 46em; }
.prose h2 { margin-top: 1.4em; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.split img { border-radius: 16px; width: 100%; height: 360px; object-fit: cover; }
.quote {
  border-left: 3px solid var(--teal); padding: 4px 0 4px 18px;
  font-family: var(--serif); font-size: 22px; color: var(--navy); line-height: 1.35;
}

/* Timeline / program */
.program { display: grid; gap: 0; }
.program-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 18px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.program-item time { font-weight: 800; color: var(--teal-dark); }

/* Reports */
.report {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: #fff;
}

@media (max-width: 1180px) {
  .nav a { padding: 8px 7px; font-size: 13px; }
  .logo-text span { display: none; }
  .hero-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .nav {
    display: none;
    position: fixed;
    left: 0; right: 0; top: var(--header); bottom: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px calc(24px + env(safe-area-inset-bottom));
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-y: auto;
    z-index: 60;
    margin-left: 0;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; font-size: 17px; }
  .menu-btn { display: inline-flex; }
  .grid-2, .grid-3, .grid-4, .featured-card, .member-hero, .split, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .sponsors { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 0; }
  .hero-inner { padding: 72px 20px 48px; }
  .program-item { grid-template-columns: 1fr; gap: 6px; }
  .featured { margin-top: -24px; }
  .featured-body { padding: 22px 20px; }
  .featured-body h2 { font-size: 22px; }
  .member-hero img, .split img { height: 240px; }
  .quote { font-size: 18px; }
  .section { padding: 64px 0; }
  .newsbar-inner { padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
  .newsbar form { width: 100%; }
  .newsbar input[type="email"] { width: 100%; flex: 1 1 160px; }
}
@media (max-width: 640px) {
  :root { --header: 64px; }
  .wrap, .newsbar-inner {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .section { padding: 48px 0; }
  .hero { min-height: 0; }
  .hero h1 { font-size: clamp(36px, 12vw, 52px); }
  .hero .lead-name { font-size: 18px; max-width: none; }
  .hero-inner { padding: 56px 16px 40px; padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .hero p.uvp, .page-hero p { font-size: 16px; max-width: 100%; }
  h1, h2, h3, h4, p, li { overflow-wrap: anywhere; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .header-tools .btn { display: none; }
  .featured { margin-top: 0; padding: 8px 0 0; }
  .featured-card { width: calc(100% - 32px); box-shadow: var(--shadow); }
  .featured-card > picture, .featured-card img { min-height: 180px; }
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: clamp(28px, 9vw, 40px); }
  .hero-meta { gap: 14px; }
  .hero-meta b { font-size: 20px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 12px; }
  .section-head .btn { width: auto; }
  .act { padding: 20px; }
  .form { padding: 20px 16px; }
  .report { flex-direction: column; align-items: flex-start; }
  .sponsors { grid-template-columns: 1fr 1fr; }
  .table-wrap {
    border: 0;
    background: transparent;
    overflow: visible;
    border-radius: 0;
  }
  table { min-width: 0; }
  thead { display: none; }
  table, tbody, tr, td { display: block; width: 100%; }
  tr {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px 10px;
    margin-bottom: 12px;
  }
  td {
    border: 0;
    padding: 8px 0;
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 10px;
    align-items: start;
    font-size: 14px;
  }
  td::before {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    content: attr(data-label);
  }
  td:nth-child(1)::before { content: "Project"; }
  td:nth-child(2)::before { content: "Dates"; }
  td:nth-child(3)::before { content: "Source"; }
  td:nth-child(4)::before { content: "Amount"; }
  td:nth-child(5)::before { content: "Result"; }
  html[lang="uk"] td:nth-child(1)::before { content: "Проєкт"; }
  html[lang="uk"] td:nth-child(2)::before { content: "Дати"; }
  html[lang="uk"] td:nth-child(3)::before { content: "Джерело"; }
  html[lang="uk"] td:nth-child(4)::before { content: "Сума"; }
  html[lang="uk"] td:nth-child(5)::before { content: "Результат"; }
  .section-navy tr { background: #fff; }
  .footer { padding: 36px 0 20px; }
  .footer-copy { flex-direction: column; }
  .logo svg { width: 36px; height: 36px; }
  .facts { grid-template-columns: 1fr; }
  .split picture img, .member-hero picture img { height: 220px; object-fit: cover; width: 100%; border-radius: 16px; }
}
@media (max-width: 400px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .sponsors { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
  .btn:hover, .card:hover { transform: none; }
}
main, section { max-width: 100%; }

/* Fix: таблиця проєктів стоїть у .section-navy (color:#fff), але сама картка таблиці —
   біла. Без цього правила текст комірок білий по білому й не читається
   ні на десктопі (.table-wrap), ні на мобільному (tr{background:#fff}). */
.section-navy td { color: var(--navy-3); }
.section-navy td.money { color: var(--teal-deep); }


/* Сообщение о неудачной отправке формы */
.form-err { margin: 10px 0 0; font-size: 13px; color: #b91c1c; }
.form-err a { color: #b91c1c; text-decoration: underline; }
.newsbar .form-err, .newsbar .form-err a { color: #fecaca; }
.btn.is-soon { opacity: .45; pointer-events: none; }
