:root {
  --navy: #061e31;
  --navy-deep: #021421;
  --ink: #071a36;
  --muted: #6c7484;
  --green: #79b82a;
  --green-deep: #008542;
  --yellow: #ffc20e;
  --white: #ffffff;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.association-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background:
    linear-gradient(90deg, rgba(2,16,28,.9) 0%, rgba(2,16,28,.67) 38%, rgba(2,16,28,.2) 72%),
    url("/images/hero.jpg") center / cover no-repeat;
  filter: saturate(.85) contrast(1.05);
  transform: scale(1.02);
}
.hero-shade {
  background:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.2), transparent 33%),
    linear-gradient(180deg, rgba(1,16,29,.08), rgba(1,16,29,.75));
}
.top-strip,
.site-header,
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 84px));
  margin: 0 auto;
}
.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 700;
}
.top-link,
.login-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.top-link svg,
.login-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.login-link svg {
  color: var(--yellow);
  fill: var(--yellow);
  stroke: none;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 42px 0 0;
}
.brand {
  flex: 0 0 auto;
}
.brand-logo {
  width: auto;
  max-width: 285px;
  max-height: 92px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-left: auto;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 13px 0;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transform-origin: left;
  transition: .2s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.site-nav a.active {
  color: var(--yellow);
}
.join-button {
  display: none;
}
.menu-toggle {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  width: 86px;
  height: 92px;
  border: 0;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 82%);
  background: var(--yellow);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 4px auto;
  background: var(--navy);
}

