/* =========================================================
   Alvis Auto Repair — shared.css
   Du Quoin, IL | Mechanical · Exhaust · Brakes
   Brand palette: red, black, and white — pulled directly
   from the shop's own sign and logo.
   ========================================================= */

:root {
  /* ---- Brand colors ---- */
  --ink: #1a1714;
  --ink-soft: #2c2722;
  --red: #c8202b;
  --red-dark: #9c141e;
  --red-light: #e2545e;
  --white: #ffffff;
  --grey: #5a5a5a;
  --grey-light: #969696;
  --grey-faint: #f4f3f2;
  --line: rgba(26, 23, 20, 0.12);

  /* ---- Type ---- */
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --font-accent: "Caveat", cursive;

  /* ---- Layout ---- */
  --max-width: 1180px;
  --radius: 6px;
  --shadow-card: 0 10px 24px rgba(26, 23, 20, 0.10);
  --shadow-soft: 0 4px 12px rgba(26, 23, 20, 0.08);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   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;
    scroll-behavior: auto !important;
  }
}

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

img { max-width: 100%; display: block; height: auto; }
a { color: var(--red-dark); text-decoration: underline; text-decoration-thickness: 1px; }
a:hover { color: var(--red); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red-dark);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(1.7rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; letter-spacing: 0.01em; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--grey-faint); }
.section--ink {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
}
.section--ink h2, .section--ink h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--red-dark);
  margin-bottom: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--red);
  display: inline-block;
}
.section--ink .eyebrow { color: var(--red-light); }

.lede {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 640px;
}
.section--ink .lede { color: rgba(255,255,255,0.78); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Screen-reader only utility */
.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;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  font-weight: 700;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background-color 0.15s var(--ease), color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); }

.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-white:hover { background: var(--grey-faint); color: var(--ink); }

.btn-block { width: 100%; justify-content: center; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.6em;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.top-strip {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.top-strip a { color: rgba(255,255,255,0.78); text-decoration: none; }
.top-strip a:hover { color: var(--red-light); text-decoration: underline; }
.top-strip__hours { color: var(--grey-light); }

.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 500;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-text {
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--ink);
  font-size: 1.3rem;
}
.brand-text--footer { color: var(--white); font-size: 1.05rem; }
.brand img {
  height: 56px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav ul {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--red);
  color: var(--red-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-cta-mobile { display: none; }
.header-phone {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { color: var(--red); width: 20px; height: 20px; }
.header-phone:hover { color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"]::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  .top-strip { display: none; }
  .main-nav { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 4px solid var(--red);
    box-shadow: var(--shadow-card);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 24px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .main-nav a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .header-cta { flex-direction: row; align-items: center; gap: 10px; flex-shrink: 0; }
  .nav-toggle { display: block; order: -1; }
  .site-header .container { position: relative; flex-wrap: nowrap; gap: 10px; }
  .header-cta:has(.header-cta-mobile) .header-phone { display: none; }
  .header-phone-text { display: none; }
  .header-phone { padding: 8px; border: 2px solid var(--ink); border-radius: 50%; }
  .header-phone svg { width: 18px; height: 18px; margin: 0; }
  .header-cta-desktop { display: none; }
  .header-cta-mobile { display: inline-flex; padding: 10px 18px; font-size: 0.85rem; }
  .brand { flex-direction: column; align-items: flex-start; gap: 0; }
  .brand img { height: 42px; }
  .brand .brand-text {
    font-size: 0.65rem;
    margin-top: 1px;
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-tag { font-size: 1.3rem; max-width: 100%; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(20,17,15,0.95) 0%, rgba(20,17,15,0.88) 50%, rgba(20,17,15,0.72) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 96px;
  max-width: 640px;
}
.hero .eyebrow { color: var(--red-light); text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
.hero h1 { color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.65); }
.hero-tag {
  font-family: var(--font-accent);
  font-size: 1.7rem;
  color: var(--red-light);
  display: inline-block;
  max-width: 100%;
  transform: rotate(-2deg);
  margin: 6px 0 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.hero p.lede { color: var(--white); text-shadow: 0 1px 6px rgba(0,0,0,0.6); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats div { min-width: 120px; }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red-light);
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

/* Page header for non-home pages */
.page-header {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 48px;
  border-bottom: 6px solid var(--red);
}
.page-header .eyebrow { color: var(--red-light); }
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.78); max-width: 620px; margin-bottom: 0; }

.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.78); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red-light); text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--grey-light); }
.breadcrumbs li[aria-current] { color: var(--red-light); }

/* =========================================================
   Service tiles
   ========================================================= */
.bay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.bay {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.bay:hover, .bay:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26,23,20,0.16);
}

.bay-icon {
  width: 40px;
  height: 40px;
  background: var(--grey-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.bay-icon svg { width: 20px; height: 20px; color: var(--red); }

.bay-body { padding: 24px 22px 26px; }
.bay-body h3 { margin-bottom: 8px; }
.bay-body p { color: var(--grey); margin-bottom: 0; font-size: 0.95rem; }

/* =========================================================
   Trust / partners strip
   ========================================================= */
.partners-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin-top: 30px;
}
.partner-logo {
  display: inline-block;
  text-decoration: none;
}
.partner-logo img {
  height: 64px;
  width: auto;
  transition: transform 0.2s var(--ease);
}
.partner-logo:hover img,
.partner-logo:focus-visible img {
  transform: scale(1.05);
}
.partner-logo--btb img {
  height: 72px;
  border-radius: 4px;
}
.partner-logo--jasper img {
  height: 84px;
}

/* =========================================================
   Why-us / feature list
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.feature {
  display: flex;
  gap: 16px;
}
.feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grey-faint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--red-dark); }
.feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature p { color: var(--grey); margin-bottom: 0; font-size: 0.95rem; }

/* =========================================================
   Reviews / CTA band
   ========================================================= */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 52px 0;
}
.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 0; }
.cta-band .btn-row { margin-top: 0; }

