/* ═══════════════════════════════════════════════════════════════
   rbi-creditscore.css — My Business Credit Score page
   Redesign v2 — Manrope + Instrument Serif, navy/blue theme.
   Self-hosted fonts + illustration live in design-system/fonts
   and design-system/images. Scoped under .cs-page so the shared
   topbar / greeting (rbi.css) and other RBI pages are unaffected.
   ═══════════════════════════════════════════════════════════════ */

/* ── Self-hosted webfonts (page-scoped; not part of the global
      design-system tokens, which stay TT Hoves Pro / Butler) ──── */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('design-system/fonts/Manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('design-system/fonts/Manrope-latinext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+1E00-1EFF, U+2020, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('design-system/fonts/InstrumentSerif-Italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('design-system/fonts/InstrumentSerif-Italic-latinext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+1E00-1EFF;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('design-system/fonts/InstrumentSerif-Regular-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('design-system/fonts/InstrumentSerif-Regular-latinext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+1E00-1EFF;
}

/* ── Page-scoped tokens ──────────────────────────────────────── */
.cs-page,
.cs-page-footer {
  --cs-font: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --cs-font-serif: 'Instrument Serif', Georgia, serif;
  --cs-navy: #071A33;
  --cs-navy-2: #0D2247;
  --cs-ink: #0D1B2E;
  --cs-blue: #1B5FD9;
  --cs-blue-tint: #EEF3FB;
  --cs-text-2: #5A6B83;
  --cs-text-3: #7C8CA5;
  --cs-border: #E7EBF2;
  --cs-border-2: #E4E9F1;
  --cs-border-3: #EEF1F6;
  --cs-bg: #F4F6FA;
  font-family: var(--cs-font);
  color: var(--cs-ink);
}

/* ── Breadcrumb bar (unused / hidden) ──────────────────────────*/
.cs-breadbar {
  display: none !important;
}

/* ── Greeting wrapper — intentionally left untouched; the
      greeting section keeps its existing look per prior
      requirement. Only top spacing tightened slightly. ───────── */
.cs-greeting-wrap {
  padding-top: 24px !important;
  padding-bottom: 0 !important;
}

/* ── Page body ──────────────────────────────────────────────── */
.cs-page {
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 8px 40px 64px !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO CARD — dark gauge + score history
   ═══════════════════════════════════════════════════════════════ */
.cs-hero-card {
  border-radius: 26px;
  overflow: hidden;
  background: var(--cs-navy);
  box-shadow: 0 34px 70px -34px rgba(7, 26, 51, 0.55), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  display: grid;
  grid-template-columns: 400px 1fr;
}

/* ── Left: gauge + legend + verdict ───────────────────────────*/
.cs-hero-left {
  position: relative;
  padding: 34px 32px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(27, 95, 217, 0.14), rgba(27, 95, 217, 0) 55%);
}

.cs-gauge-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #7D96B8;
}

.cs-gauge-wrap {
  position: relative;
  margin: 18px auto 0;
  width: 280px;
  height: 232px;
}

.cs-gauge-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.cs-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 26px;
  gap: 12px;
}

.cs-gauge-score {
  font-family: var(--cs-font-serif);
  font-size: 92px;
  line-height: 0.86;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.cs-gauge-badge {
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.cs-gauge-scale {
  display: flex;
  justify-content: space-between;
  padding: 0 22px;
  margin-top: -4px;
  font-size: 13px;
  font-weight: 700;
  color: #93AAC8;
  font-variant-numeric: tabular-nums;
}

.cs-risk-legend {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cs-risk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}

.cs-risk-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cs-risk-range {
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  min-width: 74px;
}

.cs-risk-label {
  color: #A8BDD8;
  font-weight: 500;
}

.cs-verdict {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-verdict-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cs-verdict-badge {
  padding: 5px 10px;
  border-radius: 7px;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.cs-verdict-date {
  font-size: 11.5px;
  color: #A8BDD8;
  font-weight: 600;
}

.cs-verdict-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.015em;
}

.cs-verdict-link {
  font-size: 12.5px;
  font-weight: 700;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.cs-verdict-link:hover {
  color: #fff !important;
  border-bottom-color: #fff !important;
}

/* ── Right: score history chart + annotation ──────────────────*/
.cs-hero-right {
  padding: 34px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cs-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cs-chart-header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-chart-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #7D96B8;
}

.cs-chart-title {
  margin: 0;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}

.cs-chart-tabs {
  flex: none;
}

.cs-chart-tab {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
}

.cs-chart-wrap {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 26px 28px 18px;
}

.cs-chart-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.cs-chart-annotation {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-annotation-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cs-annotation-date {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.cs-annotation-band {
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.cs-annotation-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cs-annotation-bullet {
  display: flex;
  gap: 10px;
  padding: 16px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.cs-annotation-bullet-dot {
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
}

.cs-annotation-bullet p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #C6D6E8;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS (shared by Factors / FAQ / Articles)
   ═══════════════════════════════════════════════════════════════ */
.cs-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 12px 4px 0;
}

.cs-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cs-border-2);
}

.cs-section-head-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cs-border-2);
}

.cs-section-rule {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--cs-blue);
}

.cs-section-title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--cs-ink);
}