.hero-content {
  display: grid;
  min-height: 520px;
  align-items: center;
}
.hero-copy {
  max-width: 540px;
  padding-top: 40px;
}
.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6.2vw, 76px);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}
.hero-copy h1 span {
  color: var(--yellow);
}
.green-rule {
  display: block;
  width: 52px;
  height: 4px;
  margin: 28px 0 20px;
  background: var(--green);
}
.hero-copy p {
  max-width: 430px;
  margin: 0 0 27px;
  color: rgba(255,255,255,.94);
  font-size: 17px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.primary-action,
.ghost-action {
  display: inline-flex;
  min-width: 220px;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.primary-action {
  background: linear-gradient(135deg, #98c93c, #76af22);
}
.ghost-action {
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.04);
}
.hero-pagination {
  position: absolute;
  right: max(46px, calc((100vw - 1180px) / 2));
  bottom: 142px;
  z-index: 3;
  display: grid;
  gap: 18px;
}
.hero-pagination button {
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding: 0 0 10px;
  color: #fff;
  background: transparent;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}
.hero-pagination button.active {
  color: var(--yellow);
}
.green-sweep {
  position: absolute;
  right: -4%;
  bottom: -16px;
  z-index: 3;
  width: 70%;
  height: 108px;
  clip-path: polygon(14% 55%, 100% 0, 100% 45%, 0 100%);
  background: linear-gradient(90deg, #1a9a47, #0b7b3d);
}

.dark-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  padding: 60px max(42px, calc((100vw - 1180px) / 2)) 76px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(22,118,95,.18), transparent 32%),
    repeating-radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.03) 0 1px, transparent 1px 22px),
    var(--navy-deep);
}
.dark-panel::after {
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 0;
  height: 88px;
  background: #fff;
  clip-path: polygon(0 26%, 100% 100%, 100% 100%, 0 100%);
  content: "";
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.section-heading h2 {
  position: relative;
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.section-heading h2::after {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  background: var(--yellow);
  content: "";
}
.section-heading a {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.news-grid article {
  min-width: 0;
  padding-right: 22px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.news-grid article:last-child {
  border-right: 0;
}
.news-grid img {
  width: 100%;
  height: 130px;
  border-radius: 2px;
  object-fit: cover;
  background: rgba(255,255,255,.08);
}
.news-grid h3 {
  margin: 18px 0 7px;
  font-size: 18px;
  line-height: 1.25;
}
.news-grid time {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.news-grid p {
  min-height: 68px;
  margin: 0 0 17px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.news-grid a {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.news-grid a span,
.section-heading a span {
  color: var(--yellow);
  margin-left: 8px;
}

.events-card {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  padding: 34px 38px 36px;
  border-radius: 18px 0 0 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 50px rgba(0,0,0,.22);
}
.events-card h2 {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 23px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}
.events-card h2 svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
}
.event-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid #dfe3e8;
}
.event-row time {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid #dfe3e8;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}
.event-row time b {
  font-size: 28px;
  font-weight: 900;
}
.event-row time span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.event-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.25;
}
.event-row em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}
.events-button {
  display: flex;
  height: 47px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.welcome-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;
  width: min(1110px, calc(100% - 84px));
  margin: 0 auto;
  padding: 90px 0 76px;
}
.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.welcome-copy h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 43px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: .98;
  text-transform: uppercase;
}
.welcome-copy > p:not(.kicker) {
  margin: 0 0 25px;
  color: #586274;
  font-size: 14px;
}
.yellow-button {
  display: inline-flex;
  min-width: 160px;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  background: var(--yellow);
  color: #061e31;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.feature-cards article {
  position: relative;
  overflow: hidden;
  background: #f5f7fa;
  box-shadow: 0 12px 30px rgba(7,26,54,.08);
}
.feature-cards img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}
.feature-icon {
  position: absolute;
  top: 114px;
  left: -18px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 27px;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.feature-icon.green { background: var(--green); }
.feature-icon.yellow { background: var(--yellow); }
.feature-cards h3 {
  margin: 28px 28px 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}
.feature-cards p {
  margin: 0 28px 32px;
  color: #586274;
  font-size: 13px;
}

.loop-strip {
  display: grid;
  grid-template-columns: 265px minmax(260px, 520px) 230px;
  gap: 42px;
  align-items: center;
  padding: 34px max(42px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    repeating-radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.035) 0 1px, transparent 1px 22px),
    var(--navy-deep);
}
.loop-title {
  display: flex;
  gap: 18px;
  align-items: center;
}
.loop-title > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 3px dashed var(--green);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 31px;
}
.loop-title h2 {
  margin: 0 0 5px;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: .92;
  text-transform: uppercase;
}
.loop-title p {
  margin: 0;
  font-size: 13px;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 160px;
  min-height: 54px;
}
.newsletter-form input {
  min-width: 0;
  border: 0;
  padding: 0 22px;
  color: var(--ink);
  font: inherit;
}
.newsletter-form button {
  border: 0;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.socials strong {
  margin-right: 8px;
  font-size: 13px;
  text-transform: uppercase;
}
.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
}

.association-footer {
  color: #fff;
  background: #031827;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 52px;
  width: min(1110px, calc(100% - 84px));
  margin: 0 auto;
  padding: 42px 0 34px;
}
.footer-brand img {
  width: 250px;
  margin-bottom: 32px;
}
.footer-brand p,
.association-footer section p,
.association-footer a {
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.association-footer h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-footer section:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 4px;
}
.footer-email {
  color: var(--green) !important;
}
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1110px, calc(100% - 84px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
.footer-legal nav {
  display: flex;
  gap: 28px;
}

.association-page-hero {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.association-page-hero .hero-bg {
  background:
    linear-gradient(90deg, rgba(2,16,28,.92) 0%, rgba(2,16,28,.74) 40%, rgba(2,16,28,.32) 75%),
    url("/images/hero.jpg") center / cover no-repeat;
}
.association-page-hero .site-header {
  padding-top: 34px;
}
.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 84px));
  margin: 0 auto;
  padding-top: 88px;
}
.page-hero-copy .kicker {
  margin-bottom: 14px;
  color: var(--green);
}
.page-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 900;
  letter-spacing: .07em;
  line-height: .98;
  text-transform: uppercase;
}
.page-hero-copy i {
  display: block;
  width: 70px;
  height: 4px;
  margin: 30px 0 26px;
  background: var(--yellow);
}
.page-hero-copy > p:not(.kicker) {
  max-width: 430px;
  margin: 0;
  color: rgba(255,255,255,.96);
  font-size: 18px;
  line-height: 1.55;
}