/* =========================================================
   FAQ (native details/summary — accessible, no JS needed)
   ========================================================= */
.faq-list {
  max-width: 760px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 18px 36px 18px 4px;
  position: relative;
  text-transform: none;
  letter-spacing: 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  font-size: 1.6rem;
  color: var(--red);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  padding: 0 4px 20px;
  color: var(--grey);
  max-width: 620px;
}

/* =========================================================
   Forms
   ========================================================= */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form-field .req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red-dark);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.82rem; color: var(--grey); margin-top: -4px; }

/* Honeypot field — hidden from sighted + AT users, present for bots */
.botcheck-wrap { position: absolute; left: -9999px; }

/* =========================================================
   Info cards (hours, address, map)
   ========================================================= */
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) {
  .info-grid { grid-template-columns: 1fr; }
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.info-card + .info-card { margin-top: 18px; }
.info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3 svg { width: 20px; height: 20px; color: var(--red); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table th { text-align: left; font-weight: 400; color: var(--grey); }
.hours-table td { text-align: right; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table th, .hours-table td { padding: 7px 0; }
.hours-table tr.is-today { font-weight: 700; color: var(--red-dark); }

.map-frame {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  display: block;
}

/* =========================================================
   About page bits
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow-card); }

.stat-strip {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red-dark);
}
.stat-strip span {
  font-size: 0.85rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 50px; width: auto; }
.footer-brand p { color: var(--grey-light); max-width: 320px; font-size: 0.92rem; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.15s var(--ease);
}
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 18px; height: 18px; }

/* Masked PNG icon (e.g. Yelp) — recolors via currentColor just like
   the inline SVG icons next to it, so it always matches at rest/hover */
.icon-mask {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-image: var(--mask-src);
  mask-image: var(--mask-src);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon-yelp { --mask-src: url('images/yelp-icon.png'); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; font-size: 0.93rem; }
.footer-col a { color: rgba(255,255,255,0.78); text-decoration: none; }
.footer-col a:hover { color: var(--red-light); text-decoration: underline; }
.footer-col address { font-style: normal; }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px 0 28px;
  font-size: 0.85rem;
  color: var(--grey-light);
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}
.footer-bottom-left p { margin: 0; }
.footer-bottom-left a { color: var(--grey-light); text-decoration: none; }
.footer-bottom-left a:hover { color: var(--red-light); text-decoration: underline; }

/* Cloudflare badge — opacity + scale only, per spec */
.footer-cloudflare {
  display: inline-flex;
  align-items: center;
  justify-self: end;
}
.footer-cloudflare img {
  height: 28px;
  width: auto;
  opacity: 0.65;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.footer-cloudflare:hover img,
.footer-cloudflare:focus-visible img {
  opacity: 1;
  transform: scale(1.05);
}

/* =========================================================
   404 page
   ========================================================= */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-page .container { text-align: center; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.2em;
}
.error-page p.lede { margin-left: auto; margin-right: auto; }

/* =========================================================
   Misc
   ========================================================= */
.divider-red {
  height: 6px;
  background: var(--red);
}
.legal-content h2 { margin-top: 1.6em; }
.legal-content p, .legal-content li { color: var(--grey); }
.legal-content { max-width: 760px; }
.updated-note { color: var(--grey); font-size: 0.9rem; }
