/* ==========================================================================
   MA-06 Campaign Finance Dashboard — The Marblehead Independent
   Brand: Georgia editorial type, Inter for dense UI; Shell White / Harbor
   Black / Independent Red / Slate Blue. See site/README.md for the deploy
   note on lifting these tokens into the Ghost theme's custom page template.
   ========================================================================== */

:root {
  --shell-white: #FDF9F4;
  --harbor-black: #1E1F21;
  --independent-red: #C2261D;
  --slate-blue: #375E97;
  --paper: #FBF6EE;
  --linen: #EDE5D6;
  --hairline: #DDD3C2;
  --ink-soft: #5B5C5F;
  --positive: #2F6B4F;

  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Georgia, "Times New Roman", Times, serif;
  --amber: #8a6d3b;

  --maxw: 1180px;
  --pad: clamp(1rem, 3.5vw, 2.25rem);
  --radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.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;
}

/* Full label always in the DOM for assistive tech; only the visual
   presentation swaps at narrow widths (see dualLabel() in app.js). */
.dual-short { display: none; }
@media (max-width: 599px) {
  .dual-full { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
  .dual-short { display: inline; }
}

* , *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--shell-white);
  color: var(--harbor-black);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* Editorial text (headings, paragraphs, captions) centers by default;
     charts, the section nav and data/control UI opt back out below since
     centering tables, forms and bar charts would hurt readability. */
  text-align: center;
}

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0 0 .4rem; letter-spacing: -.01em; }
h1 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.1; text-wrap: balance; }
h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.2; }
h3 { font-size: 1.05rem; }
p { margin: 0 0 .8rem; }
a { color: var(--slate-blue); }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--independent-red); outline-offset: 2px;
}

.kicker {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; font-size: .72rem; color: var(--independent-red);
}

.dek {
  color: var(--ink-soft); font-family: var(--serif); font-style: italic; font-size: 1.02rem;
  max-width: 46rem; margin-inline: auto;
}

.byline {
  font-family: var(--sans); font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--ink-soft); margin-top: .6rem;
}

.rule { width: 56px; height: 3px; background: var(--independent-red); border: 0; margin: 1rem auto; }

/* ---- masthead ---- */
.masthead { padding-block: clamp(1.6rem, 5vw, 2.6rem) 1.2rem; border-bottom: 1px solid var(--hairline); }
.masthead-logo { display: inline-block; margin-bottom: 1rem; }
.masthead-logo img { display: block; width: 100%; max-width: 380px; height: auto; }
.masthead-logo:hover { text-decoration: none; opacity: .88; }
.masthead .meta-line {
  font-family: var(--sans); font-size: .78rem; color: var(--ink-soft); margin-top: .6rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .3rem 1rem;
}
.masthead .meta-line strong { color: var(--harbor-black); }

/* Phone-only hint -- a suggestion, not a requirement; every section still
   works fully in portrait, this just tells readers landscape is roomier. */
.mobile-rotate-hint { display: none; }
@media (max-width: 820px) {
  .mobile-rotate-hint {
    display: block; margin: .7rem auto 0; max-width: 32rem; font-family: var(--sans);
    font-size: .78rem; font-style: italic; color: var(--ink-soft);
  }
}

/* ---- sticky section nav ---- */
.sectionnav {
  text-align: left;
  position: sticky; top: 0; z-index: 30; background: rgba(253,249,244,.96);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
}
.sectionnav .wrap { display: flex; align-items: center; gap: .3rem; overflow-x: auto; padding-block: .55rem; scrollbar-width: thin; }
.sectionnav-links { display: flex; gap: .3rem; flex: 1; }
/* Centered on desktop, where it all fits on one line; left-aligned and
   scrollable on narrow screens so the start of the list is never hidden. */
@media (min-width: 821px) {
  .sectionnav .wrap { justify-content: center; }
}
/* Below 821px the pill row would need horizontal scrolling to reach every
   section, so it's replaced by a compact, fully keyboard/AT-accessible
   jump-to-section <select> -- not a smaller version of the same row. */
