/* ThePetAdvisor — "Weekend Atlas" design contract, locked September 2026.
   Royal purple / gold / midnight-blue ombré. Mobile-first. No circle motifs
   (max border-radius 8px anywhere; never border-radius:50%). No emojis. */

:root {
  --midnight: #101B3C;
  --midnight-2: #1A2650;
  --purple: #5E2B97;
  --purple-deep: #3E1C66;
  --gold: #C9A227;
  --gold-light: #E8C766;
  --paper: #FAF8F1;
  --card: #FFFFFF;
  --ink: #1B2340;
  --ink-soft: #4A5478;
  --line: #E4DFD2;
  --ok: #2E7D4F;
  --warn: #B07A1E;
  --hero-ombre: linear-gradient(135deg, #101B3C 0%, #2A1B5E 45%, #5E2B97 100%);
  --divider-ombre: linear-gradient(90deg, #5E2B97, #C9A227);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, .fraunces {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  line-height: 1.2;
}

a { color: var(--purple); }
a:hover { color: var(--purple-deep); }

/* ---------- Header ---------- */
.site-header {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 60%, var(--purple-deep) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--paper);
}
.brand img { width: 34px; height: 34px; display: block; }
.brand .wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  color: var(--paper);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.footer-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0.15rem 0 0.6rem;
}
@media (max-width: 560px) {
  .brand-tagline { display: none; }
  .site-header-inner { padding: 0.6rem 0.75rem; gap: 0.6rem; }
  .brand img { width: 28px; height: 28px; }
  .brand .wordmark { font-size: 1.02rem; }
  .brand { gap: 0.5rem; }
  .site-nav { gap: 0.65rem; }
  .site-nav a { font-size: 0.85rem; white-space: nowrap; }
  .site-nav a[href="/account/"] { padding: 0.5rem 0.75rem; min-height: 40px; }
  /* On phones the menu drops from a fixed spot under the header so it can
     never open half off-screen, no matter where the button sits. */
  .acct-menu {
    position: fixed;
    top: 64px;
    right: 0.75rem;
    left: auto;
    max-width: calc(100vw - 1.5rem);
  }
}
/* Backstop: no page-level horizontal scroll — a too-wide element gets clipped
   instead of shrink-to-fitting the whole page on iOS. `clip` (not hidden)
   keeps position:sticky working. */
