:root {
  --bg: #ffffff;
  --ink: #0B0B0B;
  --muted: #666666;
  --muted-foreground: #666666;
  --city: #2B2B2B;
  --border: #e5e5e5;
  --input: #e5e5e5;
  --panel: #f5f5f5;
  --card: #f5f5f5;
  --shadow: 0 18px 40px rgba(0,0,0,0.08);
  --accent: #f5d547;
  --primary: #0080ff;
  --primary-foreground: #ffffff;
  --link: #0080ff;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --max: 1280px;

  --titleFont: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --bodyFont: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  /* clip (not hidden) so position:sticky works in descendants */
  overflow-x: clip;
}
body {
  min-height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--bodyFont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Inner pages (404, this-week, about, etc.): fill viewport so footer sticks to bottom */
body.inner-layout {
  min-height: 100vh;
}
body.inner-layout .page {
  flex: 1;
}
.app-footer {
  margin-top: auto;
  padding: 48px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--panel);
  width: 100%;
  align-self: stretch;
}
/* Landing: fill viewport so footer sits at bottom; main grows, footer is full-width */
body.landing {
  min-height: 100vh;
}
body.landing .page {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

p { color: #0a0a0a; }

.layout-header {
  width: 100%;
  max-width: var(--max);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 12px;
  margin-bottom: 1rem;
}
.layout-header a { font-weight: 600; }
.layout-header nav { margin-top: 0.5rem; }
.layout-header nav a { margin-right: 1rem; }

.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
/* Homepage: nav sticks to top when scrolling past; match inner-page width (break out of .page padding) */
body.landing .app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  max-width: var(--max);
  box-sizing: border-box;
}
body.landing .app-nav::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background: var(--bg);
  z-index: -1;
}
.app-logo {
  font-family: var(--titleFont);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.app-logo:hover { text-decoration: none; }
.app-logo span { display: block; }
.app-logo-city {
  font-family: var(--bodyFont);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 2px;
  display: block;
}
.app-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.app-nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}
.app-nav-links a:hover { text-decoration: underline; }
.app-nav-cta,
.app-nav-cta:hover,
.app-nav-links .app-nav-cta:hover {
  text-decoration: none !important;
}
.app-nav-cta {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-foreground) !important;
  background: var(--primary);
  border-radius: var(--radius);
}
.app-nav-cta:hover { opacity: 0.9; }
.app-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}
.app-nav-toggle svg { width: 24px; height: 24px; }
@media (max-width: 768px) {
  .app-nav-toggle { display: block; }
  .app-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    gap: 0;
    display: none;
  }
  .app-nav-links.is-open { display: flex; }
  .app-nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .app-nav-links a:last-child { border-bottom: none; }
  .app-nav { position: relative; flex-wrap: wrap; }
}

.app-footer {
  margin-top: auto;
  padding: 48px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--panel);
  width: 100%;
}

.inner-layout .page {
  min-height: 0;
}

.app-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 48px;
}
.app-footer-col {
  text-align: center;
}
.app-footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.app-footer-col ul { margin: 0; padding: 0; list-style: none; }
.app-footer-col li { margin-bottom: 8px; }
.app-footer-col a {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}
.app-footer-col a:hover { color: var(--ink); }
.app-footer-copyright {
  margin: 32px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted-foreground);
}
@media (max-width: 768px) {
  .app-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .app-footer-inner { grid-template-columns: 1fr 1fr; }
}

.page {
  width: 100%;
  max-width: var(--max);
  min-height: 100vh;
  margin-inline: auto;
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
}