.sectionnav-jump { display: none; }
@media (max-width: 820px) {
  .sectionnav-links { display: none; }
  .sectionnav-jump { display: block; flex: 1; }
  .sectionnav-jump select {
    width: 100%; font-family: var(--sans); font-size: .82rem; padding: .5rem .6rem;
    border: 1px solid var(--hairline); border-radius: 6px; background: #fff; color: var(--harbor-black);
    min-height: 44px;
  }
}
.sectionnav a {
  font-family: var(--sans); font-size: .74rem; font-weight: 600; color: var(--harbor-black);
  text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap; padding: .32rem .68rem; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none;
}
.sectionnav a:hover { border-color: var(--hairline); text-decoration: none; }
.sectionnav a.active { color: var(--independent-red); border-color: var(--independent-red); }
.sectionnav a.nav-home {
  color: var(--independent-red); margin-right: .5rem; padding-right: .8rem;
  border-right: 1px solid var(--hairline); border-radius: 0; border-left-color: transparent;
  border-top-color: transparent; border-bottom-color: transparent;
}
.sectionnav a.nav-home:hover { text-decoration: underline; }

section.panel { padding-block: clamp(1.6rem, 4vw, 2.6rem); border-bottom: 1px solid var(--hairline); }
section.panel:last-of-type { border-bottom: 0; }
.panel-head { margin-bottom: 1.1rem; }
.panel-note { font-size: .84rem; color: var(--ink-soft); max-width: 48rem; margin-inline: auto; }

/* ---- charts, tables, forms and cards: left-aligned, not editorial prose ---- */
.metric-grid, .card-grid, .controls, .table-scroll, .stack-bar, .stack-legend,
.candidate-stack, .hbar-row, .timeline-chart, .timeline-labels, .pill-tabs,
.pagination, .two-col { text-align: left; }

/* ---- headline metric tiles ---- */
/* Fixed 4-column grid (2 tidy rows of 4) rather than auto-fit, which was
   packing 6-7 tiles into the first row on wide desktops and stranding the
   rest awkwardly on their own line. */
.metric-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 1.4rem;
}
@media (max-width: 760px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}
.metric-tile { background: var(--paper); padding: .95rem 1rem; }
.metric-tile .label {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .07em; font-size: .68rem;
  color: var(--ink-soft); font-weight: 700; margin-bottom: .3rem; display: flex; align-items: center; gap: .3rem;
}
.metric-tile .value { font-family: var(--serif); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.55rem); }
.metric-tile .value.accent { color: var(--independent-red); }
.metric-tile .sub { font-size: .74rem; color: var(--ink-soft); margin-top: .15rem; }

/* Secondary metrics are visually quieter than the four primary tiles --
   smaller type, muted background -- so the page doesn't present 8+ figures
   with equal weight. */
.metric-grid-secondary { margin-top: 1px; grid-template-columns: repeat(5, 1fr); }
.metric-grid-secondary .metric-tile { background: transparent; padding: .7rem .8rem; }
.metric-grid-secondary .value { font-size: 1rem; color: var(--harbor-black); }
.metric-grid-secondary .label { font-size: .62rem; }
@media (max-width: 900px) { .metric-grid-secondary { grid-template-columns: repeat(2, 1fr); } }

.recon-flag {
  font-family: var(--sans); font-size: .74rem; color: var(--independent-red); margin: .5rem 0 0;
  border-left: 2px solid var(--independent-red); padding-left: .5rem;
}

