:root {
  --navy: #102a43;
  --navy-soft: #1b3a55;
  --ink: #263746;
  --muted: #667685;
  --orange: #f5a623;
  --orange-dark: #9e581d;
  --cyan: #00a9d6;
  --sage: #66745f;
  --sage-dark: #43533f;
  --cream: #f7f5ef;
  --sand: #ebe5d9;
  --white: #fffdf8;
  --line: #d6d9d7;
  --max: 1160px;
  --reading: 790px;
  --font: Inter, "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked,
body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6.4vw, 5.4rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 780;
}

h4 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 780;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1.25em;
}

::selection {
  color: var(--navy);
  background: var(--orange);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  text-decoration: none;
  font-weight: 750;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

/* Password screen */
.access-gate {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
}

.access-card {
  width: min(100%, 470px);
}

.access-card > img {
  width: min(300px, 78%);
  margin-bottom: 56px;
}

.access-label {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-card h2 {
  max-width: 430px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 7vw, 3rem);
}

.access-copy {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.access-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 750;
}

.access-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.access-row input,
.access-row button {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.access-row input {
  min-width: 0;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.access-row button {
  padding: 0 24px;
  border-color: var(--orange);
  border-radius: 6px;
  color: var(--navy);
  background: var(--orange);
  font-weight: 800;
  cursor: pointer;
}

.access-error {
  min-height: 28px;
  margin: 10px 0 0;
  color: #ffd29a;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: var(--navy);
}

.header-inner {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-inline: auto;
}

.brand {
  width: 220px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: 0.77rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:last-child {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 15px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 17px;
  height: 2px;
  background: currentColor;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle i::before {
  top: -6px;
}

.menu-toggle i::after {
  top: 6px;
}

/* Shared structure */
.section {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding-block: 112px;
}

.reading-column {
  width: min(100%, var(--reading));
  margin-inline: auto;
}

.overline {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.overline.dark {
  color: var(--orange-dark);
}

.lead {
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  font-weight: 620;
  line-height: 1.55;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  color: var(--navy);
  background: var(--orange);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.button:hover {
  background: #ffb638;
}

.text-link {
  color: var(--navy);
  text-underline-offset: 5px;
  font-weight: 750;
}

.text-link.light {
  color: var(--white);
}

.source-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.82rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Hero */
.hero {
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 455px);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
  margin-inline: auto;
  padding-block: 76px 88px;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  color: var(--white);
}

.hero h1 span {
  color: var(--orange);
}

.hero-candidate {
  width: fit-content;
  margin-bottom: 24px;
  padding-left: 15px;
  border-left: 4px solid var(--orange);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 740;
  line-height: 1.4;
}

.hero-copy > p:last-of-type {
  max-width: 610px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 26%;
  border-radius: 8px;
}

.hero-photo figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

/* Narrative sections */
.intro {
  padding-bottom: 88px;
}

.numbers {
  width: min(100%, 1040px);
  margin: 82px auto 0;
  padding-top: 50px;
  border-top: 2px solid var(--navy);
}

.numbers-heading {
  max-width: 760px;
}

.numbers-heading h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.numbers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(270px, 0.75fr);
  gap: clamp(48px, 7vw, 76px);
  margin-top: 54px;
}

.population-figure {
  min-width: 0;
  margin: 0;
}

.population-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.population-summary div {
  min-width: 0;
}

.population-summary span,
.population-summary small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.population-summary strong {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.population-figure h4 {
  margin: 30px 0 22px;
}

.population-chart {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: stretch;
}

.chart-y-axis {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  min-height: 0;
}

.chart-y-axis span {
  position: absolute;
  right: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
  transform: translateY(-50%);
}

.chart-y-axis span:nth-child(1) { top: 2.5%; }
.chart-y-axis span:nth-child(2) { top: 31%; }
.chart-y-axis span:nth-child(3) { top: 59.5%; }
.chart-y-axis span:nth-child(4) { top: 88%; }

.chart-plot {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  width: 100%;
  aspect-ratio: 620 / 244;
}

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

.chart-grid line {
  stroke: var(--line);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-area {
  fill: rgba(102, 116, 95, 0.11);
}

.chart-line {
  fill: none;
  stroke: var(--navy);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.chart-point {
  fill: var(--white);
  stroke: var(--navy);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.chart-point-end {
  fill: var(--orange);
  stroke: var(--orange-dark);
}

.chart-x-axis {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
}

.population-figure figcaption {
  margin: 19px 0 0 58px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.fact-list {
  margin: 0;
  border-top: 2px solid var(--navy);
}

.fact-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.79rem;
}

.fact-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-align: right;
}

.fact-list dd span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0;
}

.numbers-breakdown {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.numbers-breakdown h4 {
  margin-bottom: 15px;
  font-size: 1rem;
}

.segmented-bar {
  width: 100%;
  height: 12px;
  display: flex;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 999px;
  background: var(--sand);
}

.settlement-bar span:first-child { width: 33.5%; background: var(--navy); }
.settlement-bar span:last-child { width: 66.5%; background: var(--sage); }
.age-bar span:nth-child(1) { width: 17%; background: var(--orange-dark); }
.age-bar span:nth-child(2) { width: 65.8%; background: var(--navy); }
.age-bar span:nth-child(3) { width: 17.2%; background: var(--sage); }

.segmented-legend {
  margin: 0;
}

.segmented-legend div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.segmented-legend dt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.segmented-legend dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.swatch {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  display: inline-block;
  border-radius: 50%;
}

.swatch-navy { background: var(--navy); }
.swatch-sage { background: var(--sage); }
.swatch-orange { background: var(--orange-dark); }

.numbers-conclusion {
  max-width: var(--reading);
  margin: 54px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.numbers-conclusion h4 {
  margin-bottom: 10px;
}

.numbers-conclusion p {
  margin-bottom: 0;
}

.numbers > .source-note {
  max-width: var(--reading);
  margin: 26px auto 0;
}

.landscape-figure {
  width: min(100%, 1040px);
  margin: 74px auto 0;
}

.landscape-figure img {
  width: 100%;
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.candidate {
  width: 100%;
  padding-inline: 24px;
  background: var(--white);
}

/* Program */
.program-intro {
  margin-bottom: 72px;
}

.program-list {
  width: min(100%, 940px);
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.program-topic {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  padding-block: 54px;
  border-top: 1px solid var(--line);
}

.topic-number {
  margin: 2px 0 0;
  color: var(--orange-dark);
  font-size: 2rem;
  font-weight: 820;
  line-height: 1;
}

.program-topic h3 {
  margin-bottom: 22px;
}

.program-topic p:last-child {
  margin-bottom: 0;
}

.secondary-program {
  margin-top: 110px;
}

.secondary-program > h3 {
  margin-bottom: 34px;
}

.secondary-program article {
  padding: 28px 0 12px;
  border-top: 1px solid var(--line);
}

.secondary-program article:last-child {
  border-bottom: 1px solid var(--line);
}

.secondary-program article p {
  margin-bottom: 18px;
}

.first-days {
  width: min(100%, 940px);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  margin: 112px auto 0;
  padding: 58px 0 0;
  border-top: 2px solid var(--navy);
}

.first-days h3 {
  color: var(--navy);
}

.first-days ol {
  margin: 0;
  padding-left: 25px;
}

.first-days li {
  padding: 9px 0 13px 7px;
  border-bottom: 1px solid var(--line);
}

.first-days li::marker {
  color: var(--orange);
  font-weight: 800;
}

/* Team */
.team {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 96px);
  border-top: 1px solid var(--line);
}

.team-photo {
  margin: 0;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.team-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
}

/* Proposals */
.proposals {
  width: 100%;
  padding-inline: 24px;
  background: var(--sand);
}

.place-list {
  width: min(100%, 940px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 26px;
  margin: 58px auto 68px;
  padding: 25px 0;
  border-top: 1px solid rgba(16, 42, 67, 0.22);
  border-bottom: 1px solid rgba(16, 42, 67, 0.22);
  list-style: none;
}

.place-list li {
  padding: 7px 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 680;
}

.proposal-form {
  position: relative;
  width: min(100%, var(--reading));
  margin-inline: auto;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.form-row label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 780;
}

.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(16, 42, 67, 0.25);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.form-row select {
  min-height: 54px;
  padding: 0 16px;
}

.form-row textarea {
  min-height: 190px;
  resize: vertical;
  padding: 15px 16px 34px;
  line-height: 1.55;
}

.character-count {
  position: absolute;
  right: 13px;
  bottom: 9px;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  min-height: 30px;
  margin: 10px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--sage-dark);
}

.form-status.is-error {
  color: #9b3d30;
}

.proposal-form .button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.proposal-followup {
  width: min(100%, var(--reading));
  margin: 66px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(16, 42, 67, 0.22);
}

.proposal-followup h3 {
  font-size: 1.45rem;
}

/* Closing and footer */
.closing {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.closing > img {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: min(790px, 66vw);
  opacity: 0.12;
}

.closing-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding-block: 88px;
}

.closing h2 {
  max-width: 760px;
  color: var(--white);
}

.closing-inner > p:not(.overline) {
  max-width: 690px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #0b2237;
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 70px;
  margin-inline: auto;
  padding-block: 52px;
}

.footer-inner > img {
  width: 220px;
}

.footer-inner p {
  margin-bottom: 8px;
  font-size: 0.78rem;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 20px 24px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--navy);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 46px;
  }

  .numbers-layout {
    grid-template-columns: 1fr;
  }

  .numbers-context {
    width: min(100%, 760px);
  }

  .team {
    grid-template-columns: 1fr;
  }

  .team-photo {
    order: 2;
  }

  .team-copy {
    width: min(100%, var(--reading));
    margin-inline: auto;
  }

  .place-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
    line-height: 1.68;
  }

  .header-inner,
  .hero-inner,
  .section,
  .closing-inner,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 166px;
  }

  .section {
    padding-block: 78px;
  }

  .candidate,
  .proposals {
    width: 100%;
    padding-inline: 16px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 64px 72px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-photo {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .landscape-figure {
    margin-top: 48px;
  }

  .numbers {
    margin-top: 58px;
    padding-top: 38px;
  }

  .numbers-layout {
    gap: 50px;
    margin-top: 42px;
  }

  .population-chart {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
  }

  .population-figure figcaption {
    margin-left: 51px;
  }

  .landscape-figure img {
    aspect-ratio: 4 / 3;
  }

  .program-intro {
    margin-bottom: 48px;
  }

  .program-topic {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 40px;
  }

  .topic-number {
    font-size: 1.25rem;
  }

  .secondary-program {
    margin-top: 78px;
  }

  .first-days {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 78px;
    padding-top: 42px;
  }

  .team {
    gap: 42px;
  }

  .place-list {
    grid-template-columns: 1fr;
    margin-block: 44px 52px;
  }

  .place-list li {
    border-bottom: 1px solid rgba(16, 42, 67, 0.09);
  }

  .proposal-form .button {
    width: 100%;
  }

  .closing {
    min-height: 390px;
  }

  .closing > img {
    width: 130vw;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 430px) {
  .access-gate {
    padding: 22px;
  }

  .access-card > img {
    margin-bottom: 44px;
  }

  .access-row {
    grid-template-columns: 1fr;
  }

  .access-row button {
    width: 100%;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .population-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .segmented-legend div {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