.container {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.masthead {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 24px;
}

.tcb-title {
  font-family: var(--titleFont);
  font-weight: 800;
  font-size: clamp(45px, 7vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.tcb-title span { display: block; }

.tcb-city {
  margin: 20px 0 0;
  font-family: var(--bodyFont);
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 45px);
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
}

.masthead-h1 {
  text-align: center;
  font-family: var(--bodyFont);
  font-size: clamp(1.08rem, 2.4vw, 1.28rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.value-prop {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 48rem;
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-foreground);
}
.value-prop p { margin: 0 0 0.25rem; }
.value-prop p:last-child { margin-bottom: 0; }

.signup-section {
  margin-top: 24px;
  width: 100%;
  max-width: 28rem;
}

.subscribe-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.email-wrap {
  width: 100%;
  position: relative;
}

.email-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  pointer-events: none;
}

.email-input {
  width: 100%;
  height: 56px;
  padding: 0 16px 0 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 120ms, box-shadow 120ms;
}
.email-input::placeholder { color: var(--muted-foreground); }
.email-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 128, 255, 0.2);
}

.btn-subscribe {
  height: 52px;
  padding: 0 22px;
  width: 100%;
  flex-shrink: 0;
  border: 0;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 150ms, opacity 120ms;
}
.btn-subscribe:hover {
  box-shadow: 0 2px 8px rgba(0, 128, 255, 0.35);
}
.btn-subscribe:disabled { opacity: 0.6; cursor: not-allowed; }

.categories-pills {
  margin-bottom: 20px;
}

.categories-prompt {
  margin: 0 0 14px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.categories-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 9999px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 150ms, background 150ms, transform 120ms;
  user-select: none;
}

.category-pill:hover {
  border-color: var(--muted);
  background: rgba(0, 0, 0, 0.02);
}

.category-pill:has(input:checked) {
  border-color: var(--primary);
  background: rgba(0, 128, 255, 0.08);
  color: var(--primary);
}

.category-pill:has(input:checked):hover {
  background: rgba(0, 128, 255, 0.12);
}

.category-pill:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.category-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

.subscribe-feedback {
  margin-top: 12px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.subscribe-feedback--error {
  background: rgba(220, 38, 38, 0.15);
  color: #b91c1c;
  font-size: 1.25rem;
}

.subscribe-feedback--error p {
  margin: 0;
}

.subscribe-feedback--success {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.subscribe-feedback--success .subscribe-success-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.subscribe-feedback--success .subscribe-success-detail {
  margin: 8px 0 0;
  font-size: 1rem;
}

.subscribe-feedback--success .microcopy {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted-foreground);
}

.microcopy {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--muted-foreground);
}
.microcopy + .microcopy { margin-top: 4px; }
.microcopy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.microcopy a:hover { color: var(--ink); }

.benefits {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: center;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
}

.benefit-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.benefit-text strong {
  font-weight: 600;
}

.issue-showcase {
  margin-top: 40px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 48rem;
}

.issue-showcase p {
  margin: 0 0 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.issue-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}

.issue-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  background: var(--card);
}
.issue-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.issue-card--center {
  width: 240px;
  max-width: 100%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
}
.issue-card--side {
  width: 208px;
  display: none;
}
/* On mobile/tablet portrait: show only the center newsletter preview card; side cards from 768px up */
@media (min-width: 768px) {
  .issue-card--side { display: block; }
}
.issue-card--left { transform: rotate(-3deg); }
.issue-card--right { transform: rotate(3deg); }
.issue-card--left:hover,
.issue-card--right:hover {
  transform: rotate(0) scale(1.05);
  transition: transform 200ms ease;
}