/* ---- tooltips for jargon ---- */
.tip { border-bottom: 1px dotted var(--ink-soft); cursor: help; position: relative; }
.tip:hover::after, .tip:focus::after {
  content: attr(data-tip); position: absolute; left: 0; top: 130%; z-index: 40;
  background: var(--harbor-black); color: var(--shell-white); font-family: var(--sans);
  font-size: .72rem; font-weight: 400; line-height: 1.4; padding: .5rem .6rem; border-radius: 4px;
  width: max-content; max-width: 240px; text-transform: none; letter-spacing: normal; box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

/* ---- reader-support appeal card ---- */
.support-card {
  display: block; text-align: center; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 1.3rem 1rem; margin: 1.8rem auto; max-width: 40rem;
}
.support-card p { margin: 0 auto .7rem; font-size: .86rem; color: var(--ink-soft); max-width: 34rem; }
.support-card .kicker { margin-bottom: .5rem; color: var(--independent-red); letter-spacing: .1em; }
.support-progress { margin: 0 auto .9rem; max-width: 18rem; }
.support-progress .hbar-track { height: 5px; margin-bottom: .35rem; background: var(--linen); }
.support-progress .hbar-fill { background: var(--slate-blue); }
.support-progress-label { font-family: var(--sans); font-size: .7rem; color: var(--ink-soft); margin: 0; }
.support-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: .7rem; }
.support-actions .btn { font-size: .72rem; font-weight: 600; padding: .34rem .7rem; background: transparent; color: var(--harbor-black); border-color: var(--hairline); }
.support-actions .btn:hover { background: var(--linen); color: var(--harbor-black); border-color: var(--hairline); }
.support-newsletter { font-size: .78rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---- candidate comparison cards ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .9rem; }
.candidate-card {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: .95rem 1rem;
}
.candidate-card h3 { margin-bottom: .5rem; }
.candidate-card dl { display: grid; grid-template-columns: auto 1fr; gap: .18rem .5rem; font-size: .82rem; margin: 0; }
.candidate-card dt { color: var(--ink-soft); }
.candidate-card dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
.mini-bar { height: 6px; border-radius: 3px; background: var(--hairline); overflow: hidden; margin: 0 0 .6rem; }
.mini-bar span { display: block; height: 100%; background: var(--independent-red); }

/* ---- controls (filters) ---- */
.controls { display: flex; flex-wrap: wrap; gap: .6rem; align-items: end; margin-bottom: 1rem; font-family: var(--sans); }
.control {
  display: flex; flex-direction: column; gap: .25rem; font-size: .76rem; color: var(--ink-soft);
  flex: 1 1 140px; min-width: 0; max-width: 100%;
}
.control label { font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .68rem; }
.control input, .control select {
  font-family: var(--sans); font-size: .85rem; padding: .4rem .55rem; border: 1px solid var(--hairline);
  border-radius: 4px; background: #fff; color: var(--harbor-black); width: 100%; max-width: 100%; min-width: 0;
  box-sizing: border-box;
}
.control input:focus, .control select:focus { border-color: var(--slate-blue); }
.btn {
  font-family: var(--sans); font-size: .78rem; font-weight: 600; padding: .42rem .8rem; border-radius: 4px;
  border: 1px solid var(--harbor-black); background: var(--harbor-black); color: var(--shell-white); cursor: pointer;
}
.btn:hover { background: var(--independent-red); border-color: var(--independent-red); }
.btn.secondary { background: transparent; color: var(--harbor-black); }
.btn.secondary:hover { background: var(--linen); color: var(--harbor-black); }

/* ---- tables ---- */
/* max-height turns this into its own scroll box (both axes) so sticky
   headers stick to ITS top, not the page's -- an overflow-x-only box never
   lets position:sticky engage against the page scroll, which is why the
   header used to just scroll away under the nav instead of sticking. */
