/* Public mySailingResults layout.
   This file intentionally overrides the older page-specific layers in styles.css. */
:root {
  --public-navy: #08254d;
  --public-blue: #0968d8;
  --public-blue-dark: #074fa8;
  --public-ink: #132b49;
  --public-muted: #61748b;
  --public-line: #dce5ee;
  --public-soft: #f4f7fb;
  --public-white: #fff;
}

body.public-refreshed {
  margin: 0;
  padding: 0;
  color: var(--public-ink);
  background: var(--public-white);
}
.public-refreshed [hidden] { display: none !important; }
.public-refreshed :is(main, section, article, aside, div) { min-width: 0; }
.public-refreshed :is(a, button, input, select, summary):focus-visible {
  outline: 3px solid #13a9ec;
  outline-offset: 3px;
}
.public-refreshed input,
.public-refreshed select { font: inherit; }
.public-skip {
  position: fixed;
  z-index: 5000;
  top: -80px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 5px;
  color: #fff;
  background: var(--public-navy);
}
.public-skip:focus { top: 12px; }

/* Shared header and app navigation */
body.public-refreshed .site-header.app-header {
  position: sticky !important;
  z-index: 1200;
  top: 0;
  display: flex !important;
  width: 100% !important;
  min-height: 76px !important;
  margin: 0 !important;
  padding: 10px max(24px, calc((100% - 1180px) / 2)) !important;
  align-items: center !important;
  gap: 24px !important;
  box-sizing: border-box !important;
  border: 0 !important;
  border-bottom: 1px solid var(--public-line) !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.98) !important;
  box-shadow: 0 4px 18px rgba(8,37,77,.06) !important;
  backdrop-filter: blur(14px);
}
body.public-refreshed .site-header .brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
body.public-refreshed .site-header .brand-logo {
  width: 196px !important;
  max-width: 100% !important;
  max-height: 48px !important;
  object-fit: contain;
}
body.public-refreshed .site-header .main-nav {
  display: flex !important;
  margin-left: auto !important;
  align-items: stretch;
  gap: 5px !important;
}
body.public-refreshed .site-header .main-nav a {
  display: flex;
  min-height: 42px;
  padding: 0 10px !important;
  align-items: center;
  border-radius: 5px;
  color: #29415f !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1.2;
  letter-spacing: .015em !important;
  text-decoration: none;
  text-transform: none !important;
  white-space: nowrap;
}

/* Keep navigation labels in the same title case on desktop and mobile. */
html body.public-refreshed .site-header.app-header .main-nav a,
body.public-refreshed .public-app-bottom-nav strong {
  text-transform: none !important;
}
body.public-refreshed .site-header .main-nav a::after { display: none !important; }
body.public-refreshed .site-header .main-nav a:hover,
body.public-refreshed .site-header .main-nav a.active {
  color: var(--public-blue) !important;
  background: #eaf3ff !important;
}
body.public-refreshed .site-header.app-header .header-actions {
  display: flex !important;
  margin: 0 !important;
  align-items: center;
  gap: 8px !important;
}
body.public-refreshed .site-header.app-header .header-actions .icon-button {
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  padding: 10px !important;
  place-items: center;
}
body.public-refreshed .site-header.app-header .header-actions .outline-button {
  min-height: 40px !important;
  padding: 0 14px !important;
}
.public-menu-toggle,
.public-app-bottom-nav { display: none; }

