/* ==========================================================================
   ACCM (AC Capital Market) — Core Stylesheet
   Design system: deep navy / graphite dark theme + flame-orange accent
   Fonts: system stack only (no external CDN / no Google Fonts)
   ========================================================================== */

:root {
  /* -- Brand palette -- */
  --navy-950: #0a0f1c;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #29344a;
  --navy-600: #3a4863;
  --orange: #ff6b00;
  --orange-light: #ff8a33;
  --orange-dim: rgba(255, 107, 0, 0.14);
  --gold: #ffb347;

  --text-100: #f4f6fb;
  --text-300: #c7d0e0;
  --text-500: #8d98b3;
  --text-700: #5c6785;

  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(148, 163, 184, 0.3);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-card: 0 12px 32px -12px rgba(0, 0, 0, 0.55);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial,
    sans-serif;

  --container: 1180px;
}

/* -------------------------------- Reset -------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: var(--navy-900);
  color: var(--text-300);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
button {
  font: inherit;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ------------------------------ Utilities ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
}
.section--tight {
  padding: 56px 0;
}
.section--alt {
  background: var(--navy-800);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.12;
  color: var(--text-100);
  letter-spacing: -0.01em;
}
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.18;
  color: var(--text-100);
  letter-spacing: -0.01em;
}
h3,
.h3 {
  font-weight: 600;
  font-size: 21px;
  color: var(--text-100);
}
.lede {
  font-size: 18px;
  color: var(--text-300);
  max-width: 640px;
}
.text-muted {
  color: var(--text-500);
}
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
}

/* -------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--orange);
  color: #12100d;
}
.btn-primary:hover {
  background: var(--orange-light);
}
.btn-outline {
  border-color: var(--line-strong);
  color: var(--text-100);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}
.btn-ghost {
  color: var(--text-100);
  padding: 13px 8px;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}
.btn-block {
  width: 100%;
}

/* --------------------------------- Header -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-100);
  flex-shrink: 0;
}
.brand img {
  height: 34px;
  width: auto;
}
.brand small {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-500);
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-300);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--text-100);
  border-color: var(--orange);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  position: relative;
}
.lang-switch select {
  appearance: none;
  background: var(--navy-800);
  color: var(--text-100);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 8px 30px 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
}
.lang-switch::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-500);
  pointer-events: none;
  font-size: 11px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text-100);
  padding: 8px 10px;
}
@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 6px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .header-actions .btn-outline {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}
@media (max-width: 620px) {
  .header-actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* ------------------------------- Ticker bar ------------------------------ */
.ticker {
  background: var(--navy-950);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  padding: 8px 24px;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-item {
  font-size: 12.5px;
  color: var(--text-500);
  font-variant-numeric: tabular-nums;
}
.ticker-item b {
  color: var(--text-100);
  font-weight: 600;
  margin-right: 6px;
}
.ticker-item .up {
  color: #34d399;
}
.ticker-item .down {
  color: #f87171;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  background: radial-gradient(
      1100px 480px at 82% -10%,
      rgba(255, 107, 0, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, var(--navy-900), var(--navy-900) 70%, var(--navy-800));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-300);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.02);
}
.badge b {
  color: var(--orange-light);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-panel {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.hero-panel .stat-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.hero-panel .stat-row:last-child {
  border-bottom: none;
}
.hero-panel .stat-row span:first-child {
  color: var(--text-500);
}
.hero-panel .stat-row span:last-child {
  color: var(--text-100);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------- Cards ---------------------------------- */
.card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: var(--line-strong);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--orange-dim);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  font-size: 14.5px;
  color: var(--text-500);
}

.stat-card {
  text-align: left;
  border-left: 2px solid var(--orange);
  padding-left: 18px;
}
.stat-card .num {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-100);
  font-family: var(--font-display);
}
.stat-card .num span {
  color: var(--orange);
}
.stat-card .label {
  font-size: 14px;
  color: var(--text-500);
  margin-top: 6px;
}

/* ------------------------------- Section head ----------------------------- */
.section-head {
  max-width: 700px;
  margin-bottom: 46px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-head.center .eyebrow::before {
  display: none;
}

/* --------------------------------- Tables --------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--navy-800);
}
.spec-table {
  min-width: 720px;
  font-size: 14px;
}
.spec-table caption {
  text-align: left;
  padding: 16px 18px 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-100);
}
.spec-table th,
.spec-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.spec-table thead th {
  color: var(--text-500);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}
.spec-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.spec-table td.hl {
  color: var(--orange-light);
  font-weight: 700;
}
.spec-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---------------------------------- Tabs ----------------------------------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tab-btn {
  background: var(--navy-800);
  border: 1px solid var(--line);
  color: var(--text-300);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.tab-btn[aria-selected="true"] {
  background: var(--orange);
  border-color: var(--orange);
  color: #12100d;
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
}

/* -------------------------------- Timeline --------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--navy-800);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.85;
}

/* -------------------------------- Accordion --------------------------------- */
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
  color: var(--text-100);
  font-size: 16px;
}
.accordion-item summary::-webkit-details-marker {
  display: none;
}
.accordion-item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.accordion-item[open] summary::after {
  transform: rotate(45deg);
}
.accordion-item .accordion-body {
  padding: 0 4px 22px;
  color: var(--text-500);
  font-size: 14.5px;
  max-width: 800px;
}