.table-scroll { overflow: auto; max-height: 65vh; border: 1px solid var(--hairline); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; font-family: var(--sans); font-size: .82rem; min-width: 640px; }
thead th {
  position: sticky; top: 0; z-index: 5; background: var(--harbor-black); color: var(--shell-white); text-align: left;
  padding: .55rem .7rem; font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap;
}
thead th.num, td.num { text-align: right; font-variant-numeric: tabular-nums; }
.sort-btn {
  display: block; width: calc(100% + 1.4rem); font: inherit; color: inherit; background: transparent; border: 0;
  padding: .55rem .7rem; margin: -.55rem -.7rem; text-align: inherit; text-transform: inherit; letter-spacing: inherit;
  cursor: pointer; user-select: none; min-height: 36px;
}
.sort-btn:hover { background: rgba(255,255,255,.08); }
th.num .sort-btn { text-align: right; }
.sort-btn .arrow { opacity: .5; margin-left: .25rem; font-size: .65rem; }
.sort-btn.sorted .arrow { opacity: 1; color: #f2a99f; }
tbody td { padding: .5rem .7rem; border-top: 1px solid var(--hairline); white-space: nowrap; }
tbody tr:nth-child(even) { background: rgba(0,0,0,.015); }
tbody tr:hover { background: var(--linen); }
td.name-cell, td.wrap-cell { white-space: normal; }
.tag-pill {
  display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: .1rem .4rem; border-radius: 999px; border: 1px solid var(--hairline); color: var(--ink-soft);
}
.tag-pill.in-district { color: var(--positive); border-color: var(--positive); }
.tag-pill.out-of-state { color: var(--independent-red); border-color: var(--independent-red); }
.tag-pill.withdrawn { color: var(--independent-red); border-color: var(--independent-red); white-space: nowrap; font-size: .58rem; }
.candidate-card h3 { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }
/* Not dimmed via opacity -- that also fades the text below the 4.5:1 contrast
   floor. The "Withdrawn" pill plus this muted fill carry the visual signal
   instead. */
.candidate-card.is-withdrawn { background: var(--paper); border-color: var(--ink-soft); }

/* ---- bar charts (div-based, no chart library) ---- */
.stack-bar { display: flex; height: 22px; border-radius: 4px; overflow: hidden; border: 1px solid var(--hairline); }
.stack-bar .seg { height: 100%; }
button.seg {
  border: 0; padding: 0; cursor: pointer; min-width: 3px;
  outline-offset: -2px;
}
button.seg:hover, button.seg:focus-visible { filter: brightness(0.88); }
.stack-legend { display: flex; flex-wrap: wrap; gap: .45rem 1rem; font-size: .76rem; margin-top: .55rem; }
.stack-legend .item { display: flex; align-items: center; gap: .35rem; }
.stack-legend .swatch { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.candidate-stack { margin-bottom: 1.1rem; }
.candidate-stack .row-label { display: flex; justify-content: space-between; font-size: .8rem; margin-bottom: .3rem; }
.candidate-stack .row-label .name { font-weight: 700; }

.hbar-row { display: grid; grid-template-columns: minmax(120px,220px) 1fr auto; align-items: center; gap: .6rem; margin-bottom: .38rem; font-size: .8rem; }
.hbar-track { height: 14px; background: var(--linen); border-radius: 3px; overflow: hidden; }
.hbar-fill { height: 100%; background: var(--slate-blue); border-radius: 3px 0 0 3px; }
.hbar-row .amt { font-variant-numeric: tabular-nums; text-align: right; min-width: 74px; }
.hbar-row .lbl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.timeline-chart { display: flex; align-items: flex-end; gap: 3px; height: 160px; padding: .5rem 0 0; border-bottom: 1px solid var(--hairline); }
.timeline-chart .bar-pair { flex: 1; display: flex; align-items: flex-end; gap: 1px; height: 100%; min-width: 6px; }
.timeline-chart .bar { flex: 1; border-radius: 2px 2px 0 0; min-height: 1px; }
.timeline-chart .bar.receipt { background: var(--slate-blue); }
.timeline-chart .bar.disb { background: var(--independent-red); }
.timeline-labels { display: flex; gap: 3px; font-size: .62rem; color: var(--ink-soft); margin-top: .3rem; }
.timeline-labels span { flex: 1; text-align: center; min-width: 6px; }

/* ---- U.S. state choropleth ---- */
.us-map-wrap { text-align: left; max-width: 720px; margin: 0 auto; }
.us-map { display: block; width: 100%; height: auto; }
.us-state { stroke: var(--shell-white); stroke-width: 1; transition: filter .1s ease; }
.us-state:hover { filter: brightness(0.88); }
.us-state-home { stroke: var(--harbor-black); stroke-width: 1.5; }
.us-map-legend {
  display: flex; align-items: center; gap: .25rem; max-width: 720px; margin: .6rem auto 0;
  font-family: var(--sans); font-size: .68rem; color: var(--ink-soft);
}
.us-map-swatch { width: 18px; height: 10px; border: 1px solid var(--hairline); }
.us-map-legend-label:first-child { margin-right: .3rem; }
.us-map-legend-label:last-child { margin-left: .3rem; }
.us-map-detail {
  text-align: center; font-family: var(--sans); font-weight: 600; font-size: .88rem;
  color: var(--harbor-black); min-height: 1.4em; margin: .6rem 0 0;
}
.us-state:focus-visible { outline: 2px solid var(--harbor-black); outline-offset: 1px; }

/* ---- two-col layout ---- */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.6rem; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

.callout {
  background: var(--paper); border-left: 3px solid var(--independent-red); border-radius: 0 var(--radius) var(--radius) 0;
  padding: .8rem 1rem; font-size: .86rem;
}
.callout.blue { border-left-color: var(--slate-blue); }

.pill-tabs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.pill-tabs button {
  font-family: var(--sans); font-size: .78rem; font-weight: 600; padding: .35rem .75rem; border-radius: 999px;
  border: 1px solid var(--hairline); background: #fff; color: var(--harbor-black); cursor: pointer;
  min-height: 40px;
}
.pill-tabs button.active { background: var(--independent-red); border-color: var(--independent-red); color: #fff; }

.empty-state, .loading-state {
  text-align: center; padding: 2.2rem 1rem; color: var(--ink-soft); font-size: .88rem; font-family: var(--sans);
}

/* Long-form methodology prose reads better left-aligned within a readable
   measure than centered like the rest of the page's short editorial text
   (the panel's own h2/intro paragraph stay centered, matching every other
   section's heading style -- only the long dt/dd definitions flip). */
.methodology dl { text-align: left; margin: 1.2rem 0 0; max-width: 48rem; margin-inline: auto; }
.methodology dt { font-family: var(--serif); font-weight: 700; margin-top: 1rem; }
.methodology dd {
  margin: .15rem 0 0; color: var(--ink-soft); font-size: .9rem;
}
.methodology dd + dt { margin-top: 1.1rem; }

/* Collapsed by default; the summary re-uses the panel-head look so it reads
   the same whether open or closed. */
.methodology details { text-align: center; }
.methodology summary {
  cursor: pointer; list-style: none; display: block; padding: .2rem 0 .6rem;
  border-radius: var(--radius);
}
.methodology summary::-webkit-details-marker { display: none; }
.methodology summary::after {
  content: "Show the full methodology ▾"; display: inline-block; margin-top: .5rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600; color: var(--slate-blue);
}
.methodology details[open] summary::after { content: "Hide the full methodology ▴"; }
.methodology summary:hover::after,
.methodology summary:focus-visible::after { text-decoration: underline; }
.methodology summary:focus-visible { outline: 2px solid var(--independent-red); outline-offset: 3px; }
.methodology summary h2, .methodology summary p.panel-note { pointer-events: none; }

footer.sitefoot {
  padding: 1.6rem var(--pad) 3rem; font-family: var(--sans); font-size: .76rem; color: var(--ink-soft); text-align: center;
}

.skip-link { position: absolute; left: -999px; top: .5rem; z-index: 100; background: var(--harbor-black); color: #fff; padding: .5rem .8rem; border-radius: 4px; font-family: var(--sans); }
.skip-link:focus { left: var(--pad); }

.pagination { display: flex; align-items: center; gap: .6rem; margin-top: .8rem; font-size: .8rem; font-family: var(--sans); }
.pagination .btn { padding: .3rem .6rem; min-height: 40px; }
.pagination .btn:disabled { opacity: .4; cursor: default; background: var(--harbor-black); }

.hidden { display: none !important; }

@media (max-width: 560px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  table { min-width: 560px; }
  .hbar-row { grid-template-columns: 100px 1fr auto; }
}

/* ---- candidate comparison table -> stacked cards below tablet width ----
   The 15-column table is unreadable shrunk, so it's restructured into one
   labeled card per candidate instead of just scrolling a miniature table.
   Headers stay in the DOM (sr-only) so assistive tech and print still see
   real <table> semantics; td::before supplies the visible label. */
@media (max-width: 767px) {
  #compare-table.card-table { min-width: 0; }
  #compare-table.card-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  #compare-table.card-table, #compare-table.card-table tbody, #compare-table.card-table tr, #compare-table.card-table td {
    display: block; width: 100%;
  }
  #compare-table.card-table tr {
    border: 1px solid var(--hairline); border-radius: var(--radius); margin-bottom: .8rem; padding: .6rem .8rem; background: var(--paper);
  }
  #compare-table.card-table td {
    display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; border-top: 1px solid var(--hairline);
    white-space: normal; text-align: right;
  }
  #compare-table.card-table td:first-child { border-top: 0; font-family: var(--serif); font-weight: 700; font-size: 1rem; justify-content: flex-start; }
  #compare-table.card-table td::before { content: attr(data-label); color: var(--ink-soft); font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; text-align: left; }
  #compare-table.card-table td:first-child::before { content: none; }
  #compare.panel .table-scroll { max-height: none; overflow-x: hidden; }
}