html, body { overflow-x: clip; }
.site-nav { display: flex; gap: 1.25rem; align-items: center; }
.site-nav a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.95rem;
}
.site-nav a:hover { color: #fff; }

/* ---------- header account dropdown ---------- */
.acct-wrap { position: relative; }
.acct-btn {
  background: var(--gold);
  border: 0;
  color: var(--midnight);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
}
.acct-btn:hover { background: var(--gold-light); color: var(--midnight); }
.acct-btn .chip { font-size: 0.7rem; padding: 0.05rem 0.45rem; }
/* signed-out Log in link: same gold button as the signed-in Account button */
.site-nav a[href="/account/"] {
  background: var(--gold);
  color: var(--midnight);
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-nav a[href="/account/"]:hover { background: var(--gold-light); color: var(--midnight); }
.acct-caret { font-size: 0.75rem; }
.acct-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(20, 16, 60, 0.22);
  padding: 0.4rem;
  z-index: 300;
}
.acct-menu a,
.acct-menu button[data-acct-signout] {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.9rem;
  min-height: 44px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.acct-menu a:hover,
.acct-menu button[data-acct-signout]:hover { background: #F4F1E6; color: var(--ink); }
.acct-menu button[data-acct-signout] { border-top: 1px solid var(--line); border-radius: 0 0 7px 7px; color: var(--ink-soft); }
.acct-menu a.acct-upgrade { font-weight: 700; color: var(--plum, #4A1D5E); background: #FBF6E3; }
.acct-menu a.acct-upgrade:hover { background: #F6EDC9; color: var(--plum, #4A1D5E); }

/* ---------- account sub-page navigation ---------- */
.acct-subnav {
  display: flex;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.acct-subnav a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 0.5rem 0.25rem; }
.acct-subnav a:hover { color: var(--ink); }
.acct-subnav a[aria-current="page"] { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- account hub link cards ---------- */
.acct-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.acct-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: var(--ink);
}
.acct-card:hover { border-color: var(--gold); }
.acct-card h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.acct-card p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero {
  background: var(--hero-ombre);
  color: var(--paper);
  padding: 3rem 1.25rem 2.75rem;
}
.hero-inner { max-width: 1080px; margin: 0 auto; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}
.hero h1 {
  color: var(--paper);
  font-size: 2.25rem;
  margin: 0 0 0.75rem;
  max-width: 22ch;
}
.show-heart {
  background: none; border: 0; padding: 0 0 0 0.6rem; cursor: pointer;
  font-size: 0.8em; line-height: 1; vertical-align: baseline;
  color: rgba(255, 255, 255, 0.55);
}
.show-heart:hover { color: #fff; }
.show-heart.on { color: var(--gold); }
.show-heart:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.show-heart:disabled { cursor: default; opacity: 0.7; }
.hero .subhead {
  color: #EDE6F5;
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 0 0 0.75rem;
}
.hero .lede {
  color: #CFC3E0;
  font-size: 0.95rem;
  max-width: 62ch;
  margin: 0 0 1.5rem;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--midnight);
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
}
.btn:hover { background: var(--gold-light); color: var(--midnight); }
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--ink);
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
}
.btn-ghost:hover { background: rgba(201, 162, 39, 0.12); color: var(--ink); }
/* On dark heroes the ghost button keeps light text. */
.hero .btn-ghost {
  border-color: var(--gold-light);
  color: var(--paper);
}
.hero .btn-ghost:hover { background: rgba(232, 199, 102, 0.12); color: #fff; }

/* ---------- Tabs ---------- */
.tabs {
  position: sticky;
  top: var(--tabs-stick-top, 130px);
  z-index: 80;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tabs-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  padding: 0 1.25rem;
}
.tab {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.85rem 0.9rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.tab:hover { color: var(--purple); }
.tab .n {
  font-family: "Fraunces", Georgia, serif;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ---------- Sections ---------- */
main { display: block; }
.section { padding: 2.5rem 1.25rem; }
.section:nth-of-type(odd) { background: var(--paper); }
.section:nth-of-type(even) { background: #F3EFE3; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.section-head .num {
  font-family: "Fraunces", Georgia, serif;
  color: var(--gold);
  font-size: 1.1rem;
}
.section-head h2 { margin: 0; font-size: 1.75rem; }
.section-head .rule {
  flex: 1;
  height: 4px;
  background: var(--divider-ombre);
  align-self: center;
  min-width: 2rem;
}
.section h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.section h3:first-of-type { margin-top: 0; }
.section p.lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 70ch; }

/* ---------- Fact grid ---------- */
.fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.fact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.fact .k {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0 0 0.35rem;
}
.fact .v { font-size: 1rem; margin: 0; }
.fact .v strong { color: var(--ink); }

/* ---------- Chips & badge rows ---------- */
.chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  white-space: nowrap;
}
.chip.ok { background: #E3F0E8; color: var(--ok); border: 1px solid #BFDCCB; }
.chip.pending { background: #F8EEDD; color: var(--warn); border: 1px solid #E4CFA1; }
.chip.closed { background: #ECE8DD; color: #6B6353; border: 1px solid #D9D2BF; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }

/* ---------- Feature tile quick links (under every tile) ---------- */
.tile-links { margin: 0.15rem 0 1.75rem; padding: 0 0.25rem; }
.tile-why { font-size: 0.95rem; color: var(--ink-soft); margin: 0 0 0.55rem; max-width: 62ch; }
.tile-why strong { color: var(--purple); }
.tile-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 0.75rem; align-items: center; margin: 0; font-size: 0.92rem; font-weight: 600; }
.tile-nav a { color: var(--purple); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.tile-nav a:hover { color: var(--purple-deep); border-bottom-color: var(--purple-deep); }
.tile-nav .sep { color: var(--gold); font-weight: 400; }
.tile-res { display: inline-flex; flex-direction: column; line-height: 1.25; }
.tile-res small { font-size: 0.72rem; font-weight: 400; color: var(--ink-soft); }

.feature-list { display: grid; gap: 1.25rem; margin: 1rem 0 1.75rem; }
.feature-show {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 1.25rem;
}
@media (min-width: 720px) {
  .feature-show { grid-template-columns: 172px 1fr; gap: 1.5rem; padding: 1.5rem; }
  .feature-show .date-cal { align-self: start; }
  .feature-date { border-right: 1px solid var(--line); padding-right: 1.5rem; }
}
.feature-date strong { display: block; font-size: 1.2rem; line-height: 1.3; }
.feature-date span { display: block; margin-top: 0.3rem; font-size: 0.88rem; color: var(--ink-soft); }
.feature-body h3 { margin: 0 0 0.4rem; font-size: 1.35rem; }
.feature-body h3 a { color: inherit; text-decoration: none; }
.feature-body h3 a:hover { color: var(--purple); }
.feature-body .badge-row { margin-bottom: 0.65rem; }
.feature-body .sell { margin: 0 0 0.75rem; max-width: 68ch; }
.feature-body .sell strong { color: var(--purple); }
.feature-body .venue { margin: 0 0 0.6rem; font-size: 0.95rem; color: var(--ink-soft); }
.feature-body .venue strong { color: var(--ink); }
.feature-body .entry-open { margin: 0 0 0.6rem; }
.feature-body .enter-row { margin: 0 0 0.6rem; }
.feature-body .tile-nav { margin-top: 0.8rem; }
.tile-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 0.35rem;
}

/* ---------- Calendar peek date badge (feature tiles) ---------- */
.date-cal {
  display: inline-flex;
  flex-direction: column;
  min-width: 5rem;
  margin: 0 0 0.85rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 3px 4px 0 rgba(16, 27, 60, 0.10);
  transform: rotate(-2deg);
}
.cal-mon {
  background: var(--midnight);
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
}
.cal-days {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.15;
  color: var(--ink);
  padding: 0.3rem 0.6rem 0.15rem;
}
.cal-dow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 0.6rem 0.55rem;
}

/* ---------- Show cards ---------- */
.show-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.show-card:hover { border-left-color: var(--gold); }
.show-card .date {
  font-family: "Fraunces", Georgia, serif;
  color: var(--purple);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}
.show-card h3 { margin: 0 0 0.5rem; font-size: 1.3rem; }
.show-card p { margin: 0.35rem 0; color: var(--ink-soft); }
.show-card dl { margin: 0.5rem 0 0; display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1rem; }
.show-card dt { font-weight: 600; font-size: 0.9rem; }
.show-card dd { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: 1rem 0; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 560px;
}
table.data thead th {
  background: var(--midnight);
  color: var(--paper);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  text-align: left;
  padding: 0.7rem 1rem;
}
table.data tbody td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data tbody tr:nth-child(even) { background: rgba(94, 43, 151, 0.045); }
table.data tbody tr:hover { background: rgba(201, 162, 39, 0.10); }

/* ---------- Hotel cards ---------- */
.hotel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.hotel-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.hotel-card h3 { margin: 0 0 0.35rem; font-size: 1.2rem; }
.hotel-card .rate { color: var(--gold); font-weight: 700; margin: 0 0 0.5rem; font-size: 1rem; }
.hotel-card .rate .suffix { color: var(--ink-soft); font-weight: 400; font-size: 0.85rem; }
.hotel-card p { margin: 0.3rem 0; font-size: 0.92rem; color: var(--ink-soft); }
.hotel-card .pet { font-weight: 600; color: var(--ink); }
.hotel-card .phone { margin-top: 0.5rem; }

/* ---------- Callouts ---------- */
.callout {
  border-radius: 8px;
  padding: 1.1rem 1.35rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.callout.tip { background: #EFE7F8; border-left: 4px solid var(--purple); }
.callout.warn { background: #FBF3E2; border-left: 4px solid var(--warn); }
.callout h4 { margin: 0 0 0.5rem; font-size: 1rem; }
.callout ul { margin: 0.4rem 0 0.2rem; padding-left: 1.25rem; }
.callout li { margin-bottom: 0.3rem; }
.callout p { margin: 0.4rem 0; }

/* ---------- Sources ---------- */
.source-list { font-size: 0.9rem; color: var(--ink-soft); list-style: none; padding: 0; }
.source-list li { margin-bottom: 0.6rem; padding-left: 0; }
.src-tag {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  background: var(--midnight);
  color: var(--gold-light);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--midnight);
  color: #C9CFE6;
  padding: 2.5rem 1.25rem 1.25rem;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.footer-cols h4 { color: var(--gold-light); margin: 0 0 0.6rem; font-size: 1rem; }
.footer-cols p { font-size: 0.9rem; margin: 0; max-width: 42ch; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 0.35rem; }
.footer-cols a { color: #C9CFE6; text-decoration: none; font-size: 0.9rem; }
.footer-cols a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(232, 199, 102, 0.25);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #9AA1BE;
}
.footer-bottom p { margin: 0.25rem 0; }

/* ---------- Lists ---------- */
ul.plain, ol.plain { padding-left: 1.25rem; }
ul.plain li, ol.plain li { margin-bottom: 0.4rem; }
dl.kv { display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 1rem; margin: 1rem 0; }
dl.kv dt { font-weight: 600; }
dl.kv dd { margin: 0; color: var(--ink-soft); }

.divider-bar { height: 4px; background: var(--divider-ombre); }

/* ---------- Breed finder ---------- */
.finder {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.finder label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
.finder .finder-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.finder input[type="search"] {
  flex: 1 1 220px;
  font-size: 1rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}
.finder input[type="search"]:focus { outline: 2px solid var(--purple); outline-offset: 1px; }
.finder .legend { font-size: 0.88rem; color: var(--ink-soft); margin: 0.9rem 0 0; }
.finder .legend strong { color: var(--ink); }
.finder-results { margin-top: 1rem; }
.finder-results .count { font-weight: 600; margin-bottom: 0.75rem; }
.finder-results .none { color: var(--ink-soft); }
.finder-results .note { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.75rem; }

/* ---------- Wide screens ---------- */
@media (min-width: 640px) {
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .hotel-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 3rem; }
  .footer-cols { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Supplemental: home / shows / about pages ---------- */

/* Show cards used as links */
a.show-card { display: block; text-decoration: none; color: inherit; }
a.show-card:hover { border-left-color: var(--gold); }
.show-card .facts-line { font-size: 0.92rem; color: var(--ink-soft); margin: 0.5rem 0 0.9rem; }
.show-card .facts-line strong { color: var(--ink); }
.show-card .cta { font-weight: 700; color: var(--purple); }
a.show-card:hover .cta { color: var(--gold); }
.show-card .region {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.35rem;
}

/* Numbered how-it-works steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.3rem 1.25rem;
}
.step .num {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.step h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* Interior page titles */
.page-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.page-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 70ch;
  margin: 0 0 1.5rem;
}

/* Prose blocks */
.prose h2 { font-size: 1.5rem; margin: 1.8rem 0 0.6rem; }
.prose p { margin: 0.6rem 0; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--purple); font-weight: 600; }
.prose a:hover { color: var(--gold); }

/* Warning callout alias (amber tint) */
.callout.warning { background: #FBF3E2; border-left: 4px solid var(--warn); }

@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .page-title { font-size: 2.4rem; }
}

/* ---------- Homepage Atlas hero (terrier mark) ---------- */
.hero-split .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.hero-mark {
  order: -1;
  max-width: 240px;
}
.hero-mark img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-copy { max-width: 640px; }
@media (min-width: 760px) {
  .hero-split .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .hero-mark { order: 0; max-width: 300px; flex: 0 0 300px; }
}

/* ---------- Edition status cards ---------- */
.edition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.edition-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.edition-card.pending-ed { border-top-color: var(--warn); }
.edition-card .ed-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0 0 0.3rem;
}
.edition-card h3 { margin: 0 0 0.4rem; font-size: 1.25rem; }
.edition-card p { margin: 0.35rem 0; color: var(--ink-soft); font-size: 0.95rem; }
.edition-card .ed-cta { margin-top: 0.75rem; }
@media (min-width: 640px) {
  .edition-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .edition-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- "Click here to enter" rows ---------- */
.enter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 1rem 0 0.25rem;
}
.enter-row .btn { font-size: 0.95rem; }
.enter-note { font-size: 0.85rem; color: var(--ink-soft); margin: 0.4rem 0 0; }
.show-card .enter-row { margin-top: 0.9rem; }

/* ---------- Specialty club list ---------- */
.club-list {
  columns: 1;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.93rem;
}
.club-list li {
  margin-bottom: 0.35rem;
  padding-left: 1.1rem;
  position: relative;
  break-inside: avoid;
}
.club-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 2px;
}
@media (min-width: 640px) {
  .club-list { columns: 2; column-gap: 2rem; }
}

/* ---------- Account, forms, newsletter, my-actions (added Sep 2026) ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.input {
  display: block; width: 100%;
  font: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px; padding: 0.6rem 0.75rem;
}
.input:focus { outline: 2px solid var(--purple); outline-offset: 1px; border-color: var(--purple); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
.form-note { font-size: 0.92rem; margin: 0.75rem 0 0; }
.form-note.ok { color: var(--gold-light); font-weight: 600; }
.form-note.error { color: #E08080; font-weight: 600; }
.section .form-note.ok { color: #6B4E12; }
.section .form-note.error { color: #A93226; }

.news-block { margin-top: 1.5rem; }
.news-block p { font-size: 0.9rem; color: #C9C2D6; }
.news-form { display: flex; gap: 0.5rem; margin-top: 0.6rem; }
.news-form .input { flex: 1; min-width: 0; }
.news-form .btn { padding: 0.6rem 1rem; white-space: nowrap; border: 0; cursor: pointer; font: inherit; font-weight: 600; }

.my-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; align-items: center; }
.btn-act {
  display: inline-block; font: inherit; font-weight: 600; font-size: 0.9rem;
  padding: 0.5rem 0.95rem; border-radius: 4px; cursor: pointer;
  border: 1px solid transparent; text-decoration: none;
}
.btn-act.is-save { background: var(--purple); color: #fff; }
.btn-act.is-save:hover:not([disabled]) { background: var(--purple-deep); }
.btn-act.is-plan { background: transparent; border-color: var(--purple); color: var(--purple); }
.btn-act.is-plan:hover:not([disabled]) { background: #EFE7F8; }
.btn-act.is-cal { background: var(--gold); color: var(--midnight); }
.btn-act.is-cal:hover:not([disabled]) { background: var(--gold-light); }
.btn-act.is-remove { background: transparent; border-color: var(--line); color: var(--ink-soft); font-size: 0.85rem; padding: 0.35rem 0.7rem; }
.btn-act.is-remove:hover:not([disabled]) { border-color: #A93226; color: #A93226; }
.btn-act.is-watch { background: transparent; border-color: var(--gold); color: var(--midnight); }
.btn-act.is-watch:hover:not([disabled]) { background: rgba(232, 199, 102, 0.15); }
.btn-act.is-watch.done { border-color: var(--purple); color: var(--purple); }
.watch-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin: 0.5rem 0 1rem; }
.btn-act[disabled] { opacity: 0.55; cursor: default; }
.act-note { width: 100%; font-size: 0.9rem; color: var(--ink-soft); margin: 0.25rem 0 0; }
.act-note a { color: var(--purple); font-weight: 600; }

.auth-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; max-width: 860px; }
@media (min-width: 720px) { .auth-grid { grid-template-columns: 1fr 1fr; } }
.auth-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 8px; padding: 1.5rem;
}
.auth-card h3 { margin-top: 0; }
.auth-card .btn { border: 0; cursor: pointer; font: inherit; }
.dash-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 1rem; justify-content: space-between; }
.item-list { display: grid; gap: 0.75rem; margin-top: 1rem; }
.item-row {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 8px; padding: 0.8rem 1rem;
}
.item-main { flex: 1; min-width: 0; }
.item-label { margin: 0; font-weight: 600; }
.item-sub { margin: 0.15rem 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.empty-note { color: var(--ink-soft); font-size: 0.95rem; }
.dash-actions { margin-top: 1rem; }
.dash-actions .btn { border: 0; cursor: pointer; font: inherit; margin-right: 0.5rem; }

/* ---------- Expandable judge tiles ---------- */
.judge-tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0.75rem 0;
}
.judge-tile summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  font-size: 1.02rem;
}
.judge-tile summary::-webkit-details-marker { display: none; }
.judge-tile summary::after {
  content: "+";
  font-weight: 700;
  color: var(--purple);
  margin-left: auto;
}
.judge-tile[open] summary::after { content: "\2013"; }
.jt-hint { font-size: 0.85rem; color: var(--ink-soft); }
.judge-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1rem 1.2rem 1.2rem;
  border-top: 1px solid var(--line);
}
.judge-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--purple);
}
.judge-col dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.75rem;
  margin: 0;
  font-size: 0.9rem;
}
.judge-col dt { font-weight: 600; }
.judge-col dd { margin: 0; color: var(--ink-soft); }
.judge-col p { font-size: 0.9rem; color: var(--ink-soft); margin: 0.25rem 0; }
@media (max-width: 760px) {
  .judge-cols { grid-template-columns: 1fr; }
}

/* ---------- Slim sticky site search (every page, under the hero) ---------- */
.search-mini {
  position: sticky;
  top: var(--search-stick-top, 60px);
  z-index: 90;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--purple-deep) 70%, var(--purple) 100%);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  padding: 0.6rem 0;
}
.search-mini form[data-tpa-search] {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.search-mini input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.55rem 0.9rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.search-mini input[type="search"]:focus {
  outline: none;
  border-color: var(--gold);
}
.search-mini button.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  white-space: nowrap;
}
.search-mini .quiet-links { margin: 0.5rem 0 0; }
/* Keep an open results panel from taking over the viewport while stuck */
.search-mini [data-tpa-results] .sr-panel,
.search-mini [data-tpa-results] .sr-list {
  max-height: 55vh;
  overflow-y: auto;
}
.quiet-links {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: rgba(250, 248, 241, 0.72);
}
.quiet-links a { color: var(--gold-light); }
.quiet-links a:hover { color: #fff; }
[data-tpa-results] { margin-top: 1rem; }
[data-tpa-results]:empty { margin-top: 0; }
.sr-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.sr-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: baseline;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: var(--ink);
}
.sr-link:hover { border-left-color: var(--purple); }
.sr-date { color: var(--purple); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.sr-name { font-family: "Fraunces", Georgia, "Times New Roman", serif; font-weight: 600; }
.sr-where { color: var(--ink-soft); font-size: 0.9rem; white-space: nowrap; }
.sr-panel {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  color: var(--ink);
}
.sr-panel p { margin: 0.4rem 0; }
@media (max-width: 560px) {
  .sr-link { grid-template-columns: 1fr; gap: 0.2rem; }
  .sr-where, .sr-date { white-space: normal; }
}

/* Cookie notice — dismissible, no dark patterns, never blocks the page */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: #101B3C;
  color: #FBF3E2;
  border-top: 2px solid #C9A227;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  font-size: 0.9rem;
}
.cookie-bar p { margin: 0; max-width: 60rem; }
.cookie-bar a { color: #C9A227; text-decoration: underline; }
.cookie-bar a:hover { color: #E7C65A; }
.btn-cookie-ok {
  flex: 0 0 auto;
  background: #C9A227;
  color: #101B3C;
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 1.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.btn-cookie-ok:hover { background: #E7C65A; }

/* ---------- Sticky bottom email capture bar ---------- */
.email-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding: 0.7rem 3.2rem 0.7rem 1.25rem;
  background: #141B3D;
  color: #FBF3E2;
  border-top: 2px solid #C9A227;
  box-shadow: 0 -4px 18px rgba(10, 12, 30, 0.35);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.email-bar.show { transform: translateY(0); }
.email-bar-text { margin: 0; font-size: 0.92rem; }
.email-bar-text strong { color: #E7C65A; }
.email-bar-form { display: flex; gap: 0.5rem; margin: 0; align-items: center; }
.email-bar-form .input { width: 16rem; padding: 0.5rem 0.7rem; }
.email-bar-form .btn { padding: 0.5rem 1.1rem; border: 0; cursor: pointer; font-size: 0.92rem; font-weight: 700; }
.email-bar .form-note { margin: 0; font-size: 0.85rem; flex-basis: 100%; text-align: center; }
.email-bar-close {
  position: absolute;
  top: 0.35rem; right: 0.7rem;
  background: none; border: 0; color: #C9A227;
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0.2rem 0.4rem;
}
.email-bar-close:hover { color: #E7C65A; }
@media (max-width: 640px) {
  .email-bar { gap: 0.55rem; padding: 0.65rem 2.8rem 0.65rem 0.9rem; }
  .email-bar-text { font-size: 0.85rem; flex-basis: 100%; text-align: center; }
  .email-bar-form { width: 100%; }
  .email-bar-form .input { flex: 1 1 auto; width: auto; }
}
@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .btn-cookie-ok { align-self: flex-start; }
}

/* Specialty spotlight (Ingra rule: the specialty is the feature of the cluster) */
#specialty-spotlight .section-inner{border-left:3px solid var(--gold);background:rgba(201,162,39,.06);padding:1.1rem 1.25rem;border-radius:0 .5rem .5rem 0;}
#specialty-spotlight .section-head h2{color:var(--gold-light);}
.cluster .highlight-line{border-left:3px solid var(--gold);padding:.35rem .7rem;margin:.55rem 0;background:rgba(201,162,39,.06);}

/* ---------- This-weekend carousel (homepage) ---------- */
.weekend-strip {
  background: var(--midnight);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.25rem 1.25rem 1.4rem;
}
.weekend-strip[hidden] { display: none; }
.weekend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.weekend-head h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0;
}
.weekend-dates {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 0.4rem;
}
.weekend-nav { display: flex; gap: 0.5rem; }
.car-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.car-btn:hover { background: var(--gold); color: var(--midnight); }
.car-btn:disabled { opacity: 0.35; cursor: default; }
.car-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.car-row::-webkit-scrollbar { height: 6px; }
.car-row::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.wk-tile {
  scroll-snap-align: start;
  flex: 0 0 15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.8rem 0.9rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.wk-tile:hover { transform: translateY(-2px); border-color: var(--gold); }
.wk-date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.wk-name {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.wk-region { font-size: 0.82rem; color: #DCD4F2; }
.wk-status { font-size: 0.75rem; font-weight: 700; color: var(--gold-light); }

/* ---------- Show officials callout ---------- */
.officials-callout {
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.10);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 0 0 2rem;
}
.officials-callout p { margin: 0; }

/* ---------- Today's Ring Card ---------- */
.fav-star { color: var(--gold); }
.pick-tag { color: var(--purple); }
.ringcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.rc-days { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.rc-day {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: inherit;
}
.rc-day-w { display: block; font-weight: 700; }
.rc-day-s { display: block; font-size: 0.82rem; color: var(--ink-soft); }
.rc-day.is-active { border: 2px solid var(--gold); background: rgba(201, 162, 39, 0.10); padding: calc(0.5rem - 1px) calc(0.9rem - 1px); }
.rc-add label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
.rc-add-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.rc-combo { position: relative; flex: 1 1 220px; display: flex; }
.rc-combo input[type="text"] {
  width: 100%;
  font-size: 1rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}
.rc-combo input[type="text"]:focus { outline: 2px solid var(--purple); outline-offset: 1px; }
.rc-suggest {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 60;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 20, 40, 0.14);
  max-height: 17rem; overflow-y: auto; padding: 0.3rem; margin: 0;
}
.rc-suggest[hidden] { display: none; }
.rc-opt {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem;
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 0.5rem 0.65rem; border-radius: 6px; font-size: 0.95rem; color: var(--ink);
}
.rc-opt .cnt { font-size: 0.8rem; color: var(--ink-soft); white-space: nowrap; }
.rc-opt .cnt.zero { color: #b33737; font-style: italic; }
.rc-count.zero { color: #b33737; font-style: italic; }
.rc-toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 16px); background: #2a2140; color: #fff; padding: 0.7rem 1.15rem; border-radius: 10px; font-size: 0.92rem; line-height: 1.4; opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; z-index: 300; max-width: min(92vw, 480px); text-align: center; box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.rc-toast.show { opacity: 1; transform: translate(-50%, 0); }
.section[id], .ringcard-sheet { scroll-margin-top: 130px; }
.rc-opt:hover { background: rgba(94, 43, 151, 0.07); }
.rc-opt.is-active { background: rgba(94, 43, 151, 0.12); outline: 2px solid var(--purple); outline-offset: -2px; }
.rc-count {
  display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--purple); background: rgba(94, 43, 151, 0.09);
  border: 1px solid rgba(94, 43, 151, 0.25); border-radius: 4px;
  padding: 0.2rem 0.55rem; margin-left: 0.45rem; vertical-align: 1px; white-space: nowrap;
}
.rc-hint { font-size: 0.88rem; color: var(--ink-soft); margin: 0.75rem 0 0; }

.rc-alert {
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}
.rc-alert.is-red { background: #FDECEA; border: 2px solid #B3261E; color: #5F130E; }
.rc-alert.is-amber { background: #FFF6E0; border: 2px solid #B7791F; color: #5C3D05; }

.ringcard-sheet {
  background: #fffdf8;
  color: #1c1a24;
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.25rem 0;
  box-shadow: 0 6px 24px rgba(20, 10, 40, 0.18);
}
.rc-sheet-head { border-bottom: 3px solid var(--gold); padding-bottom: 0.9rem; margin-bottom: 1rem; }
.rc-k {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b5b2a;
  font-weight: 700;
}
.rc-sheet-head h3 { margin: 0 0 0.35rem; font-size: 1.5rem; color: #1c1a24; }
.rc-venue { margin: 0; font-size: 0.9rem; color: #4a4458; }
.rc-venue a { color: #5E2B97; }
.rc-empty { color: #4a4458; margin: 0.5rem 0; }
.rc-quick { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0 0.25rem; }

.rc-row {
  border: 1px solid #d9d2c2;
  border-left: 6px solid #5E2B97;
  border-radius: 8px;
  background: #ffffff;
  padding: 1rem 1.1rem;
  margin: 0 0 0.9rem;
}
.rc-row.is-conflict { border-left-color: #B3261E; border-top: 2px solid #B3261E; border-right: 2px solid #B3261E; border-bottom: 2px solid #B3261E; }
.rc-row.is-tight { border-left-color: #B7791F; }
.rc-row-top { display: flex; justify-content: space-between; gap: 0.75rem; align-items: flex-start; }
.rc-row-top strong { font-size: 1.12rem; color: #1c1a24; }
.rc-meta { margin-top: 0.25rem; font-size: 0.95rem; color: #3c3748; }
.rc-detail { font-size: 0.85rem; color: #6a6378; margin-top: 0.2rem; }
.rc-tbd { color: #8a6d1a; font-style: italic; }
.rc-prov { color: #6a6378; }
.rc-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  margin-left: 0.35rem;
  vertical-align: middle;
  white-space: nowrap;
}
.rc-badge.fav { background: #F7E9BC; color: #6b5b2a; border: 1px solid #C9A227; }
.rc-badge.pick { background: #E7DEF7; color: #3E1C66; border: 1px solid #5E2B97; }
.rc-remove {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #8a8496;
  cursor: pointer;
  padding: 0 0.25rem;
}
.rc-remove:hover { color: #B3261E; }
.rc-est { margin: 0.6rem 0 0.2rem; font-size: 0.95rem; color: #1c1a24; }
.rc-est strong { color: #3E1C66; }
.rc-fields { margin: 0.5rem 0; }
.rc-num { font-size: 0.9rem; color: #3c3748; }
.rc-num input {
  width: 4.5rem;
  font-size: 1rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid #c9c2b2;
  border-radius: 4px;
  color: #1c1a24;
  margin-left: 0.4rem;
}
.rc-note { display: block; margin: 0.5rem 0 0; }
.rc-note > span { display: block; font-size: 0.85rem; font-weight: 600; color: #3c3748; margin-bottom: 0.3rem; }
.rc-note > span em { font-weight: 400; color: #6a6378; }
.rc-note textarea {
  width: 100%;
  font-size: 0.95rem;
  font-family: inherit;
  padding: 0.5rem 0.65rem;
  border: 1px solid #c9c2b2;
  border-radius: 4px;
  color: #1c1a24;
  resize: vertical;
  box-sizing: border-box;
}
.rc-note-print { font-size: 0.9rem; color: #3c3748; margin: 0.5rem 0 0; }
.rc-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 0.5rem; }
.btn-danger { border-color: #B3261E !important; color: #B3261E !important; }
.btn-danger:hover { background: rgba(179, 38, 30, 0.08) !important; }
.rc-foot { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; }

@media (min-width: 640px) {
  .rc-fields { display: flex; gap: 1.5rem; align-items: center; }
}

@media print {
  .site-header, .tabs, .site-footer, .officials-callout, .no-print { display: none !important; }
  main > :not(#ring-card) { display: none !important; }
  body { background: #fff; }
  .section { padding: 0; }
  .ringcard-sheet { box-shadow: none; margin: 0; }
  .rc-row { break-inside: avoid; }
}

/* ---------- Day pages ---------- */
.tab.is-active { border-bottom-color: var(--gold); color: var(--purple); font-weight: 600; }
.day-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-top: 1.25rem; }
.day-card { display: block; background: #fffdf8; border: 1px solid var(--line); border-radius: 8px; padding: 1.1rem 1.2rem; text-decoration: none; color: var(--ink); }
.day-card:hover { border-color: var(--purple); }
.day-card .dc-day { font-size: 0.82rem; color: var(--ink-soft); margin: 0 0 0.35rem; }
.day-card .dc-day .n { font-family: "Fraunces", Georgia, serif; color: var(--gold); margin-right: 0.35rem; }
.day-card h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }
.day-card .dc-venue { font-size: 0.9rem; margin: 0 0 0.5rem; }
.day-card .dc-meta { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 0.75rem; }
.day-card .dc-link { font-weight: 600; color: var(--purple); font-size: 0.92rem; }
.day-nav { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.day-nav-link { display: block; border: 1px solid var(--line); border-radius: 8px; padding: 0.8rem 1rem; text-decoration: none; color: var(--ink); flex: 1 1 220px; background: #fffdf8; }
.day-nav-link:hover { border-color: var(--purple); }
.day-nav-link.next { text-align: right; }
.dnl-k { display: block; font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.dnl-t { font-weight: 600; color: var(--purple); }
/* Lodging two-column split */
.lodging-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1rem 0 1.5rem; }
.lodging-col h4 { margin: 0 0 0.25rem; }
.lodging-sub { margin: 0 0 0.75rem; font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 700px) { .lodging-cols { grid-template-columns: 1fr; gap: 0.75rem; } .lodging-sub { font-size: 0.85rem; } .hotel-card { padding: 0.45rem 0.6rem; min-width: 0; } .hotel-card .hotel-name { font-size: 0.85rem; } .hotel-contact { font-size: 0.78rem; } .lodging-col { min-width: 0; } .hotel-tags { min-width: 0; } .chip { white-space: normal; } }
/* Glanceable info cards */
.info-cards { display: grid; gap: 0.6rem; margin: 1rem 0 1.5rem; }
@media (min-width: 701px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
  #plan-your-visit ul.plain { columns: 2; column-gap: 1.5rem; }
  #plan-your-visit ul.plain li { break-inside: avoid; }
}
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 0.7rem 0.9rem; }
.info-card h4 { margin: 0 0 0.3rem; font-size: 0.95rem; }
.info-card p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
/* Compact hotel cards */
.hotel-cards { display: grid; gap: 0.45rem; align-content: start; }
.hotel-card { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 0.5rem 0.75rem; }
.hotel-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.hotel-card .hotel-name { font-weight: 600; font-size: 0.92rem; color: var(--ink); text-decoration: none; }
.hotel-card .hotel-name:hover { color: var(--purple); }
.hotel-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.chip.dist { background: #F2F0E6; border: 1px solid var(--line); color: var(--ink-soft); }
.hotel-contact { margin: 0.15rem 0 0; font-size: 0.82rem; color: var(--ink-soft); }
/* Venue guide (shared per physical venue) */
.venue-guide .map-embed iframe { border-radius: 8px; display: block; }
.venue-guide .map-links { margin-top: 0.4rem; font-size: 0.85rem; }

/* ---------- response threads (request follow-ups) ---------- */
.thread { margin-top: 0.75rem; border-top: 1px dashed var(--line); padding-top: 0.75rem; }
.thread-msg { margin: 0 0 0.75rem; }
.thread-msg blockquote {
  margin: 0.25rem 0 0; padding: 0.5rem 0.75rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
}
.thread-msg.mine blockquote { border-left: 3px solid var(--gold); }
.thread-msg .meta { font-size: 0.8rem; color: var(--ink-soft); }

/* ---- Marquee ad slot (premium placement, home page). To run a different
      advertiser here, swap everything inside .ad-marquee-card; keep the .ad-tag label. ---- */
.ad-marquee { padding: 1.25rem 0 0; }
.ad-marquee .section-inner { max-width: 1100px; }
.ad-tag {
  display: block; font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; margin-bottom: 0.5rem;
}
.ad-marquee-card {
  display: flex; align-items: center; gap: 1.5rem;
  background: linear-gradient(120deg, #101010 0%, #1d1d1d 60%, #242424 100%);
  border: 1px solid #3a3a3a; border-top: 3px solid #E3AE29;
  border-radius: 12px; padding: 1.4rem 1.75rem;
  color: #f5f5f5; text-decoration: none;
}
.ad-marquee-card:hover { border-top-color: #f2c14e; }
.ad-marquee-logo { flex: none; width: 104px; height: 104px; }
.ad-marquee-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ad-marquee-copy { flex: 1; min-width: 0; }
.ad-marquee-copy h2 {
  font-family: Fraunces, serif; font-weight: 600; font-size: 1.45rem;
  color: #fff; margin: 0 0 0.4rem; line-height: 1.2;
}
.ad-marquee-copy h2 .gold { color: #E3AE29; }
.ad-marquee-copy p { margin: 0; font-size: 0.95rem; color: #cfcfcf; line-height: 1.5; }
.ad-marquee-cta {
  flex: none; background: #E3AE29; color: #141414;
  font-weight: 700; font-size: 0.95rem; padding: 0.7rem 1.5rem;
  border-radius: 8px; white-space: nowrap;
}
.ad-marquee-card:hover .ad-marquee-cta { background: #f2c14e; }
@media (max-width: 700px) {
  .ad-marquee-card { flex-direction: column; text-align: center; gap: 1rem; padding: 1.5rem 1.25rem; }
  .ad-marquee-logo { width: 84px; height: 84px; }
  .ad-marquee-cta { width: 100%; }
}

/* Club promo bar (home page): content centered, dismiss pinned at right edge */
.club-promo { background: var(--midnight); border-top: 1px solid rgba(201,162,39,.35); position: relative; }
.club-promo-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; padding-top: .8rem; padding-bottom: .8rem; text-align: center; }
.club-promo-text { color: #fff; margin: 0; font-size: .95rem; }
.club-promo-text strong { color: var(--gold-light); }
.club-promo .btn { white-space: nowrap; text-decoration: none; }
.club-promo-close { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); background: none; border: 0; color: rgba(255,255,255,.55); font-size: 1.4rem; line-height: 1; cursor: pointer; padding: .25rem .5rem; }
.club-promo-close:hover { color: #fff; }
.club-promo[hidden] { display: none; }
@media (max-width: 640px) {
  .club-promo-inner { flex-wrap: wrap; }
  .club-promo-text { flex: 1 1 100%; }
  .club-promo .btn { flex: 1; text-align: center; }
}

/* Closing-soon strip: compact variant of the weekend carousel */
.closing-strip { padding: 0.85rem 1.25rem 1rem; }
.closing-strip .weekend-head { margin-bottom: 0.55rem; }
.closing-strip .weekend-head h2 { font-size: 1rem; }
.closing-strip .car-btn { width: 1.75rem; height: 1.75rem; font-size: 0.9rem; border-radius: 6px; }
.closing-strip .car-row { gap: 0.6rem; }
.closing-strip .wk-tile { flex: 0 0 11rem; padding: 0.55rem 0.7rem; gap: 0.18rem; }
.closing-strip .wk-date { font-size: 0.7rem; }
.closing-strip .wk-name { font-size: 0.88rem; }
.closing-strip .wk-region { font-size: 0.72rem; }

/* ---------- Account dashboard shell (redesigned Sep 2026) ----------
   Conventional SaaS account layout: compact header, sidebar nav, content.
   /account/ dashboard tabs are CSS-only (radio inputs + labels) — no JS.
   Overview stat counts are CSS counters over the JS-rendered .item-row
   elements. The overview panel sits LAST in the DOM so the counters resolve
   (counters only see increments that precede them in document order);
   inactive panels are visibility-hidden (boxes still generated, so the
   counts stay live across tabs). */

.acct-shell,
#dashboard {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}
.acct-shell,
.acct-tabs {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.acct-tabs {
  counter-reset: c-fav c-plan c-sched c-judge c-breed c-notes c-watch;
}

/* compact page header */
.kicker-sm {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 0.35rem;
}
.kicker-sm a { color: inherit; text-decoration: none; }
.kicker-sm a:hover { text-decoration: underline; }
.acct-pagehead { margin: 0 0 1.5rem; }
.acct-pagehead h1 { font-size: 1.8rem; margin: 0 0 0.4rem; }
.acct-sub { color: var(--ink-soft); margin: 0; max-width: 62ch; }

/* dashboard header */
.acct-dashhead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.acct-dashhead h1 { font-size: 1.8rem; margin: 0; }
.acct-dashhead .btn-act { margin-top: 0.35rem; flex: none; }

/* sidebar */
.acct-side {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  min-width: 0;
}
.acct-nav-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 700;
  margin: 0 0 0.35rem;
  padding: 0 0.75rem;
}
.acct-tnav, .acct-snav { display: flex; flex-direction: column; gap: 2px; }
.acct-tlink, .acct-snav a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border-left: 3px solid transparent;
}
.acct-tlink:hover, .acct-snav a:hover { background: #F1ECDD; color: var(--ink); }
.acct-snav a[aria-current="page"] {
  background: #fff;
  color: var(--purple-deep);
  border-left-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--line);
}

/* CSS-only tabs */
.dtab-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.acct-main { position: relative; min-width: 0; }
.dash-panel {
  visibility: hidden;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
#dtab-overview:checked ~ .acct-main #panel-overview,
#dtab-saved:checked ~ .acct-main #panel-saved,
#dtab-plan:checked ~ .acct-main #panel-plan,
#dtab-sched:checked ~ .acct-main #panel-sched,
#dtab-follow:checked ~ .acct-main #panel-follow,
#dtab-notes:checked ~ .acct-main #panel-notes,
#dtab-watch:checked ~ .acct-main #panel-watch {
  visibility: visible;
  position: static;
  height: auto;
  overflow: visible;
  pointer-events: auto;
}
#dtab-overview:checked ~ .acct-side label[for="dtab-overview"],
#dtab-saved:checked ~ .acct-side label[for="dtab-saved"],
#dtab-plan:checked ~ .acct-side label[for="dtab-plan"],
#dtab-sched:checked ~ .acct-side label[for="dtab-sched"],
#dtab-follow:checked ~ .acct-side label[for="dtab-follow"],
#dtab-notes:checked ~ .acct-side label[for="dtab-notes"],
#dtab-watch:checked ~ .acct-side label[for="dtab-watch"] {
  background: #fff;
  color: var(--purple-deep);
  border-left-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--line);
}
#dtab-overview:focus-visible ~ .acct-side label[for="dtab-overview"],
#dtab-saved:focus-visible ~ .acct-side label[for="dtab-saved"],
#dtab-plan:focus-visible ~ .acct-side label[for="dtab-plan"],
#dtab-sched:focus-visible ~ .acct-side label[for="dtab-sched"],
#dtab-follow:focus-visible ~ .acct-side label[for="dtab-follow"],
#dtab-notes:focus-visible ~ .acct-side label[for="dtab-notes"],
#dtab-watch:focus-visible ~ .acct-side label[for="dtab-watch"] {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* overview stat cards (counts are live CSS counters) */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}
.stat-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  cursor: pointer;
}
.stat-card:hover { border-color: var(--gold); box-shadow: 0 1px 4px rgba(27, 35, 64, 0.08); }
.stat-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.1;
}
.stat-num-fav::after { content: counter(c-fav); }
.stat-num-plan::after { content: counter(c-plan); }
.stat-num-sched::after { content: counter(c-sched); }
.stat-num-judge::after { content: counter(c-judge); }
.stat-num-breed::after { content: counter(c-breed); }
.stat-num-notes::after { content: counter(c-notes); }
.stat-num-watch::after { content: counter(c-watch); }
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 0.15rem;
}
#fav-list .item-row { counter-increment: c-fav; }
#plan-list .item-row { counter-increment: c-plan; }
#sched-list .item-row { counter-increment: c-sched; }
#judge-follow-list .item-row { counter-increment: c-judge; }
#breed-follow-list .item-row { counter-increment: c-breed; }
#judge-notes-list .item-row { counter-increment: c-notes; }
#watch-list .item-row { counter-increment: c-watch; }

/* panels */
.panel-h2 { font-size: 1.35rem; margin: 0 0 0.25rem; }
.panel-block + .panel-block { margin-top: 2rem; }

/* signed-out auth page */
.auth-layout { max-width: 960px; margin: 0 auto; padding: 2.5rem 1.25rem 3.5rem; }
.auth-intro { text-align: center; max-width: 620px; margin: 0 auto 2rem; }
.auth-intro h1 { font-size: 2rem; margin: 0 0 0.6rem; }
.auth-intro p { color: var(--ink-soft); margin: 0; }
.auth-layout .auth-grid { margin: 0 auto; }

/* replacements for removed inline styles */
.card-gap { margin-top: 1rem; }
.note-tight { margin-top: -0.25rem; }
.input-sm { max-width: 12rem; }
.btn-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.8rem; }
.form-fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 1rem; margin: 1rem 0; }
.form-legend { padding: 0 0.4rem; font-weight: 700; }
.form-fieldset .note { margin-top: 0; }

/* lead inbox (moved from the inline <style> on /account/requests/) */
.inbox-row { border: 1px solid var(--line); border-radius: 8px; padding: 0.9rem 1rem; margin-bottom: 0.75rem; background: #fff; }
.inbox-row.unread { border-left: 4px solid var(--gold); background: #fffdf6; }
.inbox-row .meta { font-size: 0.85rem; color: var(--ink-soft); margin: 0.25rem 0 0.5rem; }
.inbox-row blockquote { margin: 0.5rem 0; padding-left: 0.75rem; border-left: 3px solid var(--line); white-space: pre-wrap; }
.dog-tag { display: inline-block; background: #F2F0E6; border: 1px solid var(--line); border-radius: 8px; padding: 0.15rem 0.7rem; margin: 0.1rem 0.25rem 0.1rem 0; font-size: 0.9rem; }
.row-actions { margin-top: 0.6rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .acct-shell, .acct-tabs { grid-template-columns: 1fr; gap: 1.25rem; }
  .acct-shell, #dashboard { padding: 1.5rem 1rem 2.5rem; }
  .acct-side { position: static; gap: 1rem; }
  .acct-tnav, .acct-snav { flex-direction: row; overflow-x: auto; padding-bottom: 0.25rem; }
  .acct-tlink, .acct-snav a {
    white-space: nowrap;
    border-left: 0;
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
  }
  .acct-nav-label { padding: 0; }
  .acct-snav a[aria-current="page"] { border-bottom-color: var(--gold); }
  #dtab-overview:checked ~ .acct-side label[for="dtab-overview"],
  #dtab-saved:checked ~ .acct-side label[for="dtab-saved"],
  #dtab-plan:checked ~ .acct-side label[for="dtab-plan"],
  #dtab-sched:checked ~ .acct-side label[for="dtab-sched"],
  #dtab-follow:checked ~ .acct-side label[for="dtab-follow"],
  #dtab-notes:checked ~ .acct-side label[for="dtab-notes"],
  #dtab-watch:checked ~ .acct-side label[for="dtab-watch"] {
    border-bottom-color: var(--gold);
  }
  .acct-pagehead h1, .acct-dashhead h1 { font-size: 1.5rem; }
  .auth-layout { padding: 2rem 1rem 3rem; }
  .auth-intro h1 { font-size: 1.7rem; }
}

/* Assistants page (moved from CSP-blocked inline styles) */
.inbox-row { border:1px solid var(--line); border-radius:8px; padding:0.9rem 1rem; margin-bottom:0.75rem; background:#fff; }
.inbox-row .meta { font-size:0.85rem; color:var(--ink-soft); margin:0.25rem 0 0.5rem; }
.row-actions { margin-top:0.6rem; display:flex; gap:0.5rem; flex-wrap:wrap; }
.status-badge { display:inline-block; font-size:0.8rem; font-weight:600; border-radius:8px; padding:0.15rem 0.7rem; margin-left:0.5rem; vertical-align:middle; }
.status-invited { background:#fdf3e0; color:#8a5a00; border:1px solid #e8c97a; }
.status-active { background:#e9f6ec; color:#1d6b2f; border:1px solid #9ed3ab; }
.status-expired, .status-revoked { background:#f0f0f0; color:#666; border:1px solid #d5d5d5; }
.invite-link-box { display:flex; gap:0.5rem; align-items:stretch; margin:0.75rem 0; flex-wrap:wrap; }
.invite-link-box input { flex:1 1 16rem; }
.btn-sm { font-size:0.85rem; padding:0.4rem 0.9rem; }
.btn-danger { background:#fff; color:#a13226; border:1px solid #d8a7a0; }
.btn-danger:hover { background:#fdf0ee; }
blockquote.note-text { margin:0.5rem 0; padding-left:0.75rem; border-left:3px solid var(--line); white-space:pre-wrap; }
.acct-section-gap { margin-top:2rem; }
.acct-list-gap { margin-top:1rem; }

/* Guided requests page sub-headings */
.panel-h3 { font-size: 1.1rem; margin: 1.25rem 0 0.25rem; }
