
:root {
  --paper: #f5f3ee;
  --paper-soft: #ebe7de;
  --white: #ffffff;
  --ink: #111714;
  --muted-copy: #626b66;
  --heritage-green: #23322c;
  --heritage-green-soft: #31433a;
  --copper: #b8734a;
  --line: #dadeda;
  --background: #f5f3ee;
  --foreground: #111714;
  --card: #ffffff;
  --card-foreground: #111714;
  --popover: #ffffff;
  --popover-foreground: #111714;
  --primary: #23322c;
  --primary-foreground: #ffffff;
  --secondary: #ebe7de;
  --secondary-foreground: #23322c;
  --muted: #ebe7de;
  --muted-foreground: #626b66;
  --accent: #f2e7df;
  --accent-foreground: #6f3f27;
  --destructive: #a73a2c;
  --border: #dadeda;
  --input: #dadeda;
  --ring: #b8734a;
  --radius: 0.75rem;
  color-scheme: light;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.siteShell {
  min-height: 100vh;
  overflow: hidden;
}

.pageWrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid rgba(35, 50, 44, 0.09);
}

.headerInner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--heritage-green);
}

.brandMark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  line-height: 1.1;
}

.brand small {
  color: var(--copper);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.headerInner nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #36423d;
  font-size: 0.9rem;
  font-weight: 650;
}

.headerInner nav a {
  position: relative;
}

.headerInner nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 180ms ease;
}

.headerInner nav a:hover::after,
.headerInner nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.introBand {
  position: relative;
  min-height: 332px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.03), transparent 47%),
    var(--heritage-green);
  color: var(--white);
}

.introBand::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

.introContent {
  position: relative;
  z-index: 2;
  min-height: 332px;
  padding: 54px 0 93px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.introCopy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #e0a47e;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.introCopy h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.introCopy > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d9e0dc;
  font-size: 1.08rem;
}