.cs-section-desc {
  margin: 0;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--cs-text-2);
  font-weight: 500;
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   SCORE FACTORS
   ═══════════════════════════════════════════════════════════════ */
.cs-factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cs-factor-card {
  background: #fff;
  border: 1px solid var(--cs-border);
  border-radius: 20px;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 2px rgba(13, 27, 46, 0.04), 0 18px 40px -30px rgba(13, 27, 46, 0.28);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cs-factor-card:hover {
  border-color: #C9D6EA;
  box-shadow: 0 1px 2px rgba(13, 27, 46, 0.04), 0 22px 44px -26px rgba(13, 27, 46, 0.3);
}

.cs-factor-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--cs-blue-tint);
  color: var(--cs-blue);
  display: grid;
  place-items: center;
}

.cs-factor-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--cs-ink);
}

.cs-factor-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cs-text-2);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.cs-faq-card {
  background: #fff;
  border: 1px solid var(--cs-border);
  border-radius: 22px;
  padding: 8px 10px;
  box-shadow: 0 1px 2px rgba(13, 27, 46, 0.04), 0 22px 50px -34px rgba(13, 27, 46, 0.3);
}

.cs-faq-item {
  border-bottom: 1px solid var(--cs-border-3);
}

.cs-faq-item:last-child {
  border-bottom: none;
}

.cs-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px;
  background: transparent;
  border: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--cs-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cs-faq-q:hover {
  color: var(--cs-blue);
}

.cs-faq-chevron {
  flex: none;
  display: flex;
  color: #8593AA;
  transition: transform 0.22s ease;
}

.cs-faq-item.open .cs-faq-chevron {
  transform: rotate(180deg);
}

.cs-faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
}

.cs-faq-body-inner {
  padding: 0 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-faq-body-inner p {
  margin: 0;
  max-width: 820px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--cs-text-2);
  font-weight: 500;
}

.cs-faq-body-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cs-faq-body-inner li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #37485F;
  font-weight: 600;
}

.cs-faq-range-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cs-faq-underline {
  text-decoration: underline;
  text-decoration-color: #B9C5D6;
  text-underline-offset: 2px;
  color: #37485F;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   ARTICLES
   ═══════════════════════════════════════════════════════════════ */
.cs-articles-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Feature hero card */
.cs-article-feature {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: stretch;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cs-navy);
  background-image: radial-gradient(110% 120% at 0% 0%, rgba(27, 95, 217, 0.34), transparent 62%);
  box-shadow: 0 30px 64px -34px rgba(7, 26, 51, 0.5);
}

.cs-article-feature-body {
  padding: 36px 40px 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.cs-article-feature-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-article-feature-tag {
  padding: 5px 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #C6D6E8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.cs-article-feature-sub {
  font-size: 11.5px;
  font-weight: 600;
  color: #8AA3C2;
}

.cs-article-feature-title {
  margin: 0;
  max-width: 460px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.cs-article-feature-text {
  margin: 0;
  max-width: 480px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #B6C9DE;
  font-weight: 500;
}

.cs-article-feature-cta {
  align-self: flex-start;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 9px;
  background: #fff;
  color: var(--cs-navy);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.15s ease;
}

.cs-article-feature-cta:hover {
  background: #DCE7F5;
}

.cs-article-feature-img {
  position: relative;
  background: var(--cs-navy-2);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-article-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3-up card row */
.cs-articles-row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cs-article-card {
  background: #fff;
  border: 1px solid var(--cs-border);
  border-radius: 18px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  box-shadow: 0 1px 2px rgba(13, 27, 46, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cs-article-card:hover {
  border-color: #C9D6EA;
  box-shadow: 0 1px 2px rgba(13, 27, 46, 0.04), 0 22px 44px -30px rgba(13, 27, 46, 0.34);
}

.cs-article-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cs-article-card-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--cs-blue);
}

.cs-article-card-num {
  font-size: 11px;
  font-weight: 800;
  color: #C3CDDC;
  font-variant-numeric: tabular-nums;
}

.cs-article-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.32;
  color: var(--cs-ink);
}

.cs-article-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--cs-text-2);
  font-weight: 500;
}