/* --------------------------------- Forms ------------------------------------ */
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-300);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-100);
  font: inherit;
  font-size: 14.5px;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}
.form-note {
  font-size: 12.5px;
  color: var(--text-700);
}

/* ------------------------------- Regulation strip ---------------------------- */
.reg-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .reg-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .reg-strip {
    grid-template-columns: 1fr;
  }
}
.reg-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
}
.reg-card .flag {
  font-size: 12px;
  color: var(--text-500);
  margin-bottom: 6px;
}
.reg-card h3 {
  color: var(--orange-light);
  font-size: 24px;
  margin-bottom: 4px;
}
.reg-card .lic-no {
  font-family: "Courier New", monospace;
  font-size: 13px;
  color: var(--text-100);
  background: var(--navy-950);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin: 8px 0 12px;
}

/* ---------------------------------- Footer ----------------------------------- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-grid h4 {
  color: var(--text-100);
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-grid li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-grid a:hover {
  color: var(--orange-light);
}
.footer-legal {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-700);
}
.footer-risk {
  font-size: 12px;
  color: var(--text-700);
  line-height: 1.8;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.reg-badges span {
  font-size: 11.5px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 4px 8px;
  color: var(--text-500);
}

/* ------------------------------ Floating contact rail -------------------------- */
.float-rail {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  color: var(--text-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.float-btn:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}
.float-btn .tip {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  color: var(--text-100);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.float-btn:hover .tip {
  opacity: 1;
}
.float-btn.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #12100d;
}
.float-panel {
  position: fixed;
  right: 18px;
  bottom: 90px;
  width: 300px;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px;
  z-index: 310;
  display: none;
}
.float-panel.is-open {
  display: block;
}
.float-panel h4 {
  color: var(--text-100);
  margin-bottom: 12px;
}
.float-panel .close {
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--text-500);
  background: none;
  border: none;
  font-size: 18px;
}
.float-panel .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
}
.float-panel .row:last-child {
  border: none;
}

/* --------------------------------- Breadcrumb ---------------------------------- */
.breadcrumb {
  padding: 18px 0;
  font-size: 13px;
  color: var(--text-500);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a:hover {
  color: var(--orange-light);
}

/* --------------------------------- Misc pieces ---------------------------------- */
.divider {
  height: 1px;
  background: var(--line);
  margin: 60px 0;
}
.cta-band {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  opacity: 0.85;
}
.logo-strip img {
  height: 30px;
  filter: grayscale(1) brightness(1.6);
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .award-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.award-item {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  background: var(--navy-800);
}
.award-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  object-fit: contain;
}
.award-item .yr {
  color: var(--orange-light);
  font-weight: 700;
  font-size: 13px;
}
.award-item .ttl {
  font-size: 12.5px;
  color: var(--text-500);
  margin-top: 4px;
}

.news-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-800);
}
.news-card .thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-700);
  font-size: 12px;
}
.news-card .body {
  padding: 20px;
}
.news-card .meta {
  font-size: 12px;
  color: var(--text-700);
  margin-bottom: 8px;
}
.news-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.news-card p {
  font-size: 13.5px;
  color: var(--text-500);
}

.tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--orange-light);
  background: var(--orange-dim);
  border-radius: 4px;
  padding: 3px 9px;
  margin-right: 8px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}
.pagination a,
.pagination span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-300);
}
.pagination .current {
  background: var(--orange);
  border-color: var(--orange);
  color: #12100d;
  font-weight: 700;
}

.article-body {
  max-width: 760px;
  font-size: 16px;
  color: var(--text-300);
}
.article-body p {
  margin-bottom: 20px;
}
.article-body h2 {
  font-size: 24px;
  margin: 36px 0 16px;
}
.article-body img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.sidebar-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: var(--navy-800);
  margin-bottom: 20px;
}
.sidebar-block h4 {
  color: var(--text-100);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.sidebar-block li a {
  display: block;
  font-size: 13.5px;
  color: var(--text-500);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.sidebar-block li:last-child a {
  border-bottom: none;
}

/* visually-hidden SEO entity block */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