.issue-placeholder {
  aspect-ratio: 3 / 4;
  min-height: 200px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonials {
  margin-top: 48px;
  margin-bottom: 48px;
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonials h3 {
  margin: 0 0 32px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.quote-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.quote-grid .quote:nth-child(n + 5) {
  display: none;
}
@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .quote-grid .quote:nth-child(n + 5) {
    display: block;
  }
}

.quote {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 20px 14px;
}

.quote-icon {
  margin-bottom: 12px;
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.quote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.quote p p { margin: 0; }
.quote .quote-content {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.quote .quote-content p { margin: 0; }

.subscribe-section {
  width: 100%;
  padding: 64px 24px 80px;
  text-align: center;
}
.subscribe-section__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  box-sizing: border-box;
}
.subscribe-section__content {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.subscribe-section__heading {
  font-family: var(--titleFont);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
}
.subscribe-section--footer .subscribe-section__heading {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 12px;
}
.subscribe-section__subhead {
  text-align: center;
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--muted-foreground);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-section__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 480px) {
  .subscribe-section__ctas {
    flex-direction: row;
    justify-content: center;
  }
}
.subscribe-section__btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-foreground);
  background: var(--primary);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.subscribe-section__btn:hover {
  opacity: 0.9;
  color: var(--primary-foreground);
  text-decoration: none;
}
/* When CTA is inside .content-main, prose link color would make button text blue on blue */
.content-main .subscribe-section__btn,
.content-main .subscribe-section__btn:hover {
  color: var(--primary-foreground) !important;
}
.subscribe-section.subscribe-section--footer {
  padding-top: 64px;
  padding-bottom: 64px;
}
.subscribe-section.subscribe-section--mid-copy {
  padding-top: 32px;
  padding-bottom: 40px;
}
.subscribe-section--mid-copy .subscribe-section__heading {
  margin-top: 0;
  margin-bottom: 32px;
}
.content-main .subscribe-section--mid-copy .subscribe-section__btn:hover {
  text-decoration: none;
}

.city-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.footer-links a {
  color: var(--muted-foreground);
  transition: color 120ms;
}
.footer-links a:hover { color: var(--ink); }
.footer-links span { color: var(--border); }

.content-main .section-prose a {
  color: var(--primary);
  text-decoration: none;
}
.content-main .section-prose a:hover {
  text-decoration: underline;
}
.content-main .section-prose .category-link:hover {
  text-decoration: none;
}
.content-main .section-view-all {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.content-main {
  /* Stretch on inner pages: .page/.container use align-items:center so children
     otherwise shrink to max-content. Compact venue grids are intrinsically narrow;
     full venue cards are wide — without this, category pages look inconsistent. */
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  padding: 0 24px;
  box-sizing: border-box;
  font-family: var(--bodyFont);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}
.content-main p { color: #0a0a0a; }
.content-main h1 { font-family: var(--titleFont); font-size: clamp(28px, 4vw, 36px); margin: 0 0 1rem; }
.content-main h2 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.content-main h3 { font-size: 1.1rem; margin-top: 1rem; }

/* Breadcrumb: top left above main title; current = blue, links normal with hover blue */
.breadcrumb {
  font-size: 0.875rem;
  margin: 0 0 0.75rem;
  color: var(--muted);
}
.breadcrumb__sep {
  margin: 0 0.35em;
  color: var(--muted);
}
.breadcrumb__link {
  color: inherit;
  text-decoration: none;
}
.breadcrumb__link:hover {
  color: var(--link);
  text-decoration: underline;
}
.breadcrumb__current {
  color: var(--ink);
  font-weight: 700;
}

/* Venue page: two-column layout (3/1), sidebar cards */
.venue-page__main .section-prose p {
  margin-top: 1em;
}
.venue-page__main .section-prose p:first-child {
  margin-top: 0;
}
.venue-page__columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px 32px;
  margin-top: 1rem;
  align-items: start;
}
@media (max-width: 839px) {
  .venue-page__columns {
    grid-template-columns: 1fr;
  }
}
.venue-page__main {
  min-width: 0;
}
.venue-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.venue-page__card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-sizing: border-box;
}
.venue-page__card .venue-facts-panel__heading,
.venue-page__card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.venue-page__card .venue-facts-panel__list,
.venue-page__card ul.venue-facts-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.venue-page__card .venue-facts-panel__list li,
.venue-page__card ul.venue-facts-panel__list li {
  padding: 0.35em 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.4;
}
.venue-page__card .venue-facts-panel__list li:last-child,
.venue-page__card ul.venue-facts-panel__list li:last-child {
  border-bottom: none;
}

.venue-page__claim--centered {
  text-align: center;
  margin-top: 1em !important;
}

.venue-page__disclaimer {
  font-size: 13px;
}

.content-main .weekend-prompt {
  margin-top: 2rem;
  margin-bottom: 0;
  font-weight: 400;
  text-align: left;
}
.content-main .weekend-prompt a {
  color: var(--primary);
  text-decoration: none;
}
.content-main .weekend-prompt a:hover {
  text-decoration: underline;
}
/* Keep venue and event cards in content-main (e.g. category page) matching homepage styling.
   Use .section-prose in selector so we beat .content-main .section-prose a (0,2,1). */
.content-main .section-prose .venue-card {
  background: var(--panel);
  text-align: center;
}
.content-main .section-prose .venue-card__link {
  color: inherit !important;
  text-decoration: none !important;
}
.content-main .section-prose .venue-card__link:hover {
  text-decoration: none !important;
  color: inherit !important;
}
.content-main .section-prose .venue-card__link:hover .venue-card__view-info {
  color: var(--link) !important;
}
.content-main .section-prose .category-root-card__link {
  color: inherit !important;
  text-decoration: none !important;
}
.content-main .section-prose .category-root-card__link:hover {
  text-decoration: none !important;
  color: inherit !important;
}
.content-main .guide-root-card__link {
  color: inherit !important;
  text-decoration: none !important;
}
.content-main .guide-root-card__link:hover {
  text-decoration: none !important;
  color: inherit !important;
}
.content-main .section-prose .venue-card .venue-card__intro,
.content-main .section-prose .venue-card__intro {
  color: var(--muted-foreground);
}
.content-main .section-prose .venue-card .venue-card__tagline {
  color: var(--muted-foreground);
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.3;
}
/* Event tiles: restore full tile styling so they match homepage (content-main h3/p override title and meta otherwise). */
.content-main .section-prose .event-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.content-main .section-prose .event-tile:hover {
  box-shadow: var(--shadow);
  border-color: var(--muted);
}
.content-main .section-prose .event-tile .event-tile__title {
  font-family: var(--titleFont);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.content-main .section-prose .event-tile .event-tile__meta {
  font-size: 13px;
  color: var(--muted-foreground);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.content-main .section-prose .event-tile .event-tile__meta time { font-weight: 500; }
.content-main .section-prose .event-tile .event-tile__meta a { color: var(--primary); }
.content-main .section-prose .event-tile .event-tile__meta a:hover { text-decoration: underline; }
.content-main .section-prose .event-tile .event-tile__description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.content-main .section-prose .event-tile .event-tile__link-wrap {
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.content-main .section-prose .event-tile__link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
.content-main .section-prose .event-tile__link:hover { text-decoration: underline; }
.content-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Reusable text and link block: heading + bulleted list of links (e.g. Explore more in {City}) */
.link-block {
  margin: 2rem 0;
}
.link-block__heading,
.link-block h2 {
  font-family: var(--titleFont);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.link-block__list,
.link-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.link-block__list li,
.link-block ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.link-block__list li:last-child,
.link-block ul li:last-child {
  margin-bottom: 0;
}
.link-block__list a,
.link-block ul a {
  color: var(--primary);
  text-decoration: none;
}
.link-block__list a:hover,
.link-block ul a:hover {
  text-decoration: underline;
}

/* Pagination: result count left, controls right (white style) */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1rem 0;
}
.pagination__count {
  font-size: 14px;
  color: var(--muted-foreground);
}
.pagination__controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}
.pagination__btn,
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 38px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: var(--bg);
  border: none;
  border-right: 1px solid var(--border);
  transition: background 120ms ease, color 120ms ease;
}
.pagination__btn:last-child {
  border-right: none;
}
.pagination__btn:hover {
  background: var(--panel);
  color: var(--ink);
  text-decoration: none !important;
}
/* Unselected pages and arrows: black font; selected: white font on black */
.pagination__btn {
  color: var(--ink) !important;
  text-decoration: none !important;
}
.pagination__btn:hover {
  color: var(--ink) !important;
  text-decoration: none !important;
}
.pagination__btn--current,
.pagination__btn--current:hover {
  background: var(--ink);
  color: #ffffff !important;
}
.pagination__ellipsis {
  color: var(--muted-foreground);
  cursor: default;
  border-right: 1px solid var(--border);
}
.pagination__prev,
.pagination__next {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink) !important;
  text-decoration: none !important;
}
.pagination__prev:hover,
.pagination__next:hover {
  color: var(--ink) !important;
  text-decoration: none !important;
}

.event-card {
  margin: 0.75rem 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.event-card strong { display: block; margin-bottom: 0.25rem; }
.cta-placeholder {
  margin: 1.5rem 0;
  padding: 1rem;
  text-align: center;
  background: var(--panel);
  border-radius: var(--radius-lg);
}

.home-sections {
  width: 100%;
  box-sizing: border-box;
}
.home-sections > .home-section {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 48px 0;
  box-sizing: border-box;
  border-top: none;
}

.home-sections > .home-section::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: -1;
  box-sizing: border-box;
}
.home-sections > .home-section:nth-child(odd) {
  background: var(--panel);
}
.home-sections > .home-section:nth-child(odd)::before {
  background: var(--panel);
}
.home-sections > .home-section:nth-child(even) {
  background: var(--bg);
}
.home-sections > .home-section:nth-child(even)::before {
  background: var(--bg);
}
.home-sections > .home-section:first-child {
  margin-top: 40px;
}
/* Homepage: nav sits flush on the first section’s grey stripe */
.app-nav + .home-sections > .home-section:first-child {
  margin-top: 0;
}
/* No top border on events sections to avoid thicker-looking line in the middle */
.home-sections > .home-section.home-section--events {
  border-top: none;
}

.home-sections > .home-section:nth-child(odd) .event-tile,
.home-sections > .home-section:nth-child(odd) .venue-card,
.home-sections > .home-section:nth-child(odd) .venue-compact-link,
.home-sections > .home-section:nth-child(odd) .category-link,
.home-sections > .home-section:nth-child(odd) .guide-link {
  background: var(--bg);
}
.home-sections > .home-section:nth-child(even) .event-tile,
.home-sections > .home-section:nth-child(even) .venue-card,
.home-sections > .home-section:nth-child(even) .venue-compact-link,
.home-sections > .home-section:nth-child(even) .category-link,
.home-sections > .home-section:nth-child(even) .guide-link {
  background: var(--panel);
}
.home-section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.home-section {
  width: 100%;
  max-width: var(--max);
  margin-top: 48px;
  padding: 0 24px;
}
.home-section:first-of-type { margin-top: 40px; }

.section-heading {
  font-family: var(--titleFont);
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--ink);
}
.section-intro {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.section-view-all {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.section-view-all a {
  color: var(--primary);
}
.section-view-all a.button-secondary {
  color: #fff;
}
.section-view-all a.button-secondary:hover {
  color: #fff;
  text-decoration: none;
}
.section-view-all a:hover {
  text-decoration: underline;
}

.button-secondary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
a.button-secondary {
  color: #fff;
}
.button-secondary:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}
a.button-secondary:hover {
  color: #fff;
  text-decoration: none;
}

.events-grid {
  display: grid;
  gap: 20px;
  width: 100%;
}
.events-grid--tiles {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .events-grid--tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .events-grid--tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.event-tile:hover {
  box-shadow: var(--shadow);
  border-color: var(--muted);
}
.event-tile__title {
  font-family: var(--titleFont);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.event-tile__meta {
  font-size: 13px;
  color: var(--muted-foreground);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.event-tile__meta time { font-weight: 500; }
.event-tile__meta a { color: var(--primary); }
.event-tile__meta a:hover { text-decoration: underline; }
.event-tile__description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.event-tile__link-wrap {
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.event-tile__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.event-tile__link:hover { text-decoration: underline; }

.venues-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  width: 100%;
}
@media (min-width: 1040px) {
  .venues-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* /venues hub: venue count under each category heading */
.venues-cat-count {
  font-size: 13px;
  margin: 0 0 0.5rem;
  color: var(--muted-foreground);
}

/* /venues hub: first row in each category loop = 6 cards */
.home-section--venues-cat .venues-root-featured.venues-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  margin-bottom: 24px;
}
@media (min-width: 1040px) {
  .home-section--venues-cat .venues-root-featured.venues-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Featured venues block: max 3 per row, larger cards, longer snippet */
.venues-hub-featured.venues-grid,
.venues-category-featured.venues-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 520px) {
  .venues-hub-featured.venues-grid,
  .venues-category-featured.venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 840px) {
  .venues-hub-featured.venues-grid,
  .venues-category-featured.venues-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.venue-card--featured .venue-card__link {
  padding: 24px 28px;
  min-height: 260px;
}
.venue-card--featured .venue-card__name {
  font-size: 1.1rem;
  min-height: auto;
  -webkit-line-clamp: 2;
}
.venue-card--featured .venue-card__tagline {
  font-size: 14px;
  -webkit-line-clamp: 2;
}
.venue-card--featured .venue-card__intro {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 6;
}

.venue-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease;
  min-height: 200px;
}
.venue-card:hover {
  background: var(--card);
  border-color: var(--muted);
}
.venue-card__link {
  display: block;
  position: relative;
  min-height: 200px;
  padding: 18px 20px 32px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.venue-card__view-info {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 12px;
  font-style: italic;
  color: var(--muted-foreground);
}
.venue-card__link:hover .venue-card__view-info {
  color: var(--link) !important;
}
/* Homepage featured venues (inside .home-sections, not .section-prose) */
.home-sections .venue-card__link:hover .venue-card__view-info {
  color: var(--link) !important;
}
.venue-card__link:hover {
  text-decoration: none;
}
.venue-card__name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.venue-card__tagline {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.venue-card__intro {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Non-featured venue row (category sections on /venues): compact list-style link */
/* Wrapper keeps grid cell height when flipped card goes absolute (overlay) */
.venue-compact-cell {
  position: relative;
  min-height: 90px;
  margin-bottom: 6px;
}

.venues-root-rest.venues-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 520px) {
  .venues-root-rest.venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
  }
}
@media (min-width: 840px) {
  .venues-root-rest.venues-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
  }
}
.venue-compact-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  padding: 12px 14px;
  margin-bottom: 6px;
  min-height: 90px;
  box-sizing: border-box;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none !important;
  color: inherit;
  transition: background 180ms ease, border-color 180ms ease;
}
.venue-compact-link__view-info {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  font-style: italic;
  color: var(--muted-foreground);
}
.venue-compact-link:hover .venue-compact-link__view-info {
  color: var(--link);
}
.venue-compact-link:hover {
  background: var(--card);
  border-color: var(--muted);
  text-decoration: none !important;
}
.venue-compact-link .venue-compact-link__name,
.venue-compact-link .venue-compact-link__tagline,
.venue-compact-link:hover .venue-compact-link__name,
.venue-compact-link:hover .venue-compact-link__tagline {
  text-decoration: none !important;
}
.venue-compact-link__name {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--ink);
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.venue-compact-link__tagline {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.venue-compact-link--no-link {
  cursor: default;
}

/* Directory-only venue card: flip on tap/click to show claim CTA (no JS) */
/* Always absolute inside cell so closing never re-enters flow (avoids content jump) */
.venue-compact-cell .venue-compact-flip {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 90px;
}
.venue-compact-flip {
  margin-bottom: 0;
  perspective: 800px;
}
/* When flipped: raise z-index and grow height; card stays absolute so no layout jump on close */
.venue-compact-flip:has(.venue-compact-flip__input:not(.venue-compact-flip__input--none):checked) {
  min-height: 165px;
  z-index: 10;
}
.venue-compact-flip:has(.venue-compact-flip__input:not(.venue-compact-flip__input--none):checked) .venue-compact-flip__label,
.venue-compact-flip:has(.venue-compact-flip__input:not(.venue-compact-flip__input--none):checked) .venue-compact-flip__inner {
  min-height: 165px;
}
.venue-compact-flip__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.venue-compact-flip__label {
  display: block;
  cursor: pointer;
  min-height: 90px;
  transition: min-height 0.35s ease;
}
.venue-compact-flip__inner {
  display: block;
  position: relative;
  min-height: 90px;
  transform-style: preserve-3d;
  transition: transform 0.45s ease, min-height 0.35s ease;
  transform-origin: center center;
}
.venue-compact-flip__front,
.venue-compact-flip__back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.venue-compact-flip__front {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: inherit;
}
.venue-compact-flip__front .venue-compact-link__name,
.venue-compact-flip__front .venue-compact-link__tagline {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.venue-compact-flip__front .venue-compact-link__tagline {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-foreground);
  -webkit-line-clamp: 1;
}
.venue-compact-flip__label:hover .venue-compact-flip__front {
  border-color: var(--muted);
}
.venue-compact-flip__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  min-height: 165px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transform: rotateY(180deg);
  line-height: 1.45;
  color: var(--muted-foreground);
  box-sizing: border-box;
}
.venue-compact-flip__back > p:first-child {
  text-align: center;
  font-size: 14px;
  margin: 0;
}
.venue-compact-flip__back > p:last-child {
  text-align: center;
  font-size: 10px;
  margin: 0;
}
.venue-compact-flip__claim-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}
.venue-compact-flip__claim-link:hover {
  color: var(--ink);
}
/* Only flip when the card radio is checked, not the close (--none) radio. Scale up so flipped card clearly expands. */
.venue-compact-flip__input:checked:not(.venue-compact-flip__input--none) ~ .venue-compact-flip__label .venue-compact-flip__inner {
  transform: rotateY(180deg) scale(1.18);
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

/* M10 root pages: category grid (large cards), guide grid (title + snippet) */
.category-root-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  width: 100%;
}
@media (min-width: 1040px) {
  .category-root-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.category-root-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: background 180ms ease, border-color 180ms ease;
}
.category-root-card:hover {
  background: var(--card);
  border-color: var(--muted);
}
.category-root-card__link {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}
.category-root-card__link:hover {
  text-decoration: none;
}
.category-root-card__name {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.category-root-card__desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.4;
  display: block;
}

.guide-root-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  width: 100%;
}
@media (min-width: 640px) {
  .guide-root-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.guide-root-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: background 180ms ease, border-color 180ms ease;
}
.guide-root-card:hover {
  background: var(--card);
  border-color: var(--muted);
}
.guide-root-card__link {
  display: block;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
}
.guide-root-card__link:hover {
  text-decoration: none;
}
.guide-root-card__title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.guide-root-card__snippet {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.category-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 14px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: background 180ms, border-color 180ms;
  text-decoration: none;
}
.category-link:hover {
  background: var(--card);
  border-color: var(--muted);
  text-decoration: none;
}

/* 404 page: centered content, picture-style links */
.page-404 {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 0;
}
.page-404__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.page-404__subscribe {
  margin: 0 0 1.5rem;
  color: var(--muted-foreground);
}
.page-404 .category-links {
  margin-top: 1rem;
}

.category-previews {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.category-preview {
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.category-preview:not(:first-child) {
  padding-top: 24px;
}
.category-preview:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.category-preview__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}
.category-preview__action {
  margin: 20px 0 0;
  text-align: center;
}

.guides-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.guide-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 14px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: background 180ms, border-color 180ms;
  text-decoration: none;
}
.guide-link:hover {
  background: var(--card);
  border-color: var(--muted);
  text-decoration: none;
}

.section-prose {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  width: 100%;
}
.section-prose p { margin: 0 0 1em; }
.section-prose p:last-child { margin-bottom: 0; }

.home-section--intro .section-prose a {
  color: var(--primary);
  text-decoration: none;
}
.home-section--intro .section-prose a:hover {
  text-decoration: underline;
}

.home-section--faq .section-prose a,
.home-section--faq .faq-content a {
  color: var(--primary);
  text-decoration: none;
}
.home-section--faq .section-prose a:hover,
.home-section--faq .faq-content a:hover {
  text-decoration: underline;
}
.faq-content dl { margin: 0; }
.faq-content dt { font-weight: 600; margin-top: 1em; }
.faq-content dd { margin: 0.25em 0 0 1em; }

.hidden { display: none !important; }

.subscribe-anchor {
  display: block;
  height: 0;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