.cs-article-card-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--cs-blue);
}

/* Bordered list rows */
.cs-articles-list {
  background: #fff;
  border: 1px solid var(--cs-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(13, 27, 46, 0.04);
}

.cs-article-row {
  display: grid;
  grid-template-columns: 38px 1fr 300px 22px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--cs-border-3);
  color: inherit;
  transition: background 0.15s ease;
}

.cs-article-row:last-child {
  border-bottom: none;
}

.cs-article-row:hover {
  background: #FAFBFD;
}

.cs-article-row-num {
  font-size: 11px;
  font-weight: 800;
  color: #C3CDDC;
  font-variant-numeric: tabular-nums;
}

.cs-article-row h4 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cs-ink);
}

.cs-article-row p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--cs-text-3);
  font-weight: 500;
}

.cs-article-row-arrow {
  display: flex;
  justify-content: flex-end;
  color: #A7B4C8;
}

/* ═══════════════════════════════════════════════════════════════
   DISCLAIMER + FOOTER
   ═══════════════════════════════════════════════════════════════ */
.cs-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 4px 0;
  border-top: 1px solid var(--cs-border-2);
  margin-top: 12px;
}

.cs-disclaimer p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: #8A97AB;
  font-style: italic;
  font-weight: 500;
  max-width: 1000px;
}

.cs-page-footer {
  background: var(--cs-navy);
  color: #94A9C4;
  font-family: var(--cs-font);
}

.cs-footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
  font-weight: 500;
  flex-wrap: wrap;
}

.cs-footer-center {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cs-footer-center a {
  color: #C6D6E8;
}

.cs-footer-center a:hover {
  color: #fff;
}

.cs-footer-sep {
  opacity: 0.4;
}

.cs-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #C6D6E8;
}

.cs-footer-icon {
  color: inherit;
  transition: color 0.15s ease;
}

.cs-footer-icon:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SKELETON / ERROR STATES (hero card loading + retry)
   ═══════════════════════════════════════════════════════════════ */
.cs-skel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.cs-skel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  animation: csSkelShimmer 1.4s ease-in-out infinite;
}

@keyframes csSkelShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.cs-skel-gauge {
  width: 232px;
  height: 232px;
  border-radius: 50%;
  margin: 18px auto 0;
}

.cs-skel-legend {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-skel-line {
  height: 12px;
  border-radius: 6px;
}

.cs-skel-verdict {
  margin-top: 24px;
  height: 108px;
  border-radius: 18px;
}

.cs-skel-chart {
  height: 200px;
  border-radius: 20px;
}

.cs-skel-annotation {
  height: 150px;
  border-radius: 20px;
}

.cs-hero-error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 40px;
}

.cs-error-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 320px;
}

.cs-error-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(240, 74, 74, 0.14);
  color: #FF9A9A;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.cs-error-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.cs-error-sub {
  margin: 0 0 8px;
  font-size: 13px;
  color: #A8BDD8;
  font-weight: 500;
  line-height: 1.5;
}

.cs-error-retry {
  height: 38px;
  padding: 0 20px;
  border-radius: 9px;
  border: 0;
  background: var(--cs-blue);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cs-error-retry:hover:not(:disabled) {
  background: #164FBA;
}

.cs-error-retry:disabled {
  opacity: 0.6;
  cursor: default;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .cs-page {
    max-width: 100%;
  }

  .cs-factors-grid {
    grid-template-columns: 1fr;
  }

  .cs-articles-row3 {
    grid-template-columns: 1fr;
  }

  .cs-article-row {
    grid-template-columns: 30px 1fr;
  }

  .cs-article-row p {
    display: none;
  }

  .cs-article-row-arrow {
    display: none;
  }
}

@media (max-width: 980px) {
  .cs-hero-card {
    grid-template-columns: 1fr;
  }

  .cs-hero-left {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cs-article-feature {
    grid-template-columns: 1fr;
  }

  .cs-article-feature-img {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .cs-page {
    padding: 8px 20px 48px !important;
  }

  .cs-section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cs-section-desc {
    text-align: left;
    max-width: 100%;
  }

  .cs-annotation-bullets {
    grid-template-columns: 1fr;
  }

  .cs-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .cs-hero-left {
    padding: 26px 20px 24px;
  }

  .cs-hero-right {
    padding: 26px 20px 24px;
  }

  .cs-gauge-wrap {
    width: 100%;
    max-width: 260px;
  }

  .cs-chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-skel::after {
    animation: none;
  }

  .cs-faq-body,
  .cs-factor-card,
  .cs-article-card,
  .cs-verdict-link {
    transition: none !important;
  }
}