/* ============================================================
   Striking Nurses
   A restrained solidarity site for Teamsters Local 332 nurses
   at Henry Ford Genesys Hospital, Grand Blanc, MI.
   ============================================================ */

:root {
  --blue: #004b87;
  --blue-deep: #07315f;
  --blue-ink: #071d34;
  --gold: #f2b51f;
  --gold-deep: #b07a10;
  --cream: #f4f0e7;
  --paper: #fffaf2;
  --paper-warm: #e9f0f6;
  --ink: #181716;
  --ink-soft: #34312d;
  --muted: #706960;
  --line: #d3dbe2;
  --line-dark: #29405a;

  --max: 1120px;
  --max-narrow: 820px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--blue);
  color: var(--paper);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: -9999px;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
}

/* Type */
.display {
  font-family: "Big Shoulders Display", "Public Sans", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.tape-thin {
  height: 3px;
  background: var(--gold);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 232, 0.97);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__row {
  max-width: var(--max);
  min-height: 74px;
  margin: 0 auto;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--gold);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__name,
.brand__sub {
  display: block;
  min-width: 0;
}

.brand__name {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.brand__sub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.nav a:hover {
  background: var(--paper-warm);
  color: var(--ink);
}

.nav a.is-active {
  background: var(--paper);
  color: var(--blue-deep);
  box-shadow: inset 0 0 0 1px var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

/* Buttons */
.cta,
.btn-ghost {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition-property: background-color, border-color, color, transform;
  transition-duration: 160ms;
  transition-timing-function: ease;
}

.cta {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--paper);
  padding: 12px 18px;
}

.cta:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

.cta--lg {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 16px;
}

.btn-ghost {
  border: 1px solid rgba(255, 250, 242, 0.45);
  background: transparent;
  color: var(--paper);
  padding: 12px 18px;
}

.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 250, 242, 0.1);
}

.btn-ghost--ink {
  border-color: var(--line-dark);
  color: var(--ink);
}

.btn-ghost--ink:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.cta__arrow {
  line-height: 1;
}

/* Layout */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.page--narrow {
  max-width: var(--max-narrow);
}

.section {
  padding: 78px 0;
}

.section--cream {
  background: var(--cream);
}

.section--ink {
  background: var(--blue-ink);
  color: var(--paper);
}

.section--red {
  background: var(--blue);
  color: var(--paper);
}

.section h2.display,
.section .h2 {
  max-width: 17ch;
  margin: 0 0 28px;
  font-size: 58px;
}

.section--ink h2.display,
.section--ink .h2 {
  color: var(--paper);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-family: "Public Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section--ink .section-label {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(242, 181, 31, 0.2), transparent 34rem),
    linear-gradient(135deg, var(--blue-ink) 0%, var(--blue-deep) 100%);
  color: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}

.hero__stripes {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 28px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: end;
}

.hero__inner > *,
.site-footer__inner > * {
  min-width: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero__eyebrow-dot,
.day-card__label-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  max-width: 11ch;
  margin: 0 0 24px;
  color: var(--paper);
  font-size: 90px;
}

.hero__title em {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-style: normal;
}

.hero__title .strike::after {
  display: none;
}

.hero__sub {
  max-width: 58ch;
  margin: 0 0 30px;
  color: #eee4d7;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.day-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.day-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.day-card__number {
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 112px;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.day-card__days {
  margin-top: 6px;
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.day-card__meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.hero--sub .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: var(--max-narrow);
  padding-top: 64px;
  padding-bottom: 66px;
  align-items: start;
}

.hero--sub .hero__title {
  max-width: 12ch;
  font-size: 76px;
}

/* Stat strip retained for pages that may still use it */
.stat-strip {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.stat-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat__num {
  color: var(--blue-deep);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  max-width: 220px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

/* Cards and grids */
.demands-grid,
.fact-grid,
.reps {
  display: grid;
  gap: 18px;
}

.demands-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.demand,
.fact,
.way,
.rep {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.demand {
  position: relative;
  padding: 28px 24px 24px;
}

.section--ink .demand {
  background: var(--paper);
  color: var(--ink);
}

.demand__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 28px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  border-bottom: 2px solid var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.demand__title {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.demand__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

/* Pull quote */
.pullquote {
  position: relative;
  margin: 42px 0 0;
  padding: 30px 0 30px 28px;
  border-left: 5px solid var(--gold);
  background: transparent;
  color: var(--ink);
}

.pullquote::before {
  content: "";
}

.pullquote__text {
  margin: 0 0 14px;
  max-width: 20ch;
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.pullquote__cite {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

/* Timeline */
.timeline {
  position: relative;
  margin: 30px 0 0;
  padding-left: 28px;
  list-style: none;
  border-left: 2px solid var(--line);
}

.t-event {
  position: relative;
  padding: 0 0 34px 22px;
}

.t-event:last-child {
  padding-bottom: 0;
}

.t-event::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -35px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--blue);
}

.t-event--ongoing::before {
  background: var(--gold);
}

.t-event__date {
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.t-event__title {
  margin: 0 0 7px;
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.t-event__body {
  max-width: 68ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

/* Facts */
.fact-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.fact {
  padding: 24px;
}

.fact__label {
  margin-bottom: 7px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.fact__value {
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.fact__note {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

/* Support page */
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-top: 14px;
  align-items: start;
  max-width: 820px;
}

.ways-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.way {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
}

.way__num {
  color: var(--blue-deep);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.way__title {
  margin: 0 0 7px;
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.way__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.way__cta {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 10px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.way__cta:hover {
  color: var(--ink);
  text-decoration-color: var(--gold);
}

.picket-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--blue-ink);
  color: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px;
}

.picket-card__title {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.picket-card__addr {
  color: #eee4d7;
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
}

.picket-card__when {
  color: var(--paper);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.picket-card__note {
  margin: 10px 0 0;
  color: #d9cec0;
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.reps {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.rep {
  padding: 20px;
}

.rep__role {
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.rep__name {
  margin: 0 0 5px;
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.rep__contact {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.rep__contact a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.rep__contact a:hover {
  color: var(--blue-deep);
  text-decoration-color: var(--gold);
}

/* Sources */
.sources {
  margin-top: 46px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sources h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.sources ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.sources a {
  max-width: 100%;
  min-height: 24px;
  display: inline-block;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.sources a:hover {
  color: var(--blue-deep);
  text-decoration-color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--blue-ink);
  color: #d9cec0;
  padding: 52px 28px 30px;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.6fr) minmax(220px, 0.8fr);
  gap: 36px;
}

.site-footer__title {
  margin: 0 0 12px;
  color: var(--paper);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.site-footer__body {
  max-width: 50ch;
  margin: 0;
  color: #d9cec0;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.site-footer h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  font-size: 14px;
}

.site-footer a {
  color: #eee4d7;
  text-decoration: none;
}

.site-footer__body a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-decoration-color: #5a5147;
  text-underline-offset: 4px;
}

.site-footer li a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer__legal {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-dark);
  color: #a7b2bc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .site-header__row {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 24px;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 16px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    justify-content: flex-start;
    padding: 12px 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a.is-active {
    box-shadow: none;
    background: transparent;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding: 64px 24px 70px;
  }

  .hero__title {
    max-width: 12ch;
    font-size: 68px;
  }

  .hero--sub .hero__title {
    font-size: 62px;
  }

  .day-card {
    max-width: 420px;
  }

  .section {
    padding: 62px 0;
  }

  .page {
    padding: 0 24px;
  }

  .section h2.display,
  .section .h2 {
    font-size: 46px;
  }

  .demands-grid,
  .support-grid,
  .fact-grid,
  .reps,
  .picket-card,
  .stat-strip__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand__sub {
    display: none;
  }

  .brand__name {
    font-size: 22px;
  }

  .hero__inner {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .hero__eyebrow {
    font-size: 13px;
  }

  .hero__title,
  .hero--sub .hero__title {
    font-size: 48px;
  }

  .hero__sub {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta,
  .btn-ghost {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .day-card {
    padding: 24px;
  }

  .day-card__number {
    font-size: 86px;
  }

  .section h2.display,
  .section .h2 {
    font-size: 38px;
  }

  .demand,
  .fact,
  .way,
  .rep,
  .sources {
    padding: 20px;
  }

  .way {
    grid-template-columns: minmax(0, 1fr);
  }

  .pullquote {
    padding-left: 22px;
  }

  .pullquote__text {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta,
  .btn-ghost,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero,
  .section {
    padding: 24px 0;
    background: #fff !important;
    color: #000 !important;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