.coverageStamp {
  min-width: 235px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.coverageStamp svg {
  width: 24px;
  color: #d8976f;
}

.coverageStamp div {
  display: grid;
}

.coverageStamp strong {
  font-size: 0.95rem;
}

.coverageStamp span {
  color: #becbc5;
  font-size: 0.75rem;
}

.targetRings {
  position: absolute;
  right: -120px;
  bottom: -285px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.targetRings span {
  position: absolute;
  inset: 74px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.targetRings span:nth-child(2) {
  inset: 147px;
}

.targetRings span:nth-child(3) {
  inset: 221px;
  border-color: rgba(184, 115, 74, 0.35);
  background: rgba(184, 115, 74, 0.09);
}

.searchSection {
  position: relative;
  z-index: 6;
  margin-top: -58px;
}

.searchCard {
  padding: 27px 30px 30px;
  border: 1px solid rgba(35, 50, 44, 0.09);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(27, 38, 33, 0.11);
}

.searchIntro {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.searchIntro > svg {
  width: 29px;
  height: 29px;
  padding: 6px;
  border-radius: 50%;
  background: #f2e6de;
  color: var(--copper);
}

.searchIntro h2 {
  margin: 0;
  color: var(--heritage-green);
  font-size: 1.1rem;
  line-height: 1.25;
}

.searchIntro p {
  margin: 3px 0 0;
  color: var(--muted-copy);
  font-size: 0.82rem;
}

.locationForm {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 210px 170px;
  align-items: end;
  gap: 14px;
}

.fieldLabel,
.compactField {
  display: grid;
  gap: 8px;
  color: #43504a;
  font-size: 0.75rem;
  font-weight: 750;
}

.inputWithIcon {
  position: relative;
}

.inputWithIcon svg {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  width: 18px;
  color: #79817d;
  transform: translateY(-50%);
}

.inputWithIcon input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: #fbfbf9;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inputWithIcon input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 74, 0.13);
}

.inputWithIcon input::placeholder {
  color: #919995;
}

.radiusSelect,
.filterSelect {
  height: 48px !important;
  width: 100%;
  border-color: var(--line) !important;
  border-radius: 11px !important;
  background: #fbfbf9 !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  font-size: 0.86rem !important;
}

.searchButton {
  height: 48px;
  border-radius: 11px;
  background: var(--copper);
  color: var(--white);
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(184, 115, 74, 0.23);
}

.searchButton:hover {
  background: #a9623e;
}

.searchButton svg {
  width: 17px;
}

.locationSuccess,
.searchError {
  margin: 17px 0 0;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 0.82rem;
}

.locationSuccess {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #edf3ef;
  color: var(--heritage-green);
}

.locationSuccess > svg {
  width: 17px;
  color: #4f755f;
}

.locationSuccess button {
  width: 27px;
  height: 27px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.locationSuccess button:hover {
  background: rgba(35, 50, 44, 0.08);
}

.locationSuccess button svg {
  width: 15px;
}

.searchError {
  background: #f8e9e5;
  color: #813a2f;
}

.eventsSection {
  padding-top: 48px;
  padding-bottom: 90px;
}

.filterPanel {
  padding: 19px;
  display: grid;
  grid-template-columns: 160px minmax(175px, 1.35fr) repeat(5, minmax(120px, 1fr));
  align-items: end;
  gap: 13px;
  border: 1px solid #dde0dc;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.filterTitle {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--heritage-green);
  font-size: 0.84rem;
  font-weight: 800;
}

.filterTitle svg {
  width: 17px;
  color: var(--copper);
}

.filterTitle small {
  padding: 2px 7px;
  border-radius: 999px;
  background: #e9ded6;
  color: #8a4f31;
  font-size: 0.64rem;
}

.compactField > span {
  font-size: 0.69rem;
}

.smallInput input,
.filterSelect {
  height: 41px !important;
}

.smallInput input {
  padding-left: 39px;
  font-size: 0.82rem;
}

.smallInput svg {
  left: 13px;
  width: 16px;
}

.accessCheck {
  grid-column: 2 / span 2;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #49554f;
  font-size: 0.79rem;
  font-weight: 650;
  cursor: pointer;
}

.accessCheck button {
  border-color: #abb4af;
  background: #fff;
}

.accessCheck button[data-state="checked"] {
  border-color: var(--copper);
  background: var(--copper);
}

.clearButton {
  grid-column: 7;
  justify-self: end;
  color: #78513d;
  font-size: 0.78rem;
}

.resultsHeading {
  margin: 45px 0 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.darkEyebrow {
  margin-bottom: 5px;
  color: var(--copper);
}

.resultsHeading h2 {
  margin: 0;
  color: var(--heritage-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.resultsHeading > p {
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-copy);
  font-size: 0.77rem;
  font-weight: 650;
}

.resultsHeading > p svg {
  width: 15px;
  color: var(--copper);
}

.eventList {
  display: grid;
  gap: 15px;
}

.eventCard {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #dde0dc;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 5px 16px rgba(29, 40, 35, 0.035);
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.eventCard:hover {
  border-color: #c8ccc8;
  box-shadow: 0 13px 28px rgba(29, 40, 35, 0.075);
  transform: translateY(-1px);
}

.dateBlock {
  min-height: 100%;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--heritage-green);
  color: var(--white);
  text-align: center;
}

.dateBlock span {
  color: #e3ad89;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.dateBlock strong {
  margin: 2px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1;
}

.dateBlock small {
  color: #aebbb5;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.eventContent {
  min-width: 0;
  padding: 23px 25px 21px;
}

.eventHeading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.eventHeading h2 {
  margin: 9px 0 0;
  color: var(--heritage-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #dfe2df;
  border-radius: 999px;
  background: #f5f5f2;
  color: #637069;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.tagGreen {
  border-color: #d5ded9;
  background: #edf2ef;
  color: #355344;
}

.tagAccessible {
  border-color: #e2d3c8;
  background: #f6ede7;
  color: #844d30;
}

.distanceBadge {
  min-width: 105px;
  padding: 9px 11px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-content: center;
  border-radius: 10px;
  background: #f3eee9;
  color: #7d4a31;
}

.distanceBadge svg {
  grid-row: 1 / span 2;
  align-self: center;
  width: 15px;
}

.distanceBadge strong,
.distanceBadge span {
  line-height: 1.1;
}

.distanceBadge strong {
  font-size: 0.72rem;
}

.distanceBadge span {
  color: #8a7b72;
  font-size: 0.57rem;
}

.eventEssentials {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}

.eventEssentials p {
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #59635e;
  font-size: 0.78rem;
  line-height: 1.45;
}

.eventEssentials svg,
.priceGlyph {
  width: 17px;
  flex: 0 0 17px;
  color: var(--copper);
}

.priceGlyph {
  font-weight: 850;
  text-align: center;
}

.bowstyleRow {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.bowstyleRow span {
  padding: 4px 9px;
  border-left: 2px solid var(--copper);
  background: #f7f5f1;
  color: #56615b;
  font-size: 0.66rem;
  font-weight: 750;
}

.detailsPanel {
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #e5e7e4;
}

.detailsPanel summary {
  width: fit-content;
  color: #704a36;
  font-size: 0.77rem;
  font-weight: 800;
  cursor: pointer;
  list-style-position: outside;
}

.detailsPanel summary:hover {
  color: var(--copper);
}

.detailGrid {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 24px;
  border-radius: 12px;
  background: #f5f4f0;
}

.detailGrid div {
  display: grid;
  gap: 3px;
}

.detailGrid span {
  color: #7a837f;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detailGrid strong {
  color: #3e4944;
  font-size: 0.75rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.eventActions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.eventActions a {
  gap: 7px;
}

.eventActions svg {
  width: 14px;
}

.primaryLink,
.secondaryLink {
  height: 38px;
  border-color: #cfd4d0;
  border-radius: 9px;
  background: var(--white);
  color: #405049;
  font-size: 0.72rem;
  font-weight: 750;
}

.primaryLink:hover,
.secondaryLink:hover {
  border-color: #aeb8b2;
  background: var(--paper-soft);
  color: var(--heritage-green);
}

.emptyState {
  padding: 64px 28px;
  border: 1px dashed #bdc5c0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.emptyState > svg {
  width: 38px;
  height: 38px;
  color: var(--copper);
}

.emptyState h2 {
  margin: 12px 0 5px;
  color: var(--heritage-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.emptyState p {
  margin: 0 0 17px;
  color: var(--muted-copy);
  font-size: 0.86rem;
}

.sourcesSection {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: var(--heritage-green);
  color: var(--white);
}

.sourcesSection::after {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: inset 0 0 0 90px rgba(255, 255, 255, 0.018),
    inset 0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.sourcesGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
}

.sourcesGrid h2 {
  max-width: 430px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.sourcesGrid > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: #c7d1cc;
  font-size: 0.91rem;
}

.sourceLinks {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sourceLinks a {
  min-height: 64px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: #edf1ef;
  font-size: 0.77rem;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease;
}

.sourceLinks a:hover {
  border-color: rgba(224, 164, 126, 0.45);
  background: rgba(255, 255, 255, 0.095);
}

.sourceLinks svg {
  width: 15px;
  flex: 0 0 15px;
  color: #dfa17b;
}

footer {
  padding: 27px 0;
  background: #17211d;
  color: #d8dfdc;
}

.footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footerBrand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footerBrand .brandMark {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  color: #d8dfdc;
}

.footerBrand div {
  display: grid;
}

.footerBrand strong {
  font-size: 0.8rem;
}

.footerBrand span,
.footerInner > p {
  color: #97a49e;
  font-size: 0.65rem;
}

.footerInner > p {
  max-width: 480px;
  margin: 0;
  text-align: right;
}

@media (max-width: 1040px) {
  .filterPanel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filterTitle {
    grid-column: 1 / -1;
  }

  .keywordField {
    grid-column: span 1;
  }

  .accessCheck {
    grid-column: 1 / span 2;
  }

  .clearButton {
    grid-column: 3;
  }
}

@media (max-width: 820px) {
  .pageWrap {
    width: min(100% - 32px, 720px);
  }

  .introContent {
    min-height: 360px;
    padding-bottom: 106px;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .coverageStamp {
    min-width: 0;
  }

  .locationForm {
    grid-template-columns: 1fr 190px;
  }

  .searchButton {
    grid-column: 1 / -1;
  }

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

  .filterTitle {
    grid-column: 1 / -1;
  }

  .accessCheck {
    grid-column: 1;
  }

  .clearButton {
    grid-column: 2;
  }

  .sourcesGrid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .pageWrap {
    width: min(100% - 22px, 560px);
  }

  .headerInner {
    min-height: 72px;
  }

  .brandMark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .brand strong {
    font-size: 0.76rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .headerInner nav {
    gap: 12px;
    font-size: 0.7rem;
  }

  .headerInner nav a:last-child {
    display: none;
  }

  .introBand,
  .introContent {
    min-height: 330px;
  }

  .introContent {
    padding-top: 42px;
    padding-bottom: 98px;
  }

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

  .introCopy > p:last-child {
    margin-top: 17px;
    font-size: 0.91rem;
  }

  .coverageStamp {
    padding: 12px 14px;
  }

  .searchSection {
    margin-top: -50px;
  }

  .searchCard {
    padding: 21px 17px;
    border-radius: 17px;
  }

  .locationForm,
  .filterPanel {
    grid-template-columns: 1fr;
  }

  .searchButton,
  .filterTitle,
  .keywordField,
  .accessCheck,
  .clearButton {
    grid-column: 1;
  }

  .clearButton {
    justify-self: start;
  }

  .eventsSection {
    padding-top: 34px;
    padding-bottom: 62px;
  }

  .resultsHeading {
    margin-top: 34px;
  }

  .resultsHeading > p {
    display: none;
  }

  .eventCard {
    grid-template-columns: 72px minmax(0, 1fr);
    border-radius: 14px;
  }

  .dateBlock {
    padding: 19px 7px;
  }

  .dateBlock strong {
    font-size: 2rem;
  }

  .dateBlock span {
    font-size: 0.62rem;
  }

  .eventContent {
    padding: 18px 15px 17px;
  }

  .eventHeading {
    flex-direction: column;
    gap: 10px;
  }

  .distanceBadge {
    width: fit-content;
  }

  .eventEssentials,
  .detailGrid {
    grid-template-columns: 1fr;
  }

  .eventEssentials {
    gap: 7px;
  }

  .detailGrid {
    padding: 14px;
  }

  .eventActions {
    flex-direction: column;
  }

  .eventActions a {
    width: 100%;
  }

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

  .sourcesSection {
    padding: 58px 0;
  }

  .footerInner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footerInner > p {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Native-control equivalents for the original component styling. */
select { font: inherit; }
.radiusSelect,
.filterSelect {
  padding: 0 36px 0 12px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6f7873 50%), linear-gradient(135deg, #6f7873 50%, transparent 50%);
  background-position: calc(100% - 17px) 19px, calc(100% - 12px) 19px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.searchButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
}
.searchButton:disabled { opacity: .7; cursor: wait; }
.accessCheck input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--copper);
  cursor: pointer;
}
.clearButton {
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.clearButton:hover { background: #eee8e2; }
.primaryLink,
.secondaryLink {
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd4d0;
}
.emptyClearButton {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 9px;
  background: var(--heritage-green);
  color: #fff;
  font-size: .75rem;
  font-weight: 750;
  cursor: pointer;
}
.coverageStamp strong #heroCount { color: inherit; font: inherit; }
.sourceLinks a > span:last-child { width: 15px; flex: 0 0 15px; color: #dfa17b; font-size: 1rem; }
.eventLoading { padding: 34px 0; color: var(--muted-copy); font-size: .85rem; }
@media (max-width: 1040px) {
  .keywordField { grid-column: span 1; }
  .accessCheck { grid-column: 1 / span 2; }
}


/* Crawlable country and month navigation. */
.seoBrowse { margin-top: 54px; margin-bottom: 58px; }
.seoBrowse h2 { margin: 0 0 24px; color: var(--heritage-green); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 500; letter-spacing: -0.035em; }
.seoBrowseGroups { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.seoBrowseGroups > div { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.seoBrowse h3 { margin: 0 0 12px; color: var(--heritage-green); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.seoBrowse nav { display: flex; flex-wrap: wrap; gap: 8px; }
.seoBrowse a { padding: 7px 10px; border-radius: 999px; background: var(--paper-soft); color: var(--heritage-green); font-size: .75rem; font-weight: 700; }
.seoBrowse a:hover { background: #f2e7df; color: #6f3f27; }
@media (max-width: 720px) { .seoBrowseGroups { grid-template-columns: 1fr; } }