/* Association-style listing pages */
body.public-refreshed :is(.listing-page, .ranking-page) {
  width: min(1180px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: 28px 0 58px !important;
  box-sizing: border-box !important;
}
body.public-refreshed :is(.listing-hero, .ranking-hero) {
  position: relative;
  display: grid !important;
  min-height: 210px !important;
  margin: 0 !important;
  padding: 38px 40px !important;
  align-content: center;
  box-sizing: border-box;
  overflow: hidden;
  border: 0 !important;
  border-radius: 8px !important;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(31,139,255,.42), transparent 28%),
    linear-gradient(120deg, #061d42, #0a448c) !important;
  box-shadow: none !important;
}
body.public-refreshed :is(.listing-hero, .ranking-hero)::before {
  position: absolute;
  right: 38px;
  bottom: -65px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}
body.public-refreshed :is(.listing-hero, .ranking-hero)::after { display: none !important; }
body.public-refreshed :is(.listing-hero, .ranking-hero) .eyebrow {
  margin: 0 0 8px !important;
  color: #9ecbff !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase;
}
body.public-refreshed :is(.listing-hero, .ranking-hero) h1 {
  max-width: 780px;
  margin: 0 0 12px !important;
  color: #fff !important;
  font-size: clamp(34px, 4vw, 50px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.035em !important;
  text-transform: none !important;
}
body.public-refreshed :is(.listing-hero, .ranking-hero) > p:not(.eyebrow) {
  max-width: 690px !important;
  margin: 0 !important;
  color: #d6e4f7 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}
body.public-refreshed .app-page-stat {
  position: absolute !important;
  right: 38px !important;
  bottom: 30px !important;
  display: flex !important;
  min-width: 180px !important;
  width: auto !important;
  min-height: 0 !important;
  padding: 11px 15px !important;
  align-items: baseline;
  gap: 8px !important;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 5px !important;
  color: #fff;
  background: rgba(255,255,255,.1) !important;
}
body.public-refreshed .app-page-stat strong { font-size: 22px !important; }
body.public-refreshed .app-page-stat :is(span, small) { font-size: 11px !important; }

body.public-refreshed :is(.event-directory, .results-listing-board, .ranking-board) {
  width: 100% !important;
  margin: 26px 0 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.public-refreshed .event-directory.public-association-events,
body.public-refreshed .public-association-results-layout {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) 280px !important;
  gap: 30px !important;
  align-items: start;
}
body.public-refreshed :is(.association-events-main, .association-results-main) {
  grid-column: 1;
  grid-row: 1;
}
body.public-refreshed :is(.association-events-sidebar, .association-results-sidebar) {
  display: block !important;
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.public-refreshed :is(.event-tabs, .results-listing-header) {
  display: flex !important;
  min-height: 58px;
  margin: 0 0 18px !important;
  padding: 0 0 14px !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  border: 0 !important;
  border-bottom: 1px solid var(--public-line) !important;
  background: transparent !important;
}
body.public-refreshed .event-tabs button {
  padding: 0 0 9px !important;
  border: 0 !important;
  border-bottom: 3px solid transparent !important;
  border-radius: 0 !important;
  color: #6b7b90 !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
body.public-refreshed .event-tabs button.active {
  color: var(--public-blue) !important;
  border-bottom-color: var(--public-blue) !important;
}
body.public-refreshed .event-tabs > span {
  margin-left: auto;
  color: var(--public-muted);
  font-size: 12px;
}
body.public-refreshed .results-listing-header h2 {
  margin: 0 0 4px !important;
  color: var(--public-navy) !important;
  font-size: 25px !important;
}
body.public-refreshed .results-listing-header p {
  margin: 0 !important;
  color: var(--public-muted) !important;
  font-size: 13px !important;
}
body.public-refreshed .results-search-row {
  display: flex !important;
  gap: 8px !important;
}
body.public-refreshed .results-search-row input {
  width: 220px !important;
  min-height: 42px !important;
  padding: 10px 12px !important;
  border: 1px solid #cbd8e5 !important;
  border-radius: 5px !important;
  background: #fff !important;
}
body.public-refreshed #toggleResultsFilters { display: none !important; }

body.public-refreshed .public-class-filters {
  display: flex !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  flex-wrap: wrap;
  gap: 7px !important;
  border: 0 !important;
  background: transparent !important;
}
body.public-refreshed .public-class-filters button,
body.public-refreshed .ranking-tabs a {
  min-height: 36px !important;
  padding: 8px 13px !important;
  border: 1px solid #cfdbe8 !important;
  border-radius: 4px !important;
  color: #415875 !important;
  background: #fff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-decoration: none;
}
body.public-refreshed .public-class-filters button:is(.active, [aria-pressed="true"]),
body.public-refreshed .ranking-tabs a.active {
  color: #fff !important;
  border-color: var(--public-blue) !important;
  background: var(--public-blue) !important;
}

body.public-refreshed .event-list-detailed {
  display: grid !important;
  padding: 0 !important;
  gap: 12px !important;
  border: 0 !important;
  background: transparent !important;
}
body.public-refreshed .event-detail-card {
  display: grid !important;
  min-height: 126px !important;
  padding: 14px !important;
  grid-template-columns: 62px 100px minmax(0,1fr) 138px !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  gap: 15px !important;
  box-sizing: border-box;
  border: 1px solid var(--public-line) !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: 0 4px 16px rgba(8,37,77,.045) !important;
}
body.public-refreshed .event-detail-card:hover {
  border-color: #afc9e4 !important;
  box-shadow: 0 7px 22px rgba(8,37,77,.085) !important;
}
body.public-refreshed .event-date {
  display: grid !important;
  width: 62px !important;
  min-height: 78px !important;
  padding: 8px 4px !important;
  place-content: center;
  box-sizing: border-box;
  border: 0 !important;
  border-radius: 5px !important;
  color: var(--public-navy) !important;
  background: #edf5ff !important;
  text-align: center;
}
body.public-refreshed .event-date strong { font-size: 27px !important; line-height: 1 !important; }
body.public-refreshed .event-date :is(span,small) { font-size: 10px !important; font-weight: 800; text-transform: uppercase; }
body.public-refreshed .event-club-mark { display: none !important; }
body.public-refreshed .event-thumb {
  display: block !important;
  width: 100px !important;
  height: 76px !important;
  border-radius: 5px !important;
  object-fit: cover !important;
  background: var(--public-soft);
}
body.public-refreshed .event-copy {
  grid-column: 3 !important;
  grid-row: 1 !important;
  align-self: center !important;
}
body.public-refreshed .event-copy h2 {
  margin: 0 0 7px !important;
  color: var(--public-navy) !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
}
body.public-refreshed .event-copy > p {
  margin: 3px 0 !important;
  color: var(--public-muted) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}
body.public-refreshed .event-copy > p:not(.event-location):not(.event-range) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
body.public-refreshed .event-location svg { width: 13px !important; height: 13px !important; }
body.public-refreshed .event-tags { margin-top: 8px !important; gap: 5px !important; }
body.public-refreshed .event-tags span {
  padding: 4px 7px !important;
  border-radius: 3px !important;
  font-size: 9px !important;
}
body.public-refreshed .event-tags .tag-flag {
  width: 16px !important;
  height: 11px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: inherit !important;
  background: transparent !important;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  object-fit: cover !important;
  text-transform: none !important;
}
body.public-refreshed .event-side {
  grid-column: 4 !important;
  grid-row: 1 !important;
  align-self: center !important;
}
body.public-refreshed .event-actions {
  display: grid !important;
  width: 100% !important;
  gap: 7px !important;
}
body.public-refreshed .event-actions a {
  display: flex !important;
  min-height: 34px !important;
  padding: 7px 9px !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 4px !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  text-align: center;
  text-decoration: none;
}

/* Match the association event index: one bordered list, clear date and compact metadata. */
body.public-refreshed .event-directory.public-association-events {
  grid-template-columns: minmax(0,1fr) 340px !important;
}
body.public-refreshed:has(.public-association-events) .event-directory.public-association-events {
  grid-template-columns: minmax(0,1fr) 340px !important;
}
body.public-refreshed .public-association-events .event-list-detailed {
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--public-line) !important;
  border-radius: 5px !important;
  background: #fff !important;
}
body.public-refreshed .public-association-events .event-detail-card {
  min-height: 148px !important;
  padding: 18px 24px !important;
  grid-template-columns: 74px minmax(0,1fr) 150px !important;
  grid-template-rows: auto !important;
  gap: 22px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--public-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body.public-refreshed .public-association-events .event-detail-card:last-of-type {
  border-bottom: 0 !important;
}
body.public-refreshed .public-association-events .event-date {
  width: 74px !important;
  min-height: 94px !important;
  padding: 0 !important;
  align-content: center;
  border-radius: 0 !important;
  color: var(--public-ink) !important;
  background: transparent !important;
}
body.public-refreshed .public-association-events .event-date strong {
  color: var(--public-blue-dark) !important;
  font-size: 38px !important;
  font-weight: 900 !important;
}
body.public-refreshed .public-association-events .event-date span {
  margin-top: 8px;
  color: var(--public-ink);
  font-size: 16px !important;
}
body.public-refreshed .public-association-events .event-date small {
  margin-top: 6px;
  color: var(--public-muted);
  font-size: 11px !important;
}
body.public-refreshed .public-association-events .event-copy {
  grid-column: 2 !important;
  grid-row: 1 !important;
}
body.public-refreshed .public-association-events .event-copy h2 {
  margin-bottom: 9px !important;
  font-size: 19px !important;
  font-weight: 900 !important;
}
body.public-refreshed .event-list-meta {
  display: flex !important;
  margin: 0 0 9px !important;
  flex-wrap: wrap;
  gap: 8px 18px !important;
  color: #263a55 !important;
  font-weight: 700;
}
body.public-refreshed .event-list-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.public-refreshed .event-list-meta svg {
  width: 14px !important;
  height: 14px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
body.public-refreshed .event-list-classification {
  display: inline-flex;
  min-height: 21px;
  padding: 0 8px;
  align-items: center;
  border-radius: 2px;
  color: var(--public-blue-dark);
  background: #e7f1ff;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}
body.public-refreshed .public-association-events .event-side {
  grid-column: 3 !important;
  grid-row: 1 !important;
}
body.public-refreshed .public-association-events .event-actions a.details-button {
  min-height: 36px !important;
  border: 1px solid var(--public-blue) !important;
  border-radius: 999px !important;
  color: var(--public-blue-dark) !important;
  background: #fff !important;
}
body.public-refreshed .public-association-events .event-actions a.details-button:hover {
  color: #fff !important;
  background: var(--public-blue) !important;
}
body.public-refreshed .public-association-events .event-actions a:not(.details-button) {
  min-height: 28px !important;
  padding: 4px 8px !important;
  border: 0 !important;
  color: #52667f !important;
  background: transparent !important;
}
body.public-refreshed .public-association-events .event-actions {
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
}
body.public-refreshed .public-association-events .event-actions .details-button {
  grid-column: 1 / -1;
}
@media (min-width: 821px) {
  body.public-refreshed:has(.public-association-events) .event-directory.public-association-events .event-detail-card .event-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  body.public-refreshed:has(.public-association-events) .event-directory.public-association-events .event-detail-card .event-side {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }
}
body.public-refreshed .public-association-events .find-panel {
  color: #fff !important;
  border-color: #102f55 !important;
  background: linear-gradient(145deg, #102d51, #071a32) !important;
  box-shadow: 0 15px 32px rgba(8,20,32,.14) !important;
}
body.public-refreshed .public-association-events .find-panel h2 {
  color: #fff !important;
  border-bottom-color: #4da3ff;
  text-transform: uppercase !important;
}
body.public-refreshed .public-association-events .find-panel :is(label, legend) {
  color: #d9e6f5 !important;
}
body.public-refreshed .public-association-events .find-panel .reset-button {
  color: #fff !important;
  border-color: rgba(255,255,255,.4) !important;
  background: transparent !important;
}

/* Match the association results index: desktop table, labelled mobile cards. */
body.public-refreshed .public-results-index-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--public-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8,37,77,.045);
}
body.public-refreshed .public-results-index-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--public-ink);
  font-size: 12px;
}
body.public-refreshed .public-results-index-table thead tr {
  background: linear-gradient(135deg, var(--public-navy), #0b4f91);
}
body.public-refreshed .public-results-index-table th {
  padding: 13px 14px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .025em;
  text-align: left;
  text-transform: uppercase;
}
body.public-refreshed .public-results-index-table th:nth-child(4),
body.public-refreshed .public-results-index-table td:nth-child(4) { text-align: center; }
body.public-refreshed .public-results-index-table .public-result-row {
  display: table-row !important;
  border: 0 !important;
  background: #fff !important;
}
body.public-refreshed .public-results-index-table .public-result-row:hover { background: #f7faff !important; }
body.public-refreshed .public-results-index-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--public-line);
  vertical-align: middle;
}
body.public-refreshed .public-results-index-table tr:last-child td { border-bottom: 0; }
body.public-refreshed .result-class-badge {
  display: inline-flex;
  min-width: 38px;
  min-height: 23px;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: var(--public-blue-dark);
  background: #e7f1ff;
  font-size: 10px;
  font-weight: 900;
}
body.public-refreshed .result-event-link {
  display: block;
  color: var(--public-ink);
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}
body.public-refreshed .result-event-link:hover { color: var(--public-blue); }
body.public-refreshed .public-result-row td small {
  display: block;
  margin-top: 3px;
  color: var(--public-muted);
  font-size: 10px;
}
body.public-refreshed .public-result-row td .result-event-club {
  color: #40546a;
  font-size: 11px;
  font-weight: 700;
}
body.public-refreshed .result-row-action {
  display: inline-flex;
  width: 100%;
  min-height: 31px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-sizing: border-box;
  border: 1px solid #c9d8e7;
  border-radius: 3px;
  color: var(--public-blue-dark);
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
body.public-refreshed .public-results-index-wrap .empty-events { margin: 0 !important; border: 0 !important; }
body.public-refreshed .event-detail-card[hidden],
body.public-refreshed .public-result-row[hidden],
body.public-refreshed [data-results-card][hidden] {
  display: none !important;
}

body.public-refreshed :is(.find-panel, .results-filter-panel, .results-side-card) {
  display: block !important;
  padding: 22px !important;
  box-sizing: border-box;
  border: 1px solid var(--public-line) !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: 0 5px 18px rgba(8,37,77,.05) !important;
}
body.public-refreshed :is(.find-panel, .results-filter-panel) h2 {
  margin: 0 0 18px !important;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--public-blue);
  color: var(--public-navy) !important;
  font-size: 20px !important;
  text-transform: none !important;
}
body.public-refreshed :is(.find-panel, .results-filter-panel) label {
  display: grid !important;
  margin: 0 0 12px !important;
  gap: 6px !important;
  color: #4f6279 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}
body.public-refreshed :is(.find-panel, .results-filter-panel) :is(input, select) {
  width: 100% !important;
  min-height: 42px !important;
  padding: 9px 10px !important;
  box-sizing: border-box;
  border: 1px solid #cbd8e5 !important;
  border-radius: 4px !important;
  color: var(--public-ink);
  background: #fff !important;
  font-size: 13px !important;
}
body.public-refreshed :is(.public-filter-group, .results-filter-group) {
  margin: 16px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
body.public-refreshed :is(.public-filter-group, .results-filter-group) legend {
  margin-bottom: 8px;
  color: #4f6279;
  font-size: 11px;
  font-weight: 800;
}
body.public-refreshed .public-filter-buttons {
  display: flex !important;
  flex-wrap: wrap;
  gap: 5px !important;
}
body.public-refreshed .public-filter-buttons button {
  min-height: 32px !important;
  padding: 6px 8px !important;
  border: 1px solid #d2deea !important;
  border-radius: 4px !important;
  color: #455b75 !important;
  background: #f6f9fc !important;
  font-size: 10px !important;
  font-weight: 750 !important;
}
body.public-refreshed .public-filter-buttons button:is(.active, [aria-pressed="true"]) {
  color: #fff !important;
  border-color: var(--public-blue) !important;
  background: var(--public-blue) !important;
}
body.public-refreshed :is(#applyFilters, #resetFilters, #resetResultsFilters) {
  width: 100% !important;
  min-height: 40px !important;
  margin-top: 12px !important;
}
.public-filter-toggle { display: none; }

body.public-refreshed :is(.event-pagination, .results-pagination) {
  display: flex !important;
  margin-top: 18px !important;
  padding: 0 !important;
  justify-content: center;
  align-items: center;
  gap: 16px !important;
  border: 0 !important;
}
body.public-refreshed :is(.event-pagination, .results-pagination) button {
  min-width: 74px;
  min-height: 38px;
  border: 1px solid #cbd8e5;
  border-radius: 4px;
  color: var(--public-navy);
  background: #fff;
}
.public-refreshed .empty-events,
.public-refreshed .ranking-empty-state,
.public-refreshed .live-empty-state {
  padding: 28px !important;
  border: 1px solid var(--public-line) !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: var(--public-muted) !important;
}

/* Live and rankings */
body.public-refreshed .live-event-board,
body.public-refreshed .ranking-board { padding: 0 !important; }
body.public-refreshed .public-app-callout {
  display: flex !important;
  margin: 28px 0 0 !important;
  padding: 28px 32px !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0 !important;
  border-radius: 7px !important;
  color: #fff;
  background: linear-gradient(120deg, #061d42, #0a448c) !important;
}
body.public-refreshed .public-app-callout h2 { color: #fff !important; }
body.public-refreshed .public-app-callout p { color: #d6e4f7 !important; }
body.public-refreshed .ranking-tabs {
  display: flex !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  overflow-x: auto;
  gap: 7px !important;
  border: 0 !important;
  background: transparent !important;
}
body.public-refreshed .ranking-tabs a { flex: 0 0 auto; }
body.public-refreshed .ranking-table-wrap {
  max-width: 100% !important;
  overflow: auto !important;
  border: 1px solid var(--public-line) !important;
  border-radius: 7px !important;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
body.public-refreshed .ranking-table { margin: 0 !important; }

/* Detailed event pages retain every app feature in a wider association layout. */
body.public-refreshed main.detail-page {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 0 58px !important;
  box-sizing: border-box;
}
body.public-refreshed main.detail-page :is(.breadcrumb-nav, .event-hero-panel, .event-status-strip, .detail-content, .event-cta-panel) {
  width: min(1180px, calc(100% - 48px)) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
body.public-refreshed main.detail-page .breadcrumb-nav { margin-top: 22px !important; }
body.public-refreshed main.detail-page .event-hero-panel {
  margin-top: 12px !important;
  border-radius: 8px !important;
}
body.public-refreshed main.detail-page .event-status-strip {
  margin-top: 16px !important;
  overflow: hidden;
  border: 1px solid var(--public-line) !important;
  border-radius: 7px !important;
  background: #fff;
}
body.public-refreshed main.detail-page .detail-content {
  display: grid !important;
  margin-top: 24px !important;
  padding: 0 !important;
  grid-template-columns: minmax(0,1fr) 286px !important;
  gap: 30px !important;
  align-items: start;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.public-refreshed main.detail-page .detail-main {
  display: grid !important;
  grid-column: 1;
  gap: 16px !important;
}
body.public-refreshed main.detail-page .detail-aside {
  display: grid !important;
  grid-column: 2;
  gap: 16px !important;
}
body.public-refreshed main.detail-page :is(.detail-section, .detail-side-card, .event-action-panel) {
  border: 1px solid var(--public-line) !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: 0 5px 18px rgba(8,37,77,.045) !important;
}
body.public-refreshed main.detail-page .event-cta-panel { border-radius: 7px !important; }

/* Home page: preserve the app-first composition and make it reliable at every width. */
body.public-refreshed:has(.home-page) { background: #fff; }
body.public-refreshed .home-page {
  width: min(1320px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}
body.public-refreshed .app-first-hero {
  width: 100% !important;
  min-height: 680px !important;
  margin-left: 0 !important;
  border-radius: 0 !important;
}
body.public-refreshed .simple-hero-copy h1 { letter-spacing: -.045em !important; }
.public-hero-actions {
  display: flex;
  margin: 24px 0 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.public-hero-actions a {
  display: flex;
  min-height: 46px;
  padding: 12px 19px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #bdd0e4;
  border-radius: 5px;
  color: #173b63;
  background: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.public-hero-actions a:first-child {
  color: #fff;
  border-color: var(--public-blue);
  background: var(--public-blue);
}
body.public-refreshed .home-app-feature-strip a {
  display: grid;
  min-height: 105px;
  padding: 19px 14px;
  align-content: center;
  gap: 7px;
  box-sizing: border-box;
  color: inherit;
  text-align: center;
  text-decoration: none;
}
body.public-refreshed .home-app-feature-strip a:hover { background: #f1f6fc; }
body.public-refreshed .home-app-feature-strip small { color: var(--public-muted); line-height: 1.5; }

/* About, support and policy pages */
body.public-refreshed .public-about-grid {
  display: grid;
  margin: 26px 0;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
body.public-refreshed :is(.public-about-grid article, .public-support-card) {
  padding: 26px;
  border: 1px solid var(--public-line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(8,37,77,.045);
}
body.public-refreshed :is(.public-about-grid, .public-support-card) h2 {
  margin: 0 0 11px;
  color: var(--public-navy);
  font-size: 22px;
  line-height: 1.2;
}
body.public-refreshed :is(.public-about-grid, .public-support-card) p {
  color: var(--public-muted);
  font-size: 14px;
  line-height: 1.7;
}
body.public-refreshed .public-support-card { margin-bottom: 30px; scroll-margin-top: 90px; }
body.public-refreshed.privacy-page main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* Footer */
.public-footer {
  display: flex;
  width: 100% !important;
  margin: 36px 0 0 !important;
  padding: 34px max(24px, calc((100% - 1180px) / 2)) !important;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-sizing: border-box;
  color: #d7e4f3;
  background: #071f45;
}
.public-footer img {
  width: 180px;
  max-height: 48px;
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 4px;
  background: #fff;
  object-fit: contain;
}
.public-footer p { margin: 10px 0 0; color: #adbed2; font-size: 13px; }
.public-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.public-footer a { color: #e3edf8; font-size: 12px; text-decoration: none; }
.public-footer a:hover { text-decoration: underline; }

@media (max-width: 1040px) {
  body.public-refreshed .site-header.app-header { gap: 12px !important; padding-right: 18px !important; padding-left: 18px !important; }
  body.public-refreshed .site-header .brand-logo { width: 174px !important; }
  body.public-refreshed .site-header .main-nav a { padding: 0 7px !important; font-size: 10px !important; }
  body.public-refreshed .site-header.app-header .header-actions .outline-button { display: none !important; }
}

@media (max-width: 820px) {
  body.public-refreshed { padding-bottom: 68px !important; }
  body.public-refreshed .site-header.app-header {
    min-height: 66px !important;
    padding: 8px 14px !important;
    gap: 8px !important;
  }
  body.public-refreshed .site-header .brand-logo { width: 168px !important; }
  body.public-refreshed .site-header.app-header .header-actions { display: flex !important; margin-left: auto !important; }
  body.public-refreshed .site-header.app-header .header-actions .icon-button { width: 42px !important; height: 42px !important; }
  body.public-refreshed .site-header .main-nav {
    position: absolute !important;
    top: 100% !important;
    right: 10px !important;
    left: 10px !important;
    display: none !important;
    max-height: calc(100dvh - 145px);
    margin: 0 !important;
    padding: 10px !important;
    overflow: auto;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 6px !important;
    border: 1px solid var(--public-line);
    border-radius: 0 0 8px 8px;
    background: #fff !important;
    box-shadow: 0 18px 35px rgba(7,31,69,.17);
  }
  body.public-refreshed .site-header.public-menu-open .main-nav { display: grid !important; }
  body.public-refreshed .site-header .main-nav a {
    min-height: 45px !important;
    padding: 10px 12px !important;
    font-size: 12px !important;
  }
  body.public-refreshed .public-menu-toggle {
    display: grid !important;
    width: 42px;
    height: 42px;
    padding: 9px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid #cfdbe7;
    border-radius: 5px;
    color: var(--public-navy);
    background: #fff;
  }
  .public-menu-toggle svg { width: 22px; height: 22px; }
  body.public-refreshed .public-app-bottom-nav {
    position: fixed !important;
    z-index: 1300 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: grid !important;
    min-height: 64px !important;
    padding: 5px 5px max(5px, env(safe-area-inset-bottom)) !important;
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
    box-sizing: border-box;
    border: 0 !important;
    border-top: 1px solid #d5e0eb !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 -5px 18px rgba(7,31,69,.08) !important;
  }
  body.public-refreshed .public-app-bottom-nav a {
    display: grid !important;
    min-height: 50px !important;
    padding: 4px 1px !important;
    place-items: center;
    align-content: center;
    gap: 3px !important;
    border: 0 !important;
    border-radius: 4px !important;
    color: #64758a !important;
    background: transparent !important;
    text-decoration: none;
  }
  body.public-refreshed .public-app-bottom-nav a.is-active {
    color: var(--public-blue) !important;
    background: #edf5ff !important;
  }
  body.public-refreshed .public-app-bottom-nav svg { display: block; width: 20px; height: 20px; }
  body.public-refreshed .public-app-bottom-nav strong {
    overflow: hidden;
    max-width: 100%;
    font-size: 8px !important;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.public-refreshed :is(.listing-page, .ranking-page) {
    width: 100% !important;
    padding: 0 14px 34px !important;
  }
  body.public-refreshed :is(.listing-hero, .ranking-hero) {
    min-height: 190px !important;
    margin: 0 -14px !important;
    padding: 28px 22px !important;
    border-radius: 0 !important;
  }
  body.public-refreshed :is(.listing-hero, .ranking-hero)::before { right: -70px; bottom: -115px; }
  body.public-refreshed :is(.listing-hero, .ranking-hero) h1 { max-width: 85%; font-size: 33px !important; }
  body.public-refreshed :is(.listing-hero, .ranking-hero) > p:not(.eyebrow) { max-width: 88% !important; font-size: 13px !important; }
  body.public-refreshed .app-page-stat {
    position: static !important;
    width: fit-content !important;
    min-width: 0 !important;
    margin-top: 16px !important;
    padding: 7px 10px !important;
  }
  body.public-refreshed .app-page-stat strong { font-size: 18px !important; }
  body.public-refreshed :is(.event-directory, .results-listing-board, .ranking-board) { margin-top: 18px !important; }
  body.public-refreshed .event-directory.public-association-events,
  body.public-refreshed .public-association-results-layout {
    display: flex !important;
    flex-direction: column;
    gap: 16px !important;
  }
  body.public-refreshed .association-events-sidebar {
    width: 100%;
    order: -1;
  }
  body.public-refreshed .association-results-sidebar { width: 100%; order: -1; }
  body.public-refreshed .association-events-main,
  body.public-refreshed .association-results-main { width: 100%; }

  body.public-refreshed .public-association-events .event-list-detailed {
    border-radius: 5px !important;
  }
  body.public-refreshed .public-association-events .event-detail-card {
    min-height: 0 !important;
    padding: 16px !important;
    grid-template-columns: 64px minmax(0,1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 12px 14px !important;
  }
  body.public-refreshed .public-association-events .event-date {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 64px !important;
    min-height: 84px !important;
  }
  body.public-refreshed .public-association-events .event-date strong { font-size: 34px !important; }
  body.public-refreshed .public-association-events .event-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  body.public-refreshed .public-association-events .event-copy h2 { font-size: 16px !important; }
  body.public-refreshed .public-association-events .event-side {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }
  body.public-refreshed .public-association-events .event-actions {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  body.public-refreshed .public-association-events .event-actions a.details-button {
    grid-column: 1 / -1;
  }

  body.public-refreshed .public-results-index-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  body.public-refreshed .public-results-index-table,
  body.public-refreshed .public-results-index-table tbody {
    display: block;
    width: 100%;
    min-width: 0;
  }
  body.public-refreshed .public-results-index-table thead { display: none; }
  body.public-refreshed .public-results-index-table tbody {
    display: grid;
    gap: 10px;
  }
  body.public-refreshed .public-results-index-table .public-result-row {
    display: block !important;
    overflow: hidden;
    border: 1px solid var(--public-line) !important;
    border-left: 4px solid var(--public-blue) !important;
    border-radius: 5px !important;
    box-shadow: 0 6px 18px rgba(8,37,77,.05);
  }
  body.public-refreshed .public-results-index-table td,
  body.public-refreshed .public-results-index-table td:nth-child(5) {
    display: grid;
    width: 100%;
    padding: 9px 12px;
    grid-template-columns: 72px minmax(0,1fr);
    align-items: start;
    gap: 12px;
    box-sizing: border-box;
    border-bottom: 1px solid #e9eef4;
    text-align: left;
  }
  body.public-refreshed .public-results-index-table td::before {
    color: #68798d;
    content: attr(data-label);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
  }
  body.public-refreshed .public-results-index-table td:last-child {
    border-bottom: 0;
    background: #f3f7fc;
  }
  body.public-refreshed .result-row-action { width: auto; justify-content: flex-start; }

  body.public-refreshed .find-panel { padding: 17px !important; }
  body.public-refreshed .find-panel h2 { margin-bottom: 10px !important; padding-bottom: 9px; font-size: 18px !important; }
  body.public-refreshed .public-filter-toggle {
    display: block;
    width: 100%;
    min-height: 42px;
    margin: 0 0 12px;
    border: 1px solid #c5d4e3;
    border-radius: 4px;
    color: var(--public-blue-dark);
    background: #edf5ff;
    font-weight: 800;
  }
  body.public-refreshed .find-panel > :not(h2):not(.public-filter-toggle) { display: none !important; }
  body.public-refreshed .find-panel > label:first-of-type { display: grid !important; }
  body.public-refreshed .find-panel.filters-open > :not(h2):not(.public-filter-toggle) { display: grid !important; }
  body.public-refreshed .find-panel.filters-open > :is(fieldset) { display: block !important; }
  body.public-refreshed .find-panel.filters-open > :is(button) { display: block !important; }

  body.public-refreshed #toggleResultsFilters {
    display: block !important;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid #c5d4e3;
    border-radius: 4px;
    color: var(--public-blue-dark);
    background: #edf5ff;
    font-weight: 800;
  }
  body.public-refreshed .association-results-help { display: none !important; }
  body.public-refreshed :is(.event-tabs, .results-listing-header) {
    min-height: 0;
    margin-bottom: 13px !important;
    align-items: center;
    flex-wrap: wrap;
  }
  body.public-refreshed .event-tabs > span { width: 100%; margin: 2px 0 0; }
  body.public-refreshed .results-listing-header > div:first-child { width: 100%; }
  body.public-refreshed .results-search-row { width: 100%; }
  body.public-refreshed .results-search-row input { width: auto !important; flex: 1; min-width: 0; }

  body.public-refreshed .event-detail-card {
    min-height: 0 !important;
    padding: 13px !important;
    grid-template-columns: 56px minmax(0,1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    gap: 10px 12px !important;
  }
  body.public-refreshed .event-date {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 56px !important;
    min-height: 72px !important;
  }
  body.public-refreshed .event-thumb,
  body.public-refreshed .event-club-mark { display: none !important; }
  body.public-refreshed .event-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  body.public-refreshed .event-copy h2 { font-size: 15px !important; }
  body.public-refreshed .event-copy > p:not(.event-location):not(.event-range) { display: none !important; }
  body.public-refreshed .event-side {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
  }
  body.public-refreshed .event-actions {
    display: flex !important;
    width: 100% !important;
    flex-wrap: wrap;
  }
  body.public-refreshed .event-actions a { min-width: 105px; flex: 1; }
  body.public-refreshed .public-class-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px !important;
  }
  body.public-refreshed .public-class-filters button { flex: 0 0 auto; }
  body.public-refreshed .public-app-callout {
    display: grid !important;
    padding: 24px 20px !important;
  }

  body.public-refreshed main.detail-page { padding-bottom: 30px !important; }
  body.public-refreshed main.detail-page :is(.breadcrumb-nav, .event-hero-panel, .event-status-strip, .detail-content, .event-cta-panel) {
    width: calc(100% - 28px) !important;
  }
  body.public-refreshed main.detail-page .detail-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body.public-refreshed main.detail-page .detail-main,
  body.public-refreshed main.detail-page .detail-aside { grid-column: 1; }
  body.public-refreshed main.detail-page .event-status-strip { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  body.public-refreshed main.detail-page :is(.event-overview-grid, .event-lower-grid) { grid-template-columns: 1fr !important; }

  body.public-refreshed .home-page { width: 100% !important; }
  body.public-refreshed .app-first-hero {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 32px 20px 30px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    background: radial-gradient(circle at 90% 8%, #d6eaff, transparent 44%), linear-gradient(180deg,#eef7ff,#fbfdff) !important;
  }
  body.public-refreshed .app-first-hero::before,
  body.public-refreshed .app-first-hero::after { display: none !important; }
  body.public-refreshed .app-first-hero .simple-hero-copy {
    position: static !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  body.public-refreshed .app-first-hero .simple-hero-copy h1 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: clamp(34px, 9vw, 44px) !important;
    line-height: 1.07 !important;
  }
  body.public-refreshed .app-first-hero .simple-hero-copy > span {
    display: block !important;
    margin-top: 17px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  body.public-refreshed .app-first-hero .public-hero-actions {
    display: grid !important;
    margin: 22px 0 0 !important;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  body.public-refreshed .app-first-hero .public-hero-actions a { min-width: 0; padding: 10px 8px; text-align: center; }
  body.public-refreshed .app-first-hero .app-first-downloads {
    display: grid !important;
    margin-top: 18px !important;
    padding-top: 18px !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 8px !important;
    border-top: 1px solid #d5e2ee;
  }
  body.public-refreshed .app-first-hero .app-first-downloads a { min-width: 0 !important; padding: 7px !important; }
  body.public-refreshed .app-first-hero .app-first-downloads strong { font-size: 11px !important; white-space: nowrap; }
  body.public-refreshed .app-first-hero .app-first-phone { display: none !important; }
  body.public-refreshed .home-app-feature-strip {
    display: grid !important;
    width: calc(100% - 28px) !important;
    margin: 0 auto 18px !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
  body.public-refreshed .home-app-feature-strip a { min-height: 104px; padding: 15px 10px; }
  body.public-refreshed .public-about-grid { grid-template-columns: 1fr; gap: 12px; }
  body.public-refreshed :is(.public-about-grid article, .public-support-card) { padding: 20px; }
  body.public-refreshed.privacy-page main { width: calc(100% - 28px); }

  .public-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px !important;
  }
  .public-footer nav { gap: 14px 18px; }
}

/* Association content system for every public page after the home page. */
body.public-refreshed.public-inner-page {
  color: #26384d;
  background: #fff !important;
}
body.public-refreshed.public-inner-page :is(.listing-page, .ranking-page) {
  width: min(1180px, calc(100% - 48px)) !important;
  padding-top: 0 !important;
  background: #fff !important;
}
body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero) {
  position: relative !important;
  width: 100vw !important;
  min-height: 0 !important;
  margin: 0 0 34px calc(50% - 50vw) !important;
  padding: 34px max(24px, calc((100vw - 1180px) / 2)) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--public-navy) !important;
  background: #f3f5f2 !important;
  box-shadow: inset 0 -1px #e2e6e0 !important;
}
body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero)::before,
body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero)::after {
  display: none !important;
}
body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero) .eyebrow {
  margin: 0 0 7px !important;
  color: var(--public-blue) !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}
body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero) h1 {
  max-width: 800px !important;
  margin: 0 0 8px !important;
  color: var(--public-navy) !important;
  font-size: clamp(25px, 3vw, 34px) !important;
  font-weight: 760 !important;
  line-height: 1.18 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
}
body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero) > p:not(.eyebrow),
body.public-refreshed.public-inner-page .detail-hero > div > p:last-child {
  max-width: 760px !important;
  margin: 0 !important;
  color: #667486 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
body.public-refreshed.public-inner-page .app-page-stat {
  right: max(24px, calc((100vw - 1180px) / 2)) !important;
  bottom: 30px !important;
  padding: 9px 13px !important;
  border: 1px solid #d8dfd8 !important;
  color: var(--public-navy) !important;
  background: #fff !important;
  box-shadow: none !important;
}
body.public-refreshed.public-inner-page .app-page-stat strong {
  color: var(--public-navy) !important;
}
body.public-refreshed.public-inner-page .app-page-stat :is(span, small) {
  color: #667486 !important;
}
body.public-refreshed.public-inner-page :is(.event-directory, .results-listing-board, .ranking-board) {
  margin-top: 0 !important;
}
body.public-refreshed.public-inner-page :is(.event-detail-card, .public-results-index-wrap, .ranking-table-wrap, .find-panel, .results-filter-panel, .results-side-card, .detail-section, .detail-side-card, .event-action-panel, .results-board, .privacy-content) {
  border-color: #dfe5e8 !important;
  border-radius: 3px !important;
  box-shadow: none !important;
}
body.public-refreshed.public-inner-page :is(.results-listing-header, .event-tabs) {
  border-bottom-color: #dfe5e8 !important;
}
body.public-refreshed.public-inner-page :is(.find-panel, .results-filter-panel, .results-side-card) {
  color: #26384d !important;
  background: #fff !important;
}
body.public-refreshed.public-inner-page :is(.find-panel, .results-filter-panel, .results-side-card) h2 {
  color: var(--public-navy) !important;
  border-bottom-color: #dfe5e8 !important;
}
body.public-refreshed.public-inner-page :is(.find-panel, .results-filter-panel) :is(label, legend) {
  color: #526276 !important;
}
body.public-refreshed.public-inner-page :is(.find-panel, .results-filter-panel) :is(input, select) {
  color: #20334a !important;
  border-color: #ccd7df !important;
  background: #fff !important;
}
body.public-refreshed.public-inner-page .public-filter-buttons button {
  color: #31506f !important;
  border-color: #ccd7df !important;
  background: #f7f9fb !important;
}
body.public-refreshed.public-inner-page .public-filter-buttons button:is(.active, [aria-pressed="true"]) {
  color: #fff !important;
  border-color: var(--public-blue) !important;
  background: var(--public-blue) !important;
}
body.public-refreshed.public-inner-page main.detail-page .breadcrumb-nav,
body.public-refreshed.public-inner-page .results-page .breadcrumb-nav {
  margin-top: 24px !important;
  margin-bottom: 18px !important;
  color: #718092 !important;
  font-size: 12px !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-hero-panel,
body.public-refreshed.public-inner-page .results-page .results-hero {
  min-height: 0 !important;
  padding: 30px 34px !important;
  border: 0 !important;
  border-radius: 3px !important;
  color: #fff !important;
  background: linear-gradient(120deg, #0872cf, #07519b) !important;
  box-shadow: none !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-hero-panel::before,
body.public-refreshed.public-inner-page .results-page .results-hero::before,
body.public-refreshed.public-inner-page .results-page .results-hero::after {
  display: none !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-hero-panel h1,
body.public-refreshed.public-inner-page .results-page .results-hero h1 {
  max-width: 880px !important;
  color: #fff !important;
  font-size: clamp(27px, 3.5vw, 42px) !important;
  font-weight: 650 !important;
  line-height: 1.18 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-hero-panel :is(p, span),
body.public-refreshed.public-inner-page .results-page .results-hero :is(p, span) {
  color: #e7f3ff !important;
}
body.public-refreshed.public-inner-page main.detail-page .organiser-logo-line {
  display: block;
  margin: 10px 0 14px;
  padding-bottom: 14px;
}
body.public-refreshed.public-inner-page main.detail-page .organiser-logo-line.has-logo {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
}
body.public-refreshed.public-inner-page main.detail-page .organiser-logo-line strong {
  display: block;
  min-width: 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
body.public-refreshed.public-inner-page main.detail-page .organiser-class {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
body.public-refreshed.public-inner-page main.detail-page .organiser-class span {
  display: block;
  color: #bdcbe0 !important;
  font-size: 11px;
}
body.public-refreshed.public-inner-page main.detail-page .organiser-class strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
body.public-refreshed.public-inner-page main.detail-page .organiser-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.public-refreshed.public-inner-page main.detail-page .event-document-list {
  display: grid;
  gap: 8px;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-link {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px !important;
  border: 1px solid #d9e4f0;
  border-radius: 5px;
  color: #14213d !important;
  background: #f8fbff;
  text-decoration: none;
  transition: border-color .16s ease, background-color .16s ease;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-link:hover {
  border-color: #8db8e4;
  background: #eef6ff;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-icon {
  display: grid !important;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0 !important;
  place-items: center;
  border: 0 !important;
  border-radius: 5px;
  color: var(--public-blue) !important;
  background: #e5f1ff !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-copy {
  display: block !important;
  min-width: 0;
  padding: 0 !important;
  color: inherit !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-copy strong {
  display: block;
  margin: 0;
  color: #14213d;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
  text-transform: none;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-copy small {
  display: block;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: #6b7a90;
  background: transparent !important;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .02em;
  line-height: 1.3;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-action {
  display: inline-flex !important;
  min-height: 0;
  padding: 0 !important;
  align-items: center;
  gap: 5px;
  border: 0 !important;
  color: var(--public-blue) !important;
  background: transparent !important;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-link.is-compact {
  grid-template-columns: 30px minmax(0, 1fr);
  padding: 8px !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-link.is-compact .event-document-icon {
  width: 30px;
  height: 30px;
  min-height: 30px;
}
body.public-refreshed.public-inner-page main.detail-page .event-document-link.is-compact .event-document-action {
  grid-column: 2;
  justify-self: start;
}
body.public-refreshed.public-inner-page .results-page {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 0 58px !important;
  background: #fff !important;
}
body.public-refreshed.public-inner-page main.detail-page {
  background: #fff !important;
}
body.public-refreshed.public-inner-page main.detail-page .detail-aside {
  grid-template-columns: 1fr !important;
}
body.public-refreshed.public-inner-page .results-page :is(.breadcrumb-nav, .results-hero, .results-layout) {
  width: min(1180px, calc(100% - 48px)) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
body.public-refreshed.public-inner-page .privacy-layout {
  margin-top: 0 !important;
}

.public-footer,
body.public-refreshed footer {
  justify-content: center !important;
  flex-direction: column;
  min-height: 92px;
  margin-top: 34px !important;
  padding: 22px 24px !important;
  text-align: center;
}
.public-footer > div { display: grid; justify-items: center; }
.public-footer nav,
body.public-refreshed footer .footer-links { display: none !important; }
.public-footer p,
body.public-refreshed footer .privacy-footer-copy { margin: 8px 0 0 !important; }
.public-footer .public-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.public-footer .public-privacy-link,
.public-footer .public-contact-link {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  color: #e3edf8;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}
.public-footer .public-privacy-link:hover,
.public-footer .public-contact-link:hover { border-color: rgba(255,255,255,.62); text-decoration: none; }

@media (max-width: 820px) {
  body.public-refreshed.public-inner-page :is(.listing-page, .ranking-page) {
    width: 100% !important;
    padding: 0 14px 32px !important;
  }
  body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero) {
    width: 100vw !important;
    margin: 0 0 22px calc(50% - 50vw) !important;
    padding: 25px 18px !important;
  }
  body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero) h1 {
    max-width: 100% !important;
    font-size: 27px !important;
  }
  body.public-refreshed.public-inner-page .app-page-stat {
    position: static !important;
    margin-top: 14px !important;
  }
  body.public-refreshed.public-inner-page main.detail-page :is(.breadcrumb-nav, .event-hero-panel, .event-status-strip, .detail-content, .event-cta-panel),
  body.public-refreshed.public-inner-page .results-page :is(.breadcrumb-nav, .results-hero, .results-layout) {
    width: calc(100% - 28px) !important;
  }
  body.public-refreshed.public-inner-page main.detail-page .event-hero-panel,
  body.public-refreshed.public-inner-page .results-page .results-hero {
    padding: 23px 20px !important;
  }
  .public-footer,
  body.public-refreshed footer {
    min-height: 78px;
    margin-top: 24px !important;
    padding: 18px 16px calc(82px + env(safe-area-inset-bottom)) !important;
    align-items: center !important;
  }
}

/* Upcoming event list: plain blue dates and balanced bordered rows. */
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-tabs {
  min-height: 54px !important;
  margin: 0 0 14px !important;
  padding: 0 2px 12px !important;
  align-items: center !important;
  border-bottom: 1px solid #dfe5e8 !important;
  background: transparent !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-tabs h2 {
  margin: 0 !important;
  color: var(--public-navy) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-tabs h2::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 9px;
  background: var(--public-blue);
  content: "";
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-list-detailed {
  overflow: hidden !important;
  border: 1px solid #d9e1e8 !important;
  border-radius: 3px !important;
  box-shadow: none !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card {
  min-height: 132px !important;
  padding: 20px 22px !important;
  grid-template-columns: 78px minmax(0,1fr) 150px !important;
  gap: 20px !important;
  border: 0 !important;
  border-bottom: 1px solid #d9e1e8 !important;
  border-radius: 0 !important;
  background: #fff !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card:last-of-type {
  border-bottom: 0 !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card .event-date {
  display: grid !important;
  width: 78px !important;
  height: auto !important;
  min-height: 76px !important;
  margin: 0 !important;
  padding: 2px 18px 2px 0 !important;
  align-self: center !important;
  align-content: center !important;
  box-sizing: border-box !important;
  border: 0 !important;
  border-right: 1px solid #d9e1e8 !important;
  border-radius: 0 !important;
  color: var(--public-blue) !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card .event-date strong {
  color: var(--public-blue) !important;
  font-size: 34px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card .event-date :is(span, small) {
  margin-top: 5px !important;
  color: var(--public-blue-dark) !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card .event-copy {
  align-self: center !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-actions a.details-button {
  box-shadow: none !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-actions a.enter-button {
  display: inline-flex !important;
  min-height: 36px !important;
  padding: 8px 13px !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  border: 1px solid var(--public-blue) !important;
  border-radius: 3px !important;
  color: #fff !important;
  background: var(--public-blue) !important;
  box-shadow: none !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-actions a.enter-button:hover {
  border-color: var(--public-blue-dark) !important;
  background: var(--public-blue-dark) !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .listing-hero .app-page-stat {
  min-width: 224px !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  white-space: nowrap !important;
}
body.public-refreshed.public-inner-page:has(.public-association-events) .listing-hero .app-page-stat :is(span, small) {
  display: inline !important;
  width: auto !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

@media (max-width: 820px) {
  body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-tabs {
    min-height: 0 !important;
    padding: 0 0 12px !important;
  }
  body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-tabs h2 {
    font-size: 18px !important;
  }
  body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-tabs > span {
    width: auto !important;
    margin-left: auto !important;
  }
  body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-list-detailed {
    border-radius: 3px !important;
  }
  body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card {
    padding: 16px !important;
    grid-template-columns: 68px minmax(0,1fr) !important;
    gap: 13px 15px !important;
  }
  body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card .event-date {
    width: 68px !important;
    min-height: 70px !important;
    padding-right: 13px !important;
  }
  body.public-refreshed.public-inner-page:has(.public-association-events) .public-association-events .event-detail-card .event-date strong {
    font-size: 30px !important;
  }
}

/* Association ranking board. */
body.public-refreshed.public-inner-page .public-association-rankings .results-listing-header {
  margin: 0 0 20px !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid #dfe5e8 !important;
}
body.public-refreshed.public-inner-page .public-association-rankings .results-listing-header h2 {
  margin: 0 !important;
  color: var(--public-navy) !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}
body.public-refreshed.public-inner-page .public-association-rankings .results-listing-header h2::after {
  display: block !important;
  width: 44px !important;
  height: 3px !important;
  margin-top: 11px !important;
  background: var(--public-blue) !important;
  content: "" !important;
}
body.public-refreshed.public-inner-page .ranking-toolbar {
  display: flex !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  border: 0 !important;
  background: transparent !important;
}
body.public-refreshed.public-inner-page .ranking-toolbar .ranking-tabs {
  margin: 0 !important;
  padding: 0 !important;
  flex: 1;
}
body.public-refreshed.public-inner-page .ranking-toolbar .ranking-tabs a {
  min-height: 40px !important;
  padding: 8px 13px !important;
  border: 1px solid #ccd7df !important;
  border-radius: 3px !important;
  color: #31506f !important;
  background: #fff !important;
  box-shadow: none !important;
}
body.public-refreshed.public-inner-page .ranking-toolbar .ranking-tabs a.active {
  color: #fff !important;
  border-color: var(--public-blue) !important;
  background: var(--public-blue) !important;
}
body.public-refreshed.public-inner-page .ranking-toolbar .ranking-tabs a.active strong {
  color: var(--public-blue-dark) !important;
  background: #fff !important;
}
body.public-refreshed.public-inner-page .ranking-toolbar .ranking-tabs strong:empty {
  display: none !important;
}
body.public-refreshed.public-inner-page .ranking-search {
  display: flex;
  align-items: end;
  gap: 7px;
}
body.public-refreshed.public-inner-page .ranking-search label {
  display: grid;
  gap: 5px;
  color: #526276;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
body.public-refreshed.public-inner-page .ranking-search input {
  width: 190px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ccd7df;
  border-radius: 3px;
  color: #20334a;
  background: #fff;
}
body.public-refreshed.public-inner-page .ranking-search button,
body.public-refreshed.public-inner-page .ranking-search > a {
  display: inline-flex;
  height: 40px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid var(--public-blue);
  border-radius: 3px;
  color: #fff;
  background: var(--public-blue);
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}
body.public-refreshed.public-inner-page .ranking-search > a {
  color: #31506f;
  border-color: #ccd7df;
  background: #fff;
}
body.public-refreshed.public-inner-page .ranking-table-panel {
  overflow: hidden;
  border: 1px solid #dfe5e8;
  border-radius: 3px;
  background: #fff;
}
body.public-refreshed.public-inner-page .ranking-table-panel .ranking-table-wrap {
  overflow-x: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
}
body.public-refreshed.public-inner-page .association-ranking-table {
  table-layout: fixed;
}
body.public-refreshed.public-inner-page .association-ranking-table :is(th, td) {
  height: 52px !important;
  padding: 9px 12px !important;
  box-sizing: border-box;
}
body.public-refreshed.public-inner-page .association-ranking-table th {
  color: #fff !important;
  border-color: rgba(255,255,255,.12) !important;
  background: var(--public-navy) !important;
  font-size: 9px !important;
  text-transform: uppercase !important;
}
body.public-refreshed.public-inner-page .association-ranking-table tbody tr:nth-child(even) td {
  background: #f7f9fb;
}
body.public-refreshed.public-inner-page .association-ranking-table :is(th, td):nth-child(-n+4) {
  position: sticky;
  z-index: 2;
  background: #fff;
}
body.public-refreshed.public-inner-page .association-ranking-table th:nth-child(-n+4) {
  z-index: 4;
  background: var(--public-navy) !important;
}
body.public-refreshed.public-inner-page .association-ranking-table :is(th, td):nth-child(1) { left: 0; width: 70px; }
body.public-refreshed.public-inner-page .association-ranking-table :is(th, td):nth-child(2) { left: 70px; width: 260px; }
body.public-refreshed.public-inner-page .association-ranking-table :is(th, td):nth-child(3) { left: 330px; width: 90px; }
body.public-refreshed.public-inner-page .association-ranking-table :is(th, td):nth-child(4) {
  left: 420px;
  width: 110px;
  border-right: 1px solid #d7e0e7;
  box-shadow: 5px 0 8px rgba(7,31,69,.04);
}
body.public-refreshed.public-inner-page .association-ranking-table tbody tr:nth-child(even) td:nth-child(-n+4) {
  background: #f7f9fb;
}
body.public-refreshed.public-inner-page .ranking-rank-cell {
  color: var(--public-navy);
  font-weight: 850;
}
body.public-refreshed.public-inner-page .ranking-rank-cell span { color: #d59a12; }
body.public-refreshed.public-inner-page .ranking-sailor-identity,
body.public-refreshed.public-inner-page .ranking-total-cell {
  display: grid;
  gap: 2px;
}
body.public-refreshed.public-inner-page .ranking-sailor-identity strong { color: var(--public-navy); }
body.public-refreshed.public-inner-page :is(.ranking-sailor-identity, .ranking-total-cell) small {
  color: #718092;
  font-size: 9px;
  font-weight: 650;
}
body.public-refreshed.public-inner-page .ranking-table-footer {
  display: flex;
  min-height: 58px;
  padding: 10px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-sizing: border-box;
  border-top: 1px solid #dfe5e8;
  color: #667486;
  background: #f8fafb;
  font-size: 11px;
}
body.public-refreshed.public-inner-page .ranking-pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
body.public-refreshed.public-inner-page .ranking-pagination a,
body.public-refreshed.public-inner-page .ranking-pagination span {
  display: grid;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid #ccd7df;
  border-radius: 3px;
  color: #31506f;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}
body.public-refreshed.public-inner-page .ranking-pagination a.active {
  color: #fff;
  border-color: var(--public-blue);
  background: var(--public-blue);
}
body.public-refreshed.public-inner-page .ranking-pagination a.disabled {
  opacity: .4;
  pointer-events: none;
}
body.public-refreshed.public-inner-page .ranking-footnote {
  margin: 12px 0 0;
  color: #718092;
  font-size: 11px;
}

/* Results detail tables follow the association result table presentation. */
body.public-refreshed .results-page .public-results-fleet {
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
}
body.public-refreshed .results-page .public-results-fleet-header {
  display: flex;
  min-height: 58px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid #dfe4eb;
  background: #fff;
}
body.public-refreshed .results-page .public-results-fleet-header h3 {
  margin: 0;
  color: var(--public-navy);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
body.public-refreshed .results-page .public-results-fleet-header span { color: #657083; font-size: 11px; }
body.public-refreshed .results-page .public-results-table-scroll {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  scrollbar-color: var(--public-blue) #e8eef6;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
body.public-refreshed .results-page .public-live-results-table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: #17233d;
  background: #fff;
  font-size: 12px;
}
body.public-refreshed .results-page .public-live-results-table th,
body.public-refreshed .results-page .public-live-results-table td {
  min-width: 0;
  padding: 11px 6px;
  box-sizing: border-box;
  border: 0;
  border-right: 1px solid #e1e7ef;
  border-bottom: 1px solid #dfe4eb;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
body.public-refreshed .results-page .public-live-results-table thead tr { background: linear-gradient(135deg, #071f45, #075fd8); }
body.public-refreshed .results-page .public-live-results-table thead th {
  position: sticky;
  z-index: 2;
  top: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  color: #fff;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
body.public-refreshed .results-page .public-live-results-table thead th:nth-child(-n+5) { background: #071f45; }
body.public-refreshed .results-page .public-live-results-table thead th:first-child { border-left: 4px solid #f1bf2b; }
body.public-refreshed .results-page .public-live-results-table thead th:nth-child(1) { width: 54px; }
body.public-refreshed .results-page .public-live-results-table thead th:nth-child(2) { width: 175px; }
body.public-refreshed .results-page .public-live-results-table thead th:nth-child(3) { width: 120px; }
body.public-refreshed .results-page .public-live-results-table thead th:nth-child(4),
body.public-refreshed .results-page .public-live-results-table thead th:nth-child(5) { width: 60px; }
body.public-refreshed .results-page .public-live-results-table tbody tr:nth-child(even) > * { background-color: #f6f8fb; }
body.public-refreshed .results-page .public-live-results-table tbody tr:hover > * { background-color: #edf5ff; }
body.public-refreshed .results-page .public-live-results-table tbody tr:last-child > * { border-bottom: 0; }
body.public-refreshed .results-page .public-live-results-table .public-results-position {
  width: 54px;
  color: var(--public-navy);
  background: #eef4fb;
  font-size: 15px;
  font-weight: 900;
}
body.public-refreshed .results-page .public-live-results-table .club-competitor {
  width: 175px;
  text-align: left;
}
body.public-refreshed .results-page .public-live-results-table .club-competitor strong {
  display: block;
  color: var(--public-navy);
  font-size: 13px;
}
body.public-refreshed .results-page .public-live-results-table .public-results-sail {
  width: 120px;
  text-align: left;
}
body.public-refreshed .results-page .public-live-results-table .public-results-sail > strong {
  display: block;
  color: var(--public-blue-dark);
}
body.public-refreshed .results-page .public-live-results-table small {
  display: block;
  margin-top: 4px;
  color: #657083;
  font-size: 10px;
  font-weight: 500;
}
body.public-refreshed .results-page .public-live-results-table .club-score-total {
  width: 60px;
  color: var(--public-navy);
  background: #e8f1fc;
  font-weight: 900;
}
body.public-refreshed .results-page .public-live-results-table .club-race-score { color: #344456; }
body.public-refreshed .results-page .public-results-fleet.is-wide-results .public-live-results-table {
  width: max-content;
  min-width: 100%;
  table-layout: auto;
}
body.public-refreshed .results-page .public-results-fleet.is-wide-results .public-live-results-table .club-race-score,
body.public-refreshed .results-page .public-results-fleet.is-wide-results .public-live-results-table thead th:nth-child(n+6) {
  min-width: 46px;
}
body.public-refreshed .results-page .public-live-results-table .club-race-score .is-first {
  display: inline-grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--public-blue);
  font-weight: 900;
}
body.public-refreshed .results-page .public-live-results-table .club-race-score small {
  color: #a26f00;
  font-size: 8px;
  font-weight: 900;
}
@media (max-width: 700px) {
  body.public-refreshed .results-page .public-results-fleet { border-radius: 3px; }
  body.public-refreshed .results-page .public-results-fleet-header { min-height: 54px; padding: 0 14px; }
  body.public-refreshed .results-page .public-results-fleet-header h3 { font-size: 16px; }
  body.public-refreshed .results-page .public-results-fleet-header span { display: none; }
  body.public-refreshed .results-page .public-live-results-table th,
  body.public-refreshed .results-page .public-live-results-table td { padding: 10px 6px; }
  body.public-refreshed .results-page .public-live-results-table .club-competitor { width: 155px; }
}

@media (max-width: 820px) {
  body.public-refreshed.public-inner-page .ranking-toolbar {
    align-items: stretch !important;
    flex-direction: column;
    gap: 12px !important;
  }
  body.public-refreshed.public-inner-page .ranking-search { width: 100%; }
  body.public-refreshed.public-inner-page .ranking-search label { flex: 1; }
  body.public-refreshed.public-inner-page .ranking-search input { width: 100%; }
  body.public-refreshed.public-inner-page .ranking-table-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  body.public-refreshed.public-inner-page .ranking-pagination {
    max-width: 100%;
    overflow-x: auto;
  }
}

/* App preview artwork carried consistently by every public-page hero. */
body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero),
body.public-refreshed.public-inner-page main.detail-page .event-hero-panel,
body.public-refreshed.public-inner-page .results-page .results-hero {
  min-height: 190px !important;
  padding-right: max(175px, calc((100vw - 920px) / 2)) !important;
}
body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero)::after,
body.public-refreshed.public-inner-page main.detail-page .event-hero-panel::after,
body.public-refreshed.public-inner-page .results-page .results-hero::after {
  position: absolute !important;
  z-index: 2 !important;
  top: 50% !important;
  right: max(24px, calc((100vw - 1180px) / 2)) !important;
  display: block !important;
  width: 104px !important;
  height: 158px !important;
  border: 4px solid #122033 !important;
  border-radius: 17px !important;
  content: "" !important;
  opacity: 1 !important;
  background: #fff url('../../images/app-coming-events.jpg') top center / cover no-repeat !important;
  box-shadow: 0 14px 28px rgba(7,31,69,.2) !important;
  transform: translateY(-50%) rotate(3deg) !important;
  pointer-events: none !important;
}
body.public-refreshed.public-inner-page .ranking-hero::after {
  background-image: url('../../images/app-rankings.jpg') !important;
}
body.public-refreshed.public-inner-page .app-page-stat {
  right: max(158px, calc((100vw - 920px) / 2)) !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-hero-panel,
body.public-refreshed.public-inner-page .results-page .results-hero {
  padding-right: 175px !important;
}
body.public-refreshed.public-inner-page main.detail-page .event-hero-panel::after,
body.public-refreshed.public-inner-page .results-page .results-hero::after {
  right: 28px !important;
}

@media (max-width: 820px) {
  body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero),
  body.public-refreshed.public-inner-page main.detail-page .event-hero-panel,
  body.public-refreshed.public-inner-page .results-page .results-hero {
    min-height: 168px !important;
    padding-right: 116px !important;
  }
  body.public-refreshed.public-inner-page :is(.listing-hero, .ranking-hero, .privacy-hero, .detail-hero)::after,
  body.public-refreshed.public-inner-page main.detail-page .event-hero-panel::after,
  body.public-refreshed.public-inner-page .results-page .results-hero::after {
    top: 18px !important;
    right: 18px !important;
    width: 76px !important;
    height: 116px !important;
    border-width: 3px !important;
    border-radius: 13px !important;
    transform: rotate(3deg) !important;
  }
  body.public-refreshed.public-inner-page .app-page-stat {
    width: fit-content !important;
    max-width: 100% !important;
    margin-right: 0 !important;
  }
  body.public-refreshed .app-first-hero {
    position: relative !important;
  }
  body.public-refreshed .app-first-hero .simple-hero-copy > :is(p, h1, span) {
    max-width: calc(100% - 102px) !important;
  }
  body.public-refreshed .app-first-hero .app-first-phone {
    position: absolute !important;
    top: 26px !important;
    right: 16px !important;
    left: auto !important;
    display: block !important;
    width: 78px !important;
    height: 154px !important;
    padding: 4px !important;
    border-width: 3px !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 26px rgba(2,17,40,.24) !important;
    transform: rotate(3deg) !important;
  }
  body.public-refreshed .app-first-hero .app-first-phone::before {
    top: 3px !important;
    width: 30px !important;
    height: 7px !important;
    border-radius: 0 0 5px 5px !important;
  }
  body.public-refreshed .app-first-hero .app-first-phone::after,
  body.public-refreshed .app-first-hero .app-first-phone > span { display: none !important; }
  body.public-refreshed .app-first-hero .app-first-phone img { border-radius: 11px !important; }
}

@media (max-width: 420px) {
  body.public-refreshed .site-header .brand-logo { width: 148px !important; }
  body.public-refreshed .site-header.app-header .header-actions .icon-button { width: 38px !important; height: 38px !important; }
  body.public-refreshed .public-menu-toggle { width: 38px; height: 38px; flex-basis: 38px; }
  body.public-refreshed :is(.listing-hero, .ranking-hero) h1 { max-width: 100%; font-size: 30px !important; }
  body.public-refreshed :is(.listing-hero, .ranking-hero) > p:not(.eyebrow) { max-width: 100% !important; }
  body.public-refreshed .home-app-feature-strip small { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .public-refreshed * { scroll-behavior: auto !important; }
}