.association-events-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  width: min(1180px, calc(100% - 84px));
  margin: 0 auto;
  padding: 34px 0 54px;
}
.association-events-tabs,
.events-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.association-events-tabs > div {
  display: flex;
  gap: 48px;
}
.association-events-tabs a,
.events-section-heading h2 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.association-events-tabs a.active,
.events-section-heading h2 {
  color: #3f7f22;
}
.association-events-tabs a.active::after,
.events-section-heading h2::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  background: #78aa28;
  content: "";
}
.association-events-tabs p,
.events-section-heading a {
  margin: 0;
  color: #657083;
  font-size: 12px;
}
.events-section-heading .site-meta-icon {
  display: none;
}
.event-class-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
}
.event-class-filters button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid #dfe4eb;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.event-class-filters button.active {
  border-color: #78aa28;
  color: #fff;
  background: #78aa28;
}
.event-class-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.association-event-list,
.event-cards {
  display: grid;
  border: 1px solid #dfe4eb;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.event-list-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 34px;
  gap: 22px;
  align-items: center;
  min-height: 148px;
  padding: 18px 26px;
  border-bottom: 1px solid #dfe4eb;
  background: #fff;
}
.association-event-card {
  grid-template-columns: 74px 205px minmax(0, 1fr) 34px;
}
.event-list-card:last-child {
  border-bottom: 0;
}
.event-list-card time {
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}
.event-list-card time b {
  color: #5d982d;
  font-size: 38px;
  font-weight: 900;
}
.event-list-card time span {
  margin-top: 9px;
  font-size: 17px;
  font-weight: 800;
}
.event-list-card time em {
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
.event-list-card > img {
  width: 205px;
  height: 104px;
  border-radius: 4px;
  object-fit: cover;
}
.event-list-copy h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}
.event-list-copy p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 8px;
  color: #17233d;
  font-size: 12px;
  font-weight: 700;
}
.event-list-copy p .site-meta-icon {
  width: 14px;
  height: 14px;
  color: var(--ink);
}
.event-list-copy p i {
  display: none;
}
.event-list-copy small {
  display: block;
  margin: 0 0 9px;
  color: #586274;
  font-size: 12px;
  line-height: 1.45;
}
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.event-tags span,
.event-list-copy > small:last-child {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  border-radius: 2px;
  padding: 0 8px;
  color: #fff;
  background: #5d982d;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.event-tags span + span {
  color: #17233d;
  background: #e8edf1;
}
.event-list-card > a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #5d982d;
  font-size: 27px;
  font-weight: 500;
}
.events-empty {
  padding: 22px;
  color: #657083;
}
.association-load-more,
.events-view-all {
  display: inline-flex;
  min-width: 195px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 18px auto 0;
  border: 1px solid #78aa28;
  border-radius: 3px;
  color: #3f7f22;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.association-events-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
}
.event-finder-card,
.calendar-sync-card {
  padding: 28px 24px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(145deg, #102433, #071520);
  box-shadow: 0 15px 32px rgba(8,20,32,.14);
}
.event-finder-card h2,
.calendar-sync-card h2,
.share-event-card h2 {
  margin: 0 0 22px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.05;
  text-transform: uppercase;
}
.event-finder-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.event-finder-card label span {
  position: relative;
}
.event-finder-card input,
.event-finder-card select {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 3px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255,255,255,.03);
  font: inherit;
  font-size: 12px;
}
.event-finder-card input::placeholder {
  color: rgba(255,255,255,.55);
}
.event-finder-card option {
  color: var(--ink);
}
.event-finder-card label b {
  position: absolute;
  right: 13px;
  top: 50%;
  color: rgba(255,255,255,.62);
  transform: translateY(-50%);
}
.event-finder-card button {
  width: 100%;
  height: 44px;
  margin-top: 8px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, #91c63f, #6cad26);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-finder-card > a {
  display: block;
  margin-top: 15px;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.share-event-card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #78aa28, #4c8f24);
}
.share-event-card::after {
  position: absolute;
  right: -12px;
  bottom: -18px;
  color: rgba(255,255,255,.12);
  font-size: 128px;
  content: "+";
  transform: rotate(-12deg);
}
.share-event-card p,
.calendar-sync-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.share-event-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 190px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 3px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.calendar-sync-card a {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.calendar-legend {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  background: #fff;
}
.calendar-legend p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
}
.calendar-legend i {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 999px;
  margin-top: 5px;
  background: var(--legend-colour, #78aa28);
}
.calendar-legend strong,
.calendar-legend small {
  display: block;
}
.calendar-legend strong {
  color: var(--ink);
  font-size: 13px;
}
.calendar-legend small {
  color: #657083;
  font-size: 12px;
}
.calendar-sailing-times {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #e1e5eb;
}
.calendar-sailing-times h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.association-event-detail-hero {
  min-height: 645px;
}
.association-event-detail-hero .hero-bg {
  background:
    linear-gradient(90deg, rgba(2,16,28,.94) 0%, rgba(2,16,28,.73) 42%, rgba(2,16,28,.38) 78%),
    url("/images/hero.jpg") center / cover no-repeat;
}
.event-detail-shell {
  width: min(1180px, calc(100% - 84px));
  margin: 0 auto;
}
.association-event-hero-copy,
.association-event-detail-hero .result-detail-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 55px;
}
.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 42px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 800;
}
.detail-breadcrumb span {
  color: rgba(255,255,255,.5);
}
.association-event-hero-copy .kicker {
  margin-bottom: 17px;
  color: var(--green);
}
.association-event-hero-copy h1,
.association-event-detail-hero .result-detail-hero-copy h1 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 66px);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.08;
  text-transform: uppercase;
}
.detail-hero-line {
  display: none;
}
.association-event-hero-copy ul,
.association-event-detail-hero .result-detail-hero-copy ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 28px;
  padding: 0;
  list-style: none;
}
.association-event-hero-copy li,
.association-event-detail-hero .result-detail-hero-copy li {
  display: flex;
  gap: 13px;
  align-items: center;
  color: #fff;
  font-size: 16px;
}
.association-event-hero-copy li span,
.association-event-hero-copy .site-meta-icon,
.association-event-detail-hero .result-detail-hero-copy li span,
.association-event-detail-hero .result-detail-hero-copy .site-meta-icon {
  width: 20px;
  height: 20px;
  color: var(--green);
}
.event-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.association-detail-nav {
  display: none;
}
.association-event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 38px;
  padding: 36px 0 58px;
}
.about-event-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 295px;
  gap: 44px;
  align-items: start;
  margin-bottom: 50px;
}
.detail-section-title,
.about-event-block h2,
.event-schedule-section h2,
.event-location-card h2 {
  position: relative;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.detail-section-title::after,
.about-event-block h2::after,
.event-schedule-section h2::after,
.event-location-card h2::after {
  display: block;
  width: 33px;
  height: 3px;
  margin-top: 13px;
  background: var(--green);
  content: "";
}
.about-event-block article p {
  max-width: 570px;
  margin: 0 0 20px;
  color: #3f4a5d;
  font-size: 14px;
  line-height: 1.8;
}
.event-info-card,
.event-schedule-section,
.event-location-card {
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7,26,54,.04);
}
.event-info-card {
  display: grid;
  padding: 22px 25px;
}
.event-info-card > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid #dfe4eb;
}
.event-info-card > div:first-child {
  padding-top: 0;
}
.event-info-card > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.event-info-card b {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}
.event-info-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-info-card small,
.event-info-card a {
  color: #3f4a5d;
  font-size: 12px;
  line-height: 1.65;
}
.event-info-card a {
  color: var(--green);
}
.event-info-card em {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  margin-left: 8px;
  border-radius: 2px;
  padding: 0 7px;
  color: #657083;
  background: #e8edf1;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}
.event-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 16px;
}
.event-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 295px;
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}
.event-facts,
.race-notes {
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7,26,54,.04);
}
.event-facts {
  display: grid;
  grid-template-columns: 150px 1fr;
  margin: 0;
  padding: 12px 24px;
}
.event-facts dt,
.event-facts dd {
  margin: 0;
  border-bottom: 1px solid #e1e5eb;
  padding: 13px 0;
  color: #3f4a5d;
  font-size: 13px;
  line-height: 1.55;
}
.event-facts dt {
  color: var(--ink);
  font-weight: 800;
}
.event-facts dd a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}
.event-facts dd .site-meta-icon {
  width: 15px;
  height: 15px;
}
.race-notes {
  padding: 25px 24px;
}
.race-notes h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}
.race-notes p {
  margin: 0 0 15px;
  color: #3f4a5d;
  font-size: 13px;
  line-height: 1.75;
}
.event-schedule-section,
.event-location-card {
  padding: 22px 24px;
}
.event-schedule-section h2,
.event-location-card h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 21px;
  font-size: 18px;
}
.event-schedule-section h2::after,
.event-location-card h2::after {
  display: none;
}
.event-schedule-section h2 span,
.event-location-card h2 span {
  color: var(--ink);
}
.event-schedule-section h3 {
  margin: 17px 0 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-schedule-section dl {
  display: grid;
  grid-template-columns: 142px 1fr;
  margin: 0;
}
.event-schedule-section dt,
.event-schedule-section dd {
  margin: 0;
  border-bottom: 1px solid #e1e5eb;
  padding: 8px 0;
  color: var(--ink);
  font-size: 12px;
}
.event-schedule-section dd {
  color: #3f4a5d;
}
.map-preview {
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
  background: #edf1f4;
}
.map-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.event-location-card strong {
  display: block;
  margin-bottom: 17px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}
.event-location-card > a {
  display: inline-flex;
  min-width: 190px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: #4f8b25;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-detail-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
}
.event-detail-card {
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7,26,54,.06);
}
.association-detail-sidebar .event-detail-card {
  padding: 25px 24px;
}
.event-detail-card h2 {
  margin: 0 0 21px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-detail-card > i {
  display: block;
  width: 34px;
  height: 3px;
  margin: -12px 0 18px;
  background: var(--green);
}
.quick-links a,
.event-upcoming a,
.latest-results-card a {
  display: flex;
  gap: 13px;
  align-items: center;
  border-top: 1px solid #e1e5eb;
  padding: 13px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.quick-links a .site-meta-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
}
.event-upcoming .side-event,
.latest-results-card .side-result {
  align-items: flex-start;
}
.event-upcoming time,
.latest-results-card time {
  display: grid;
  width: 52px;
  height: 54px;
  flex: 0 0 52px;
  place-items: center;
  border: 1px solid #dfe4eb;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.event-upcoming time b,
.latest-results-card time b {
  color: #5d982d;
  font-size: 21px;
}
.event-upcoming strong,
.latest-results-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}
.event-upcoming small,
.latest-results-card small {
  display: block;
  margin-top: 4px;
  color: #657083;
  font-size: 11px;
}
.detail-view-all,
.side-view-all {
  justify-content: center;
  color: var(--green) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}
.association-event-summary {
  padding: 28px 25px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(145deg, #102433, #061520);
}
.association-event-summary h2 {
  margin: 0 0 23px;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-event-summary dl {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px 18px;
  margin: 0 0 28px;
}
.association-event-summary dt,
.association-event-summary dd {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  line-height: 1.55;
}
.association-event-summary dt {
  color: rgba(255,255,255,.72);
}
.association-event-summary .primary-action {
  width: 100%;
  min-width: 0;
  justify-content: center;
  gap: 18px;
}
.accommodation-card {
  background: linear-gradient(135deg, #6ca726, #4b8f23);
}
.accommodation-card::after {
  content: "";
}
.calendar-buttons {
  display: flex;
  gap: 9px;
}
.calendar-buttons a {
  width: auto;
  min-width: 76px;
  flex: 0 0 auto;
}
.past-winners-strip {
  padding: 0 0 34px;
  border-top: 1px solid #eef1f4;
  background: #fff;
}
.past-winners-strip h2 {
  position: relative;
  margin: 0 0 24px;
  padding-top: 27px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}
.past-winners-strip h2::after {
  display: block;
  width: 35px;
  height: 3px;
  margin-top: 10px;
  background: var(--green);
  content: "";
}
.past-winners-strip .event-detail-shell > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 190px;
  align-items: center;
  gap: 20px;
}
.past-winners-strip article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px 10px;
  border-right: 1px solid #dfe4eb;
}
.past-winners-strip article b {
  grid-row: span 2;
  color: var(--green);
  font-size: 24px;
}
.past-winners-strip article strong {
  color: var(--ink);
  font-size: 13px;
}
.past-winners-strip article span {
  color: #657083;
  font-size: 12px;
}
.past-winners-strip a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--green);
  border-radius: 3px;
  color: #4f8b25;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.association-results-hero {
  min-height: 505px;
}
.association-results-hero .hero-bg {
  background:
    linear-gradient(90deg, rgba(2,16,28,.94) 0%, rgba(2,16,28,.73) 42%, rgba(2,16,28,.38) 78%),
    url("/images/hero.jpg") center / cover no-repeat;
}
.association-results-copy {
  padding-top: 70px;
}
.association-results-copy .detail-breadcrumb {
  margin-bottom: 34px;
}
.association-results-layout,
.results-shell.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(1180px, calc(100% - 84px));
  margin: 0 auto;
  padding: 34px 0 58px;
}
.association-results-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.association-results-tabs > div {
  display: flex;
  gap: 48px;
}
.association-results-tabs a {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-results-tabs a.active::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 3px;
  background: #78aa28;
  content: "";
}
.association-results-tabs > a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}
.association-results-filter,
.results-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr 140px 70px;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  padding: 26px 26px;
  background: #fff;
}
.association-results-filter label,
.season-select {
  display: grid;
  gap: 8px;
  color: #657083;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-results-filter select,
.association-results-filter input,
.season-select select {
  width: 100%;
  height: 40px;
  border: 1px solid #d8dee7;
  border-radius: 3px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 12px;
  text-transform: none;
}
.association-results-filter button,
.results-view-all {
  min-height: 40px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, #91c63f, #6cad26);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-results-filter > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  color: #4f8b25;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-result-card {
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7,26,54,.04);
}
.association-result-card > header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  padding: 20px 26px;
}
.result-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: #6ca726;
  font-size: 23px;
}
.association-result-card h2 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.association-result-card header p {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
  margin: 0;
  color: #3f4a5d;
  font-size: 12px;
  font-weight: 700;
}
.association-result-card header b {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border-radius: 3px;
  padding: 0 9px;
  color: #4f8b25;
  background: #dceccf;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-result-card header > a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-results-table-wrap {
  overflow-x: auto;
}
.association-results-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 12px;
}
.association-results-table th {
  padding: 13px 14px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.association-results-table th:nth-child(3),
.association-results-table th:nth-child(4),
.association-results-table td:nth-child(3),
.association-results-table td:nth-child(4) {
  text-align: left;
}
.association-results-table td {
  border-bottom: 1px solid #dfe4eb;
  padding: 13px 14px;
  text-align: center;
}
.association-results-table td:last-child {
  color: #4f8b25;
  font-weight: 900;
}
.association-result-card > footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px 20px;
  color: #657083;
  font-size: 12px;
}
.association-full-results {
  display: flex;
  width: fit-content;
  min-width: 250px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 24px auto 34px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: #4f8b25;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-results-explore {
  display: grid;
  grid-template-columns: 55px minmax(180px, 1fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  padding: 24px 25px;
  background: #fff;
}
.explore-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: #6ca726;
  font-size: 28px;
}
.association-results-explore h3,
.association-results-explore strong {
  display: block;
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.association-results-explore p,
.association-results-explore small {
  display: block;
  margin: 0;
  color: #657083;
  font-size: 11px;
  line-height: 1.45;
}
.association-results-explore a {
  position: relative;
  min-height: 58px;
  border-left: 1px solid #dfe4eb;
  padding-left: 24px;
  padding-right: 28px;
}
.association-results-explore a span {
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--ink);
  font-size: 20px;
}

.results-toolbar {
  grid-template-columns: minmax(0, 1fr) 250px;
}
.class-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.class-filters button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid #dfe4eb;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.class-filters button.active {
  border-color: #78aa28;
  color: #fff;
  background: #78aa28;
}
.result-class-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.results-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.results-list {
  display: grid;
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  background: #fff;
}
.results-list-head,
.results-list-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) 130px minmax(150px, 1fr) 70px minmax(140px, 1fr) 135px;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
}
.results-list-head {
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.results-list-row {
  border-bottom: 1px solid #dfe4eb;
  color: #3f4a5d;
  font-size: 12px;
}
.results-list-row strong {
  color: var(--ink);
  font-size: 13px;
}
.results-list-row > a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--green);
  border-radius: 3px;
  color: #4f8b25;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.results-info {
  display: none;
}
.association-results-sidebar {
  display: none;
}
.season-panel,
.help-card {
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  padding: 24px;
  background: #fff;
}
.season-panel h2,
.help-card h2 {
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.season-panel i {
  display: block;
  width: 34px;
  height: 3px;
  margin: -8px 0 16px;
  background: var(--green);
}
.season-panel button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid #dfe4eb;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}
.help-card p {
  margin: 0 0 15px;
  color: #657083;
  font-size: 13px;
}
.help-card a {
  color: #4f8b25;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .site-header { gap: 24px; }
  .site-nav { gap: 22px; }
  .dark-panel { grid-template-columns: 1fr; }
  .events-card { max-width: 560px; margin: 0; }
  .welcome-section { grid-template-columns: 1fr; gap: 36px; }
  .loop-strip { grid-template-columns: 1fr; }
  .socials { justify-content: flex-start; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .association-events-layout { grid-template-columns: 1fr; }
  .association-events-sidebar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .event-finder-card { grid-row: span 2; }
  .association-event-detail-layout { grid-template-columns: 1fr; }
  .association-detail-sidebar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .past-winners-strip .event-detail-shell > div { grid-template-columns: repeat(3, 1fr); }
  .association-results-filter { grid-template-columns: repeat(2, 1fr); }
  .association-results-explore { grid-template-columns: 55px 1fr; }
  .association-results-explore a { border-left: 0; border-top: 1px solid #dfe4eb; padding: 18px 28px 0 0; }
}

@media (max-width: 820px) {
  .association-hero { min-height: auto; }
  .top-strip,
  .site-header,
  .hero-content,
  .page-hero-copy,
  .event-detail-shell,
  .association-events-layout,
  .association-results-layout,
  .results-shell.results-layout,
  .welcome-section,
  .footer-inner,
  .footer-legal {
    width: calc(100% - 32px);
  }
  .top-strip { align-items: flex-start; gap: 18px; }
  .site-header { padding-top: 28px; }
  .brand-logo { max-width: 210px; }
  .site-nav {
    position: fixed;
    top: 78px;
    right: 14px;
    z-index: 5;
    display: none;
    width: min(300px, calc(100vw - 28px));
    padding: 18px;
    border-radius: 12px;
    background: rgba(2,20,33,.97);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
  }
  .site-nav.is-open { display: grid; gap: 6px; }
  .menu-toggle { width: 70px; height: 78px; }
  .hero-content { min-height: 560px; }
  .hero-copy h1 { font-size: clamp(42px, 14vw, 68px); }
  .hero-copy p { font-size: 15px; }
  .hero-pagination { display: none; }
  .green-sweep { height: 72px; width: 92%; }
  .dark-panel { padding: 44px 16px 60px; }
  .news-grid,
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .news-grid article {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding-bottom: 22px;
  }
  .events-card { padding: 26px 20px; }
  .association-page-hero { min-height: 500px; }
  .page-hero-copy { padding-top: 62px; }
  .page-hero-copy h1 { font-size: clamp(42px, 12vw, 64px); }
  .association-events-layout { padding-top: 28px; }
  .association-events-tabs { align-items: flex-start; }
  .association-events-tabs,
  .association-events-tabs > div { flex-direction: column; gap: 15px; }
  .association-event-card,
  .event-list-card {
    grid-template-columns: 64px minmax(0, 1fr) 32px;
    gap: 14px;
    padding: 16px;
  }
  .event-list-card > img { display: none; }
  .association-events-sidebar { grid-template-columns: 1fr; }
  .association-event-detail-layout { padding-top: 30px; }
  .about-event-block,
  .event-overview-grid,
  .event-lower-grid,
  .association-detail-sidebar {
    grid-template-columns: 1fr;
  }
  .event-facts { grid-template-columns: 1fr; }
  .event-facts dt { border-bottom: 0; padding-bottom: 3px; }
  .event-facts dd { padding-top: 0; }
  .event-schedule-section dl { grid-template-columns: 115px 1fr; }
  .past-winners-strip .event-detail-shell > div { grid-template-columns: 1fr; }
  .past-winners-strip article { border-right: 0; border-bottom: 1px solid #dfe4eb; padding-bottom: 12px; }
  .association-results-tabs,
  .association-results-tabs > div,
  .association-result-card > header,
  .association-result-card > footer,
  .results-toolbar {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .association-results-filter { grid-template-columns: 1fr; }
  .association-result-card header > a { width: 100%; }
  .association-results-table { min-width: 900px; }
  .association-results-explore { grid-template-columns: 1fr; }
  .results-list { overflow-x: auto; }
  .results-list-head,
  .results-list-row { min-width: 880px; }
  .welcome-section { padding: 62px 0 54px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form input,
  .newsletter-form button { min-height: 52px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-legal { flex-direction: column; }
}

@media (max-width: 520px) {
  .top-strip { display: none; }
  .hero-actions { display: grid; }
  .primary-action,
  .ghost-action { width: 100%; }
  .event-row { grid-template-columns: 52px 1fr; gap: 13px; }
  .welcome-copy h2 { font-size: 34px; }
  .loop-title { align-items: flex-start; }
  .loop-title > span { width: 58px; height: 58px; }
}
