:root {
  --cyan: #0a749b;
  --lime: #b5d73a;
  --white: #e6e6e6;
  --muted: rgba(230, 230, 230, 0.76);
  --shadow: rgba(0, 0, 0, 0.68);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: #050708;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2;
  min-height: 82px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42));
  border-bottom: 1px solid rgba(10, 116, 155, 0.56);
  box-shadow: 0 1px 18px rgba(10, 116, 155, 0.22);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 20px);
  height: 82px;
  padding: 0 34px;
}

.main-nav a {
  position: relative;
  color: rgba(230, 230, 230, 0.66);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(10px, 0.74vw, 15px);
  font-weight: 600;
  letter-spacing: 1.25px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a.active::after {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 69px;
  height: 5px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(10, 116, 155, 0.72);
  transform: translateX(-50%);
}

.members-body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2)),
    #070808 url("images/members-background.png") center top / 100% 100vh no-repeat scroll;
}

.members-page {
  position: relative;
  min-height: 100vh;
  padding: 0;
}

.members-content {
  position: absolute;
  left: clamp(270px, 17.1vw, 302px);
  top: clamp(208px, 21.1vh, 218px);
  width: 1290px;
  min-width: 0;
}

.members-topline {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  margin-bottom: 28px;
}

.members-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #e6e6e6;
  font: 700 15px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-shadow: 0 0 9px rgba(10, 116, 155, 0.42);
  text-transform: uppercase;
  transition: color 150ms ease, transform 150ms ease;
}

.members-back span {
  color: var(--lime);
  font-size: 25px;
  line-height: 0.5;
}

.members-back:hover,
.members-back:focus-visible {
  color: #0a749b;
  outline: none;
  transform: translateX(-3px);
}

@media (min-width: 821px) {
  .members-back {
    position: absolute;
    top: -37px;
    left: 0;
    margin: 0;
  }
}

.members-heading h1 {
  margin: 0;
  color: #e6e6e6;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(60px, 4.7vw, 76px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 7px 0 rgba(0, 0, 0, 0.55), 0 0 20px rgba(230, 230, 230, 0.16);
  text-transform: uppercase;
  white-space: nowrap;
}

.members-subtitle {
  display: grid;
  grid-template-columns: 56px auto 56px;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.members-subtitle span {
  height: 3px;
  background: #0a749b;
  box-shadow: 0 0 9px rgba(10, 116, 155, 0.42);
}

.members-subtitle p {
  margin: 0;
  color: #0a749b;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(20px, 1.43vw, 23px);
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.class-browse {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 26px;
}

.class-year {
  position: relative;
  padding-left: 28px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.class-year::before {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  content: "";
  background: rgba(230, 230, 230, 0.58);
}

.class-year span {
  display: block;
  color: #0a749b;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
}

.class-year strong {
  display: block;
  color: var(--lime);
  font-size: clamp(58px, 4.35vw, 70px);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.82), 0 0 13px rgba(181, 215, 58, 0.3);
}

.year-select {
  position: relative;
  display: grid;
  align-items: center;
  width: 154px;
  min-height: 72px;
  padding: 14px 46px 14px 17px;
  color: #0a749b;
  border: 1px solid #0a749b;
  border-radius: 7px;
  box-shadow: 0 0 12px rgba(10, 116, 155, 0.34);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.08;
  text-transform: uppercase;
}

.year-select::after {
  position: absolute;
  right: 19px;
  top: 22px;
  width: 14px;
  height: 14px;
  content: "";
  border-right: 3px solid #0a749b;
  border-bottom: 3px solid #0a749b;
  transform: rotate(45deg);
  pointer-events: none;
}

.year-select select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(5, 230px);
  gap: 22px 19px;
}

.member-card {
  position: relative;
  aspect-ratio: 1086 / 1448;
  min-height: 0;
  background: url("images/player-card.png") center / 100% 100% no-repeat;
  filter: drop-shadow(0 0 11px rgba(86, 204, 255, 0.72));
}

.portrait {
  position: absolute;
  left: 21.15%;
  top: 10.75%;
  display: grid;
  place-items: end start;
  width: 58%;
  height: 47.35%;
  padding: 8%;
  overflow: hidden;
  color: rgba(230, 230, 230, 0.75);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.55);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0;
}

.portrait-a { background: linear-gradient(135deg, #7c5d4a, #202222 56%, #0d1213); }
.portrait-b { background: linear-gradient(135deg, #6b706a, #2e221b 58%, #0d1213); }
.portrait-c { background: linear-gradient(135deg, #b8b0a0, #5e5a52 54%, #0d1213); }
.portrait-d { background: linear-gradient(135deg, #c8a36d, #2b2926 58%, #0d1213); }
.portrait-e { background: linear-gradient(135deg, #bcc5c4, #324452 52%, #0d1213); }
.portrait-f { background: linear-gradient(135deg, #b4aca0, #4e514a 52%, #0d1213); }
.portrait-g { background: linear-gradient(135deg, #ccb49e, #343332 55%, #0d1213); }
.portrait-h { background: linear-gradient(135deg, #6f60aa, #453a28 56%, #0d1213); }
.portrait-i { background: linear-gradient(135deg, #676b6c, #22292b 56%, #0d1213); }
.portrait-j { background: linear-gradient(135deg, #d1b493, #4b4138 55%, #0d1213); }

.member-card h2 {
  position: absolute;
  left: 12%;
  right: 13%;
  top: 61.6%;
  margin: 0;
  color: #e6e6e6;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(20px, 1.2vw, 24px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.member-card p {
  position: absolute;
  left: 12%;
  top: 73.6%;
  width: fit-content;
  margin: 0;
  color: #0a749b;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
}

.member-card p::after {
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 7px;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 8px rgba(181, 215, 58, 0.48);
}

.member-card a {
  position: absolute;
  right: 10%;
  bottom: 22.5%;
  color: #0a749b;
  font-size: 44px;
  line-height: 0.7;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(10, 116, 155, 0.52);
}

@media (max-width: 1340px) {
  .members-page {
    padding-right: 96px;
    padding-left: 230px;
  }

  .members-content {
    width: auto;
    min-width: 0;
  }

  .member-grid {
    grid-template-columns: repeat(4, minmax(150px, 182px));
  }
}

@media (max-width: 1080px) {
  .members-body {
    background-position: 38% top;
  }

  .members-page {
    padding: 132px 32px 48px;
  }

  .members-content {
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .members-topline {
    grid-template-columns: 1fr;
  }

  .members-heading h1 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .member-grid {
    grid-template-columns: repeat(2, minmax(132px, 1fr));
    gap: 18px;
  }

  .class-browse {
    grid-template-columns: 1fr;
  }

  .members-subtitle {
    grid-template-columns: 48px auto;
  }

  .members-subtitle span:last-child {
    display: none;
  }
}

@media (max-width: 460px) {
  .members-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .member-grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  --hero-scene-width: max(100vw, 177.68vh);
  --hero-scene-height: max(56.28vw, 100vh);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 34%),
    url("images/hero-image-blue-seams-softball.png") center center / var(--hero-scene-width) var(--hero-scene-height) no-repeat;
}

/*
 * Smooth same-origin navigation between the site's separate HTML documents.
 * Chrome keeps the completed outgoing page visible until the incoming page is
 * ready, preventing the black/unstyled frame that reads as a flicker.
 */
@view-transition {
  navigation: auto;
}

body .site-header {
  view-transition-name: site-navigation;
}

::view-transition-old(root) {
  animation: site-page-out 90ms ease-out both;
}

::view-transition-new(root) {
  animation: site-page-in 150ms ease-out both;
}

::view-transition-old(site-navigation),
::view-transition-new(site-navigation) {
  animation: none;
}

@keyframes site-page-out {
  from { opacity: 1; }
  to { opacity: .96; }
}

@keyframes site-page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-door-sign {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: calc(50% - (var(--hero-scene-height) / 2) + max(5.63vw, 10vh));
  width: max(37.4vw, 66.45vh);
  filter:
    drop-shadow(2px 3px 1px rgba(0, 0, 0, 0.78))
    drop-shadow(5px 9px 5px rgba(0, 0, 0, 0.58))
    drop-shadow(8px 18px 14px rgba(0, 0, 0, 0.3))
    brightness(0.84)
    contrast(1)
    saturate(0.68);
  pointer-events: none;
  transform: translateX(-50%) perspective(1400px) rotateX(-0.75deg);
  transform-origin: 50% 42%;
  user-select: none;
}

.hero-door-logo {
  display: block;
  width: 100%;
  height: auto;
}

.hero-door-logo-finish {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.07) 31%, transparent 42%),
    radial-gradient(ellipse at 48% 18%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(18, 20, 19, 0.16) 55%, rgba(0, 0, 0, 0.28) 82%),
    repeating-linear-gradient(97deg, rgba(255, 255, 255, 0.018) 0 1px, rgba(0, 0, 0, 0.055) 1px 3px);
  -webkit-mask: url("images/louisiana-usssa-hall-of-fame-3d-straight-on-web.png") center / 100% 100% no-repeat;
  mask: url("images/louisiana-usssa-hall-of-fame-3d-straight-on-web.png") center / 100% 100% no-repeat;
  mix-blend-mode: soft-light;
  opacity: 0.52;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(28px, 3.9vw, 64px);
  bottom: clamp(34px, 6.1vw, 82px);
  width: min(880px, calc(100vw - 56px));
  text-shadow: 0 4px 16px var(--shadow);
}

.home-quick-links {
  position: absolute;
  z-index: 1;
  top: clamp(170px, 24vh, 260px);
  left: 71.5vw;
  width: clamp(245px, 18vw, 300px);
  padding: 25px 25px 27px;
  background: linear-gradient(145deg, rgba(3, 13, 17, 0.48), rgba(1, 5, 7, 0.28));
  border: 1px solid rgba(10, 116, 155, 0.38);
  border-top: 3px solid var(--lime);
  border-radius: 5px;
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.48),
    0 0 18px rgba(10, 116, 155, 0.16),
    inset 0 1px 0 rgba(230, 230, 230, 0.08);
  backdrop-filter: blur(2px);
}

.home-quick-links > p {
  margin: 0 0 4px;
  color: #0a749b;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.home-quick-links h2 {
  margin: 0 0 18px;
  color: #e6e6e6;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 36px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.home-quick-links nav {
  display: grid;
  gap: 8px;
}

.home-quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px 0 16px;
  color: rgba(230, 230, 230, 0.9);
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(230, 230, 230, 0.16);
  border-left: 3px solid #0a749b;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-quick-links a b {
  color: var(--lime);
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
}

.home-quick-links a:hover,
.home-quick-links a:focus-visible {
  color: #e6e6e6;
  background: rgba(10, 116, 155, 0.12);
  border-color: #0a749b;
  outline: none;
  transform: translateX(3px);
}

.home-sponsors-carousel {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(18, 27, 30, .88), rgba(2, 6, 8, .92));
  border: 1px solid rgba(10, 116, 155, .58);
  border-radius: 12px;
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 9px 18px rgba(0,0,0,.34);
  transition: opacity 250ms ease, transform 250ms ease;
}
.home-sponsors-carousel.is-changing { opacity: 0; transform: translateY(5px); }
.home-sponsors-carousel a { display: flex; width: 100%; min-height: 126px; padding: 8px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 9px; background: transparent; box-sizing: border-box; transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.home-sponsors-carousel a:hover,
.home-sponsors-carousel a:focus-visible { background: rgba(10,116,155,.1); border-color: var(--lime); box-shadow: 0 0 18px rgba(181,215,58,.16); transform: translateY(-2px) scale(1.015); }
.home-sponsors-carousel img { display: block; max-width: 100%; max-height: 126px; margin: auto; border-radius: 8px; object-fit: contain; object-position: center; }
.home-sponsors-empty { margin: 0; color: rgba(230,230,230,.78); font-weight: 700; text-align: center; }

/* Homepage information panels */
.home-news {
  position: absolute;
  z-index: 2;
  top: clamp(170px, 24vh, 260px);
  left: 71.5vw;
  width: clamp(285px, 21vw, 355px);
  padding: 25px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(3, 13, 17, 0.56), rgba(1, 5, 7, 0.34));
  border: 1px solid rgba(10, 116, 155, 0.42);
  border-top: 3px solid var(--lime);
  border-radius: 5px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.48), inset 0 1px rgba(230, 230, 230, 0.08);
  backdrop-filter: blur(2px);
}

.home-news > p,
.home-news-sections span {
  margin: 0;
  color: var(--cyan);
  font: 700 13px/1 "Barlow Condensed", sans-serif;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.home-news h2 {
  margin: 6px 0 17px;
  font: italic 700 31px/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.home-news-sections {
  display: grid;
  gap: 9px;
}

.home-news-sections section {
  padding: 13px 15px;
  background: rgba(0, 0, 0, 0.24);
  border-left: 3px solid var(--cyan);
}

.home-news-sections section:last-child { border-left-color: var(--lime); }
.home-news-item + .home-news-item { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(230,230,230,.12); }
.home-news-sections strong { display: block; margin: 6px 0 8px; font: 700 20px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.home-news-sections a { color: rgba(230,230,230,.78); font: 600 15px/1.2 "Barlow Condensed", sans-serif; letter-spacing: .5px; text-decoration: none; text-transform: uppercase; }
.home-news-sections a b { color: var(--lime); font-size: 20px; }

.home-member-quote {
  box-sizing: border-box;
  padding: 24px 30px 26px;
  color: #f2f2ee;
  background: linear-gradient(135deg, rgba(8, 13, 14, .94), rgba(18, 22, 20, .86));
  border: 1px solid rgba(181, 215, 58, .38);
  border-left: 5px solid var(--lime);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .48);
  opacity: 1;
  transition: opacity .35s ease, transform .35s ease;
}
.home-member-quote[hidden] { display: none; }
.home-member-quote.is-changing { opacity: 0; }
.home-member-quote > p {
  margin: 0 0 9px;
  color: var(--lime);
  font: 700 13px/1 "Inter", sans-serif;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.home-member-quote blockquote {
  margin: 0 0 12px;
  font: italic 600 27px/1.18 "Barlow Condensed", sans-serif;
}
.home-member-quote a {
  color: rgba(242, 242, 238, .78);
  font: 700 15px/1.2 "Inter", sans-serif;
  text-decoration: none;
}
.home-member-quote a:hover,
.home-member-quote a:focus-visible { color: var(--lime); }

.home-quick-links {
  top: auto;
  right: auto;
  bottom: 28px;
  left: 71.5vw;
  width: clamp(285px, 21vw, 355px);
  padding: 18px 20px 20px;
}

.home-quick-links > p { display: block; }
.home-quick-links h2 { margin: 0 0 12px; font-size: 29px; }
.home-quick-links nav { grid-template-columns: 1fr; gap: 7px; }
.home-quick-links a { min-height: 42px; padding-right: 12px; padding-left: 14px; font-size: 16px; }
.home-quick-links a b { font-size: 25px; }

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 4.6vw, 70px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy h1::after {
  display: block;
  width: 51px;
  height: 5px;
  margin-top: 15px;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 10px rgba(181, 215, 58, 0.66);
}

.hero-copy p {
  margin: 14px 0 26px;
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.35;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 324px;
  height: 61px;
  padding: 0 32px 0 42px;
  color: #0b1204;
  background: linear-gradient(180deg, #caff07, #a6e600);
  border: 1px solid rgba(239, 255, 93, 0.9);
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(181, 215, 58, 0.55), inset 0 1px 0 rgba(230, 230, 230, 0.45);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-button:hover {
  box-shadow: 0 0 24px rgba(181, 215, 58, 0.72), inset 0 1px 0 rgba(230, 230, 230, 0.5);
  transform: translateY(-1px);
}

.arrow {
  font-family: Inter, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    overflow-x: auto;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 32px;
    min-width: max-content;
  }
}

@media (max-width: 680px) {
  .site-header,
  .main-nav {
    height: 68px;
    min-height: 68px;
  }

  .main-nav {
    padding: 0 22px;
  }

  .main-nav a.active::after {
    bottom: -12px;
    width: 56px;
    height: 4px;
  }

  .hero {
    min-height: 100svh;
    background-position: 50% center;
  }

  .hero-copy {
    bottom: 28px;
  }

  .hero-button {
    width: min(307px, 100%);
    min-width: 0;
  }

  .home-quick-links {
    left: auto;
    top: auto;
    right: 18px;
    bottom: 16px;
    width: min(280px, calc(100vw - 36px));
    padding: 18px;
  }

  .home-quick-links nav { grid-template-columns: 1fr; }

  .home-news {
    top: 92px;
    right: 18px;
    left: auto;
    width: min(300px, calc(100vw - 36px));
    padding: 18px;
  }

  .home-quick-links h2 {
    margin-bottom: 12px;
    font-size: 29px;
  }

  .home-quick-links a {
    min-height: 42px;
    font-size: 16px;
  }
}

.member-brand {
  position: absolute;
  z-index: 3;
  left: 5.55vw;
  top: 17px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  width: 245px;
  color: #f4f4f0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.8;
  text-decoration: none;
  text-shadow: 0 3px 5px #000;
  transform: skew(-2deg);
}

.member-brand span {
  grid-column: 1 / -1;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
}

.member-brand strong {
  color: var(--lime);
  font-size: 48px;
  letter-spacing: -2px;
}

.member-brand small {
  align-self: center;
  margin-left: 8px;
  color: #38c7ef;
  font-size: 18px;
  line-height: 1;
}

.members-content {
  left: 18.7vw;
  top: clamp(192px, 20.8vh, 212px);
  width: 67.2vw;
  max-width: 1068px;
}

.members-topline {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 2vw, 32px);
  margin-bottom: 24px;
}

.members-heading h1 {
  font-size: clamp(50px, 4.6vw, 73px);
}

.members-subtitle {
  grid-template-columns: minmax(30px, 56px) auto minmax(30px, 56px);
  gap: 18px;
}

.members-subtitle p {
  font-size: clamp(15px, 1.25vw, 20px);
  white-space: nowrap;
}

.class-browse {
  gap: clamp(16px, 1.6vw, 26px);
}

.class-year strong {
  font-size: clamp(52px, 4vw, 64px);
}

.year-select {
  width: 154px;
  min-height: 72px;
  font-size: 20px;
}

.member-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.35vw, 22px) clamp(14px, 1.55vw, 25px);
}

.member-card h2 {
  font-size: clamp(15px, 1.35vw, 21px);
}

.member-card p {
  font-size: clamp(11px, 0.95vw, 15px);
}

@media (max-width: 1180px) {
  .member-brand {
    left: 24px;
    width: 190px;
  }

  .member-brand span { font-size: 27px; }
  .member-brand strong { font-size: 39px; }
  .member-brand small { font-size: 15px; }

  .members-body .main-nav {
    padding-left: 230px;
    overflow-x: auto;
  }

  .members-page {
    padding: 142px 34px 56px;
  }

  .members-content {
    position: static;
    width: auto;
    max-width: none;
  }

  .member-grid {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}

@media (max-width: 820px) {
  .members-body .site-header {
    min-height: 88px;
  }

  .member-brand {
    top: 12px;
    width: 150px;
  }

  .member-brand span { font-size: 22px; }
  .member-brand strong { font-size: 31px; }
  .member-brand small { font-size: 12px; }

  .members-body .main-nav {
    height: 88px;
    padding-left: 185px;
  }

  .members-page {
    padding: 126px 24px 44px;
  }

  .members-topline {
    grid-template-columns: 1fr;
  }

  .member-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

/* Rotunda presentation for the current Hall of Fame class. */
.inductees-body {
  background:
    linear-gradient(180deg, rgba(1, 4, 5, 0.08), rgba(1, 4, 5, 0.36) 65%, rgba(1, 4, 5, 0.92)),
    url("images/hall-of-honor-rotunda-background.png") center top / cover scroll;
}

.inductees-page {
  position: relative;
  width: min(1540px, calc(100% - 54px));
  min-height: 100vh;
  padding: 108px 0 42px;
}

.inductees-hero {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
  padding: 15px 26px 18px;
  background: linear-gradient(180deg, rgba(2, 6, 8, 0.82), rgba(2, 6, 8, 0.36));
  border-top: 2px solid var(--cyan);
  text-align: center;
  backdrop-filter: blur(4px);
}

.inductees-hero h1 {
  font-size: clamp(48px, 5vw, 75px);
}

.inductees-hero > p:last-child {
  margin-top: 13px;
  font-size: clamp(15px, 1.2vw, 19px);
}

.inductee-rotunda-gallery {
  position: relative;
  z-index: 2;
  min-height: clamp(370px, 45vh, 500px);
}

.rotunda-portraits {
  position: absolute;
  inset: 0;
}

.rotunda-portrait {
  position: absolute;
  width: clamp(72px, 6.4vw, 104px);
  height: clamp(92px, 8.4vw, 137px);
  padding: 4px;
  overflow: visible;
  background: linear-gradient(145deg, #747c7e, #171c1e 55%, #8b9293);
  border: 1px solid rgba(230, 230, 230, 0.48);
  box-shadow: 0 11px 18px rgba(0, 0, 0, 0.78), inset 0 0 0 2px #090c0d;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: z-index 0s, transform 160ms ease, box-shadow 160ms ease;
}

.rotunda-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.8) contrast(1.05);
}

.rotunda-portrait span {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: calc(100% + 7px);
  width: 150px;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(2, 5, 6, 0.9);
  border: 1px solid rgba(10, 116, 155, 0.55);
  font: 700 12px/1.05 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.rotunda-portrait:hover,
.rotunda-portrait:focus-visible {
  z-index: 8;
  box-shadow: 0 0 24px rgba(181, 215, 58, 0.42), 0 15px 24px rgba(0, 0, 0, 0.82);
  outline: none;
  transform: translate(-50%, -50%) scale(1.12);
}

.rotunda-portrait-1 { left: 14%; top: 25%; }
.rotunda-portrait-2 { left: 22%; top: 43%; }
.rotunda-portrait-3 { left: 31%; top: 58%; }
.rotunda-portrait-4 { left: 39%; top: 68%; }
.rotunda-portrait-5 { left: 46%; top: 74%; }
.rotunda-portrait-6 { left: 54%; top: 74%; }
.rotunda-portrait-7 { left: 61%; top: 68%; }
.rotunda-portrait-8 { left: 69%; top: 58%; }
.rotunda-portrait-9 { left: 78%; top: 43%; }
.rotunda-portrait-10 { left: 86%; top: 25%; }

.inductees-page .class-timeline {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 17px 22px 8px;
  background: linear-gradient(180deg, rgba(3, 7, 9, 0.76), rgba(2, 5, 6, 0.94));
  border: 1px solid rgba(10, 116, 155, 0.35);
  backdrop-filter: blur(5px);
}

.inductees-page .section-heading {
  margin-bottom: 8px;
}

.inductees-page .timeline-year {
  min-height: 66px;
}

.inductees-page .inductee-search {
  margin-top: 18px;
  padding: 20px 28px 24px;
}

.inductees-page .members-search {
  align-items: start;
}

.members-search .search-control {
  align-self: start;
}

.inductees-page .search-control input {
  height: 54px;
}

.inductees-page .search-icon {
  top: 14px;
}

@media (max-width: 820px) {
  .inductees-page {
    width: min(100% - 24px, 720px);
    padding-top: 92px;
  }

  .inductee-rotunda-gallery {
    min-height: 610px;
  }

  .rotunda-portraits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
    padding: 25px 15px;
  }

  .rotunda-portrait {
    position: relative;
    inset: auto;
    width: min(130px, 100%);
    height: 150px;
    margin: 0 auto;
    transform: none;
  }

  .rotunda-portrait:hover,
  .rotunda-portrait:focus-visible {
    transform: scale(1.06);
  }
}

/* Canonical site navigation: identical on every page, including member year pages. */
body .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 82px;
  min-height: 82px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42));
  border-bottom: 1px solid rgba(10, 116, 155, 0.56);
  box-shadow: 0 1px 18px rgba(10, 116, 155, 0.22);
}

body .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.35vw, 38px);
  width: 100%;
  min-width: 0;
  height: 82px;
  padding: 0 34px;
  overflow: visible;
}

body .main-nav a {
  position: relative;
  display: inline;
  min-width: 0;
  padding: 0;
  color: rgba(230, 230, 230, 0.66);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(12px, 0.88vw, 16px);
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.25px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

body .main-nav a + a::before { content: none; }
body .main-nav a:hover,
body .main-nav a.active { color: var(--white); }

body .main-nav a.active::after {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 69px;
  height: 5px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(10, 116, 155, 0.72);
  transform: translateX(-50%);
}

@media (max-width: 980px) {
  body .site-header { overflow-x: auto; }
  body .main-nav {
    justify-content: flex-start;
    gap: 32px;
    min-width: max-content;
  }
}

@media (max-width: 680px) {
  body .site-header,
  body .main-nav {
    height: 68px;
    min-height: 68px;
  }

  body .main-nav { padding: 0 22px; }
  body .main-nav a.active::after {
    bottom: -12px;
    width: 56px;
    height: 4px;
  }
}

/* Shared header logo slot. Set HEADER_LOGO_SRC once in site-shell.js. */
.site-header-logo {
  position: absolute;
  top: 50%;
  left: clamp(18px, 2.4vw, 42px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(76px, 7.5vw, 132px);
  height: 66px;
  transform: translateY(-50%);
}

.site-header-logo img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .72));
}

body .main-nav {
  padding-right: clamp(118px, 12vw, 190px);
  padding-left: clamp(118px, 12vw, 190px);
}

/*
 * One unscaled navigation coordinate system for every page family.
 * Page scenes may scale independently, but the header never participates in
 * those transforms. Important declarations intentionally defeat the older
 * family-specific header measurements while those rollback styles remain.
 */
body .site-header {
  position: fixed !important;
  inset: 0 0 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 68px !important;
  min-height: 68px !important;
  transform: none !important;
}

body .main-nav {
  width: 100% !important;
  min-width: 0 !important;
  height: 68px !important;
  gap: clamp(8px, 1vw, 16px) !important;
  padding-right: clamp(106px, 9vw, 152px) !important;
  padding-left: clamp(106px, 9vw, 152px) !important;
}

body .main-nav a {
  font-size: clamp(12.5px, 0.925vw, 15px) !important;
}

body .main-nav a.active::after {
  bottom: -14px !important;
  width: 55px !important;
  height: 4px !important;
}

body .site-header-logo {
  left: clamp(18px, 2vw, 34px) !important;
  width: clamp(76px, 6.5vw, 106px) !important;
  height: 53px !important;
}

body .site-header-logo img {
  max-height: 46px !important;
}

/* Shared professional footer. */
.site-footer {
  position: relative;
  z-index: 5;
  color: rgba(230, 230, 230, .72);
  background:
    linear-gradient(90deg, rgba(10,116,155,.08), transparent 28%, transparent 72%, rgba(181,215,58,.06)),
    linear-gradient(180deg, #080b0c, #020405);
  border-top: 1px solid rgba(10,116,155,.62);
  box-shadow: 0 -12px 40px rgba(0,0,0,.52);
}

.site-footer-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(150px, 1fr));
  gap: clamp(30px, 4vw, 68px);
  padding: 48px 0 40px;
}

.site-footer-brand span,
.site-footer-nav > strong,
.site-footer-contact > strong {
  display: block;
  color: var(--cyan);
  font: 700 13px/1 "Arial Narrow", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer-brand strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font: italic 700 clamp(30px, 3vw, 46px)/.9 "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.site-footer-brand p,
.site-footer-contact p {
  max-width: 330px;
  margin: 15px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer-nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.site-footer-nav > strong,
.site-footer-contact > strong { margin-bottom: 5px; }

.site-footer a {
  width: fit-content;
  color: rgba(230,230,230,.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .16s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible { color: var(--lime); }

.site-footer-contact a {
  display: inline-block;
  margin-top: 14px;
  color: var(--white);
  font-weight: 700;
}

.site-footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid rgba(230,230,230,.1);
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-footer-inner { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .site-header-logo { left: 12px; width: 70px; height: 54px; }
  .site-header-logo img { max-height: 48px; }
  body .main-nav { padding-left: 105px; padding-right: 22px; }
  .site-footer-inner {
    width: min(100% - 36px, 520px);
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 38px 0 32px;
  }
  .site-footer-bottom {
    width: min(100% - 36px, 520px);
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .member-brand {
    left: 16px;
  }

  .members-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .members-heading h1 {
    font-size: 45px;
    white-space: normal;
  }

  .members-subtitle {
    grid-template-columns: 34px 1fr;
  }

  .members-subtitle p {
    white-space: normal;
  }

  .class-browse {
    grid-template-columns: 1fr auto;
  }

  .member-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1181px) {
  .members-content {
    left: 50%;
    top: clamp(190px, 20.5vh, 210px);
    width: 1290px;
    max-width: calc(100vw - 500px);
    transform: translateX(-50%);
  }

  .members-topline {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    margin-bottom: 24px;
  }

  .members-heading h1 {
    font-size: clamp(64px, 4.75vw, 78px);
  }

  .members-subtitle p {
    font-size: clamp(18px, 1.35vw, 23px);
  }

  .member-grid {
    width: 1290px;
    max-width: none;
    grid-template-columns: repeat(5, minmax(190px, 230px));
    justify-content: space-between;
    gap: 22px 18px;
  }

  .member-card h2 {
    font-size: clamp(19px, 1.2vw, 24px);
  }

  .member-card p {
    font-size: clamp(13px, 0.82vw, 16px);
  }
}

/* Keep the card columns on the background's reflection axes at normal desktop zoom. */
@media (min-width: 821px) {
  .member-grid {
    width: 1400px;
    max-width: none;
    grid-template-columns: repeat(5, 230px);
    justify-content: space-between;
    column-gap: 42px;
  }

  .member-card {
    transform: scaleX(1.25);
    transform-origin: center;
  }
}

/* Database-backed inductee portraits and controls */
.portrait {
  padding: 0;
  background: #101415;
}

.portrait img,
.player-modal-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.member-card > span {
  position: absolute;
  right: 10%;
  bottom: 22.5%;
  color: #0a749b;
  font-size: 44px;
  line-height: 0.7;
  text-shadow: 0 0 8px rgba(10, 116, 155, 0.52);
}

.member-card:hover,
.member-card:focus-visible {
  filter: drop-shadow(0 0 15px rgba(181, 215, 58, 0.75));
}

.player-modal-photo {
  padding: 0;
  overflow: hidden;
  background: #111;
}

.player-modal-photo.shared-profile-gallery {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.shared-profile-gallery figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.shared-profile-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.shared-profile-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.78);
  font: 700 16px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

/* Flexible profile copy prevents names, categories, and biographies from colliding. */
.player-modal-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.player-modal-content h2 {
  position: static;
  flex: 0 0 auto;
  max-width: 100%;
  font-size: clamp(34px, 3.35vw, 54px);
  line-height: 0.9;
}

.player-modal-content.long-name h2 {
  font-size: clamp(29px, 2.85vw, 46px);
}

.player-modal-content.very-long-name h2 {
  font-size: clamp(23px, 2.15vw, 34px);
  line-height: 0.86;
}

.player-modal-content.very-long-name {
  gap: 5px;
}

.player-modal-role,
.player-modal-class {
  position: static;
  flex: 0 0 auto;
  margin: 0;
}

.player-modal-role {
  margin-top: 1px;
}

.player-modal-class {
  margin-bottom: 8px;
}

.player-modal-bio {
  position: static;
  inset: auto;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  margin: 0;
}

.member-card.long-card-name h2 {
  font-size: clamp(16px, 1vw, 20px);
  line-height: 0.9;
}

@media (max-width: 820px) {
  .members-body {
    background-size: cover;
    background-attachment: scroll;
  }

  .members-content {
    position: static;
    width: auto;
    transform: none;
  }
}

.modal-open {
  overflow: hidden;
}

.player-modal[hidden] {
  display: none;
}

.player-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.player-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(2px);
}

.player-modal-panel {
  position: relative;
  width: min(1120px, 94vw);
  aspect-ratio: 1586 / 992;
  background: url("images/player-popup-background.png") center / 100% 100% no-repeat;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.78));
}

.player-modal-close {
  position: absolute;
  z-index: 2;
  top: 5.2%;
  right: 5.3%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0 0 5px;
  color: #f5f5f2;
  background: rgba(0, 0, 0, 0.62);
  border: 2px solid #0a749b;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(10, 116, 155, 0.28);
  font: 300 44px/1 Inter, sans-serif;
  cursor: pointer;
}

.player-modal-photo {
  position: absolute;
  left: 12.55%;
  top: 15.3%;
  display: grid;
  place-items: center;
  width: 28.7%;
  height: 66.8%;
  color: rgba(230, 230, 230, 0.82);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.55);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(70px, 9vw, 132px);
  font-weight: 700;
}

.player-modal-content {
  position: absolute;
  left: 45.7%;
  top: 17.1%;
  width: 43.8%;
  height: 62%;
  font-family: "Barlow Condensed", Arial, sans-serif;
}

.player-modal-content h2 {
  max-width: 90%;
  margin: 0;
  color: #f0ede8;
  font-size: clamp(34px, 4vw, 58px);
  font-style: italic;
  line-height: 0.92;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.68);
  text-transform: uppercase;
}

.player-modal-role,
.player-modal-class {
  position: absolute;
  left: 0;
  margin: 0;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.player-modal-role {
  top: 10.5%;
  color: #0a749b;
}

.player-modal-class {
  top: 18.2%;
  color: var(--lime);
}

.player-modal-bio {
  position: absolute;
  inset: 31% 0 0;
  height: 55%;
  margin-top: 0;
  padding-right: 18px;
  overflow-y: auto;
  color: #f0eeea;
  scrollbar-color: #0a749b rgba(230, 230, 230, 0.18);
  scrollbar-width: thin;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.43;
}

.player-modal-bio p {
  margin: 0 0 18px;
}

.player-modal-actions {
  position: absolute;
  right: 8.5%;
  bottom: 9.5%;
  display: flex;
  gap: 22px;
}

.player-modal-content.long-name h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: 0.9;
}

.player-modal-actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 164px;
  height: 52px;
  padding: 0 18px;
  color: #0a749b;
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid #0a749b;
  border-radius: 5px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.player-modal-actions button span {
  font-size: 38px;
  font-weight: 400;
  line-height: 0;
}

.member-card {
  cursor: pointer;
}

.member-card:focus-visible,
.player-modal button:focus-visible,
.player-modal-bio:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

@media (max-width: 780px) {
  .player-modal {
    align-items: start;
    padding: 18px;
    overflow-y: auto;
  }

  .player-modal-panel {
    width: min(560px, 100%);
    min-height: 720px;
    aspect-ratio: auto;
    margin: 20px 0;
    padding: 74px 34px 30px;
    background: #111 url("images/player-popup-background.png") center / cover no-repeat;
    border: 1px solid #8edfff;
    border-radius: 12px;
    box-shadow: 0 0 14px rgba(82, 204, 255, 0.55);
  }

  .player-modal-close {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 38px;
  }

  .player-modal-photo,
  .player-modal-content,
  .player-modal-actions {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .player-modal-photo {
    height: 330px;
    margin-bottom: 28px;
    border: 8px solid #4b4b49;
  }

  .player-modal-content {
    height: auto;
  }

  .player-modal-role,
  .player-modal-class,
  .player-modal-bio {
    position: relative;
    inset: auto;
  }

  .player-modal-role,
  .player-modal-class {
    margin-top: 12px;
  }

  .player-modal-content h2 {
    font-size: 42px;
  }

  .player-modal-bio {
    height: auto;
    max-height: none;
  }

  .player-modal-actions {
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
  }

  .player-modal-actions button {
    min-width: 0;
    flex: 1;
    gap: 8px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.inductees-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 20%, rgba(10, 116, 155, 0.12), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(181, 215, 58, 0.07), transparent 24%),
    linear-gradient(rgba(4, 7, 8, 0.92), rgba(4, 7, 8, 0.96)),
    url("images/members-background.png") center / cover scroll;
}

.inductees-page {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding: 154px 0 80px;
}

.inductees-hero {
  max-width: 960px;
}

.inductees-eyebrow,
.search-copy p {
  margin: 0 0 10px;
  color: #0a749b;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.inductees-hero h1 {
  margin: 0;
  color: #e6e6e6;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(58px, 6vw, 94px);
  font-style: italic;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.5);
}

.inductees-hero h1 span {
  color: var(--lime);
}

.inductees-hero > p:last-child {
  margin: 24px 0 0;
  color: rgba(230, 230, 230, 0.7);
  font-size: clamp(18px, 1.5vw, 24px);
}

.class-timeline {
  margin-top: 78px;
}

.section-heading {
  display: grid;
  grid-template-columns: 52px auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading span {
  height: 2px;
  background: #0a749b;
  box-shadow: 0 0 8px rgba(10, 116, 155, 0.5);
}

.section-heading h2 {
  margin: 0;
  color: #0a749b;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.timeline-track {
  display: flex;
  gap: 10px;
  padding: 8px 4px 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: #0a749b rgba(230, 230, 230, 0.12);
  scrollbar-width: auto;
  scroll-snap-type: inline proximity;
}

.timeline-track::-webkit-scrollbar { height: 18px; }
.timeline-track::-webkit-scrollbar-track {
  background: rgba(230, 230, 230, 0.12);
  border-radius: 10px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: #0a749b;
  border: 3px solid rgba(5, 9, 10, .9);
  border-radius: 10px;
}
.timeline-track::-webkit-scrollbar-thumb:hover { background: #1591bd; }

.timeline-year {
  position: relative;
  flex: 0 0 104px;
  min-height: 82px;
  display: grid;
  place-content: center;
  gap: 7px;
  color: rgba(230, 230, 230, 0.76);
  background: linear-gradient(145deg, rgba(34, 36, 35, 0.92), rgba(8, 10, 10, 0.96));
  border: 1px solid rgba(10, 116, 155, 0.25);
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.timeline-year::after {
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 8px;
  height: 8px;
  content: "";
  background: #555;
  border: 2px solid #101213;
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-year strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
}

.timeline-year span {
  color: rgba(230, 230, 230, 0.46);
  font-size: 11px;
  text-transform: uppercase;
}

.timeline-year:hover,
.timeline-year:focus-visible,
.timeline-year.current {
  color: #f8f8f4;
  border-color: #0a749b;
  box-shadow: 0 0 14px rgba(10, 116, 155, 0.35), inset 0 0 18px rgba(10, 116, 155, 0.06);
  transform: translateY(-2px);
}

.timeline-year.current strong,
.timeline-year.current span {
  color: var(--lime);
}

.timeline-year.current::after {
  background: var(--lime);
  box-shadow: 0 0 9px var(--lime);
}

.inductee-search {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 58px;
  align-items: end;
  margin-top: 64px;
  padding: 34px 38px 40px;
  background: linear-gradient(120deg, rgba(21, 23, 22, 0.95), rgba(8, 10, 10, 0.92));
  border: 1px solid rgba(230, 230, 230, 0.13);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(230, 230, 230, 0.05);
}

.search-copy h2 {
  margin: 0;
  color: #e6e6e6;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 42px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.search-control {
  position: relative;
}

.search-control input {
  width: 100%;
  height: 64px;
  padding: 0 62px 0 20px;
  color: #f5f5f1;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(10, 116, 155, 0.4);
  border-radius: 5px;
  outline: none;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 25px;
  letter-spacing: 0.5px;
}

.search-control input:focus {
  border-color: #0a749b;
  box-shadow: 0 0 14px rgba(10, 116, 155, 0.28);
}

.search-icon {
  position: absolute;
  right: 24px;
  top: 18px;
  width: 22px;
  height: 22px;
  border: 2px solid #0a749b;
  border-radius: 50%;
  pointer-events: none;
}

.search-icon::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 10px;
  height: 2px;
  content: "";
  background: #0a749b;
  transform: rotate(45deg);
}

.search-results {
  position: absolute;
  z-index: 20;
  inset: calc(100% + 8px) 0 auto;
  max-height: 330px;
  overflow-y: auto;
  background: rgba(8, 10, 10, 0.98);
  border: 1px solid #0a749b;
  border-radius: 5px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.75);
}

.search-results a {
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  color: #e6e6e6;
  border-bottom: 1px solid rgba(230, 230, 230, 0.09);
  text-decoration: none;
}

.search-results a:hover,
.search-results a:focus {
  background: rgba(10, 116, 155, 0.14);
  outline: none;
}

.search-results a strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.search-results a span {
  color: #0a749b;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.no-results {
  margin: 0;
  padding: 18px;
  color: rgba(230, 230, 230, 0.62);
}

.year-empty-state {
  width: min(720px, 100%);
  margin: 70px auto 0;
  padding: 48px;
  background: linear-gradient(145deg, rgba(28, 30, 29, 0.95), rgba(7, 9, 9, 0.96));
  border: 1px solid rgba(10, 116, 155, 0.5);
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(10, 116, 155, 0.18);
  text-align: center;
}

.year-empty-state span {
  color: #0a749b;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 17px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.year-empty-state h2 {
  margin: 12px 0 28px;
  color: #e6e6e6;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.year-empty-state h2 strong {
  color: var(--lime);
}

.year-empty-state a {
  display: inline-flex;
  padding: 14px 24px;
  color: #0a749b;
  border: 1px solid #0a749b;
  border-radius: 5px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .inductees-page {
    width: min(100% - 36px, 720px);
    padding-top: 118px;
  }

  .class-timeline {
    margin-top: 54px;
  }

  .inductee-search {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px 32px;
  }
}

/* Mockup-locked museum scene: background and foreground share one aspect ratio. */
@media (min-width: 821px) {
  .members-body {
    --scene-width: min(100vw, calc(100vh * 1.5988));
    background-color: #020303;
    background-position: center top;
    background-size: var(--scene-width) 100vh;
  }

  .members-content {
    position: absolute;
    left: 50%;
    top: 20.5vh;
    width: min(1265px, calc(var(--scene-width) * 0.797));
    max-width: none;
    transform: translateX(-50%);
  }

  .members-topline {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    margin-bottom: 20px;
  }

  .members-heading h1 {
    font-size: clamp(66px, 4.85vw, 78px);
    line-height: 0.9;
  }

  .members-subtitle {
    width: max-content;
    margin-top: 14px;
  }

  .member-grid {
    width: calc(100% + 50px);
    max-width: none;
    margin-left: 1px;
    grid-template-columns: repeat(5, 230px);
    justify-content: space-between;
    gap: 20px 0;
  }

  .member-card {
    transform: scale(1.25, 1.07);
    transform-origin: center;
  }
}

/* Shared player profile: uniform headings and a biography below all metadata. */
.player-modal-content,
.player-modal-content.very-long-name {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto minmax(0, 1fr);
  column-gap: 16px;
  gap: 7px;
  min-height: 0;
}

.player-modal-content h2,
.player-modal-content.long-name h2,
.player-modal-content.very-long-name h2 {
  position: static;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-height: 2.1em;
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(34px, 3.35vw, 54px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.player-modal-role,
.player-modal-class {
  position: static;
  inset: auto;
  flex: 0 0 auto;
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 1.5px;
}

.player-modal-role {
  grid-column: 1;
  grid-row: 2;
  text-align: left;
  overflow-wrap: anywhere;
}

.player-modal-class {
  grid-column: 2;
  grid-row: 2;
  text-align: right;
  white-space: nowrap;
}

.player-modal-bio {
  grid-column: 1 / -1;
  grid-row: 3;
  position: static;
  inset: auto;
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  margin: 6px 0 0;
  overflow-y: auto;
}

.member-card.long-card-name h2 {
  font-size: clamp(16px, 1vw, 20px);
  line-height: 0.9;
}

@media (max-width: 780px) {
  .player-modal-content,
  .player-modal-content.very-long-name {
    grid-template-rows: auto auto auto;
  }
  .player-modal-content h2,
  .player-modal-content.long-name h2,
  .player-modal-content.very-long-name h2 {
    font-size: 34px;
    min-height: 0;
  }
  .player-modal-bio {
    flex: 0 0 auto;
    overflow-y: visible;
    margin-top: 12px;
  }
}

/* Card text is one flow so multiline names always clear the category. */
.member-card-copy {
  position: absolute;
  left: 12%;
  right: 13%;
  top: 61.6%;
  bottom: 13%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(5px, 0.45vw, 8px);
  overflow: hidden;
}

.member-card-copy h2,
.member-card.long-card-name .member-card-copy h2 {
  position: static;
  inset: auto;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  font-size: clamp(16px, 1.15vw, 23px);
  line-height: 0.91;
}

.member-card.long-card-name .member-card-copy h2 {
  font-size: clamp(15px, 1vw, 20px);
}

.member-card-copy p {
  position: static;
  inset: auto;
  flex: 0 0 auto;
  width: fit-content;
  margin: auto 0 0;
  font-size: clamp(12px, 0.8vw, 16px);
  line-height: 1;
}

.member-card-copy p::after {
  margin-top: 7px;
}

.bronze-plaque-card .portrait {
  background: #2d1307;
  box-shadow:
    inset 0 0 26px rgba(26, 8, 1, 0.82),
    inset 0 0 0 2px rgba(242, 176, 73, 0.46);
}

.bronze-plaque-card .portrait img,
.bronze-plaque-photo img {
  filter: contrast(1.12) saturate(1.08);
}

.bronze-plaque-card::after {
  position: absolute;
  left: 22%;
  top: 11.6%;
  width: 56%;
  height: 45%;
  content: "";
  border: 1px solid rgba(255, 207, 118, 0.38);
  box-shadow: inset 0 0 20px rgba(38, 12, 2, 0.46);
  pointer-events: none;
}

.bronze-plaque-photo {
  background: #2d1307;
  box-shadow:
    inset 0 0 44px rgba(26, 8, 1, 0.86),
    inset 0 0 0 3px rgba(242, 176, 73, 0.48);
}

.silver-plaque-card .portrait {
  background: #24282b;
  box-shadow:
    inset 0 0 26px rgba(2, 6, 9, 0.78),
    inset 0 0 0 2px rgba(225, 236, 242, 0.5);
}

.silver-plaque-card .portrait img {
  filter: contrast(1.12) saturate(0.72);
}

.silver-plaque-card::after {
  border-color: rgba(225, 236, 242, 0.46);
  box-shadow: inset 0 0 20px rgba(3, 8, 12, 0.48);
}

/* Reversible full-image silver plaque cards; popup markup remains unchanged. */
.member-card.plaque-image-card {
  overflow: visible;
  width: min(100%, 205px);
  aspect-ratio: 2 / 3;
  justify-self: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: none;
  transform: none;
}

.member-card.plaque-image-card::before,
.member-card.plaque-image-card::after {
  content: none;
}

.plaque-card-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(0,0,0,.68));
  transition: filter .18s ease, transform .18s ease;
}

.member-card.plaque-image-card:hover,
.member-card.plaque-image-card:focus-visible {
  box-shadow: none;
  outline: none;
  filter: none;
  transform: translateY(-3px);
}

.member-card.plaque-image-card:hover .plaque-card-art,
.member-card.plaque-image-card:focus-visible .plaque-card-art {
  filter: drop-shadow(0 10px 9px rgba(0,0,0,.76));
}

/* Standard browse-by-year dropdown used by the members and class pages. */
.year-select {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  width: 176px;
  min-height: 72px;
  padding: 8px 10px 10px;
  color: #e6e6e6;
  background: #050505;
  border: 1px solid rgba(230, 230, 230, 0.7);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(10, 116, 155, 0.25);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.25px;
  line-height: 1;
  text-transform: uppercase;
}

.year-select::after {
  content: none;
}

.year-select span {
  display: block;
  color: rgba(230, 230, 230, 0.78);
}

.year-select span br {
  display: none;
}

.year-select select {
  position: static;
  inset: auto;
  width: 100%;
  height: 34px;
  padding: 4px 8px;
  color: #e6e6e6;
  background: #000;
  border: 1px solid rgba(230, 230, 230, 0.55);
  border-radius: 3px;
  opacity: 1;
  outline: none;
  font: 600 17px/1 "Barlow Condensed", Arial, sans-serif;
  color-scheme: dark;
  cursor: pointer;
}

.year-select select:hover,
.year-select select:focus {
  border-color: #e6e6e6;
  box-shadow: 0 0 0 2px rgba(10, 116, 155, 0.32);
}

.year-select select option {
  color: #e6e6e6;
  background: #000;
}

/* Name lookup positioned above the standard year dropdown on Members. */
.member-filters {
  display: grid;
  gap: 8px;
  width: 220px;
}

.member-filters .year-select {
  width: 100%;
}

.player-search {
  display: grid;
  gap: 5px;
  color: #e6e6e6;
  font: 600 13px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.player-search span {
  color: rgba(230, 230, 230, 0.78);
}

.player-search input {
  width: 100%;
  height: 36px;
  padding: 5px 10px;
  color: #e6e6e6;
  background: #000;
  border: 1px solid rgba(230, 230, 230, 0.55);
  border-radius: 3px;
  outline: none;
  font: 600 16px/1 "Barlow Condensed", Arial, sans-serif;
}

.player-search input::placeholder {
  color: rgba(230, 230, 230, 0.46);
}

.player-search input:hover,
.player-search input:focus {
  border-color: #e6e6e6;
  box-shadow: 0 0 0 2px rgba(10, 116, 155, 0.32);
}

@media (max-width: 820px) {
  .member-filters {
    width: min(100%, 260px);
  }
}

/* Members landing page: class year directory. */
.members-directory-body {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2)),
    #070808 url("images/members-background.png") center top / 100% 100vh no-repeat scroll;
}

.member-directory {
  width: min(1265px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(178px, 19vh, 200px) 0 80px;
}

.member-directory-heading {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.member-directory h1 {
  margin: 0;
  color: var(--lime);
  font: italic 700 clamp(50px, 4.9vw, 78px)/0.88 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: -1.5px;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.64), 0 0 24px rgba(230, 230, 230, 0.12);
  text-transform: uppercase;
  white-space: nowrap;
}

.member-directory h1 em {
  color: #ede9e3;
  font-style: italic;
}

.directory-intro {
  margin: 24px 0 0;
  color: rgba(230, 230, 230, 0.72);
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.25;
}

.directory-search {
  position: relative;
  display: grid;
  gap: 7px;
}

.directory-search > label {
  color: #0a749b;
  font: 700 14px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.directory-search > input {
  width: 100%;
  height: 48px;
  padding: 8px 14px;
  color: #e6e6e6;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(230, 230, 230, 0.55);
  border-radius: 4px;
  outline: none;
  box-shadow: 0 0 14px rgba(10, 116, 155, 0.2);
  font: 600 18px/1 "Barlow Condensed", Arial, sans-serif;
}

.directory-search > input::placeholder {
  color: rgba(230, 230, 230, 0.43);
}

.directory-search > input:focus {
  border-color: #0a749b;
  box-shadow: 0 0 0 2px rgba(10, 116, 155, 0.24), 0 0 17px rgba(10, 116, 155, 0.3);
}

.directory-search-results {
  position: absolute;
  z-index: 20;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  max-height: 340px;
  overflow-y: auto;
  background: #050707;
  border: 1px solid rgba(10, 116, 155, 0.58);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.75);
}

.directory-search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  color: #e6e6e6;
  border-bottom: 1px solid rgba(230, 230, 230, 0.08);
  text-decoration: none;
}

.directory-search-results a:hover,
.directory-search-results a:focus {
  background: rgba(10, 116, 155, 0.16);
}

.directory-search-results strong {
  font: 600 16px/1.05 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.directory-search-results span {
  flex: none;
  color: var(--lime);
  font: 600 12px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.directory-search-results p {
  margin: 0;
  padding: 14px;
  color: rgba(230, 230, 230, 0.62);
  font-size: 13px;
}

.year-directory-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 24px;
}

.year-directory-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 185px;
  padding: 27px 18px 22px;
  overflow: visible;
  color: #e6e6e6;
  background:
    linear-gradient(145deg, rgba(29, 32, 32, 0.97), rgba(4, 6, 6, 0.98));
  border: 1px solid rgba(156, 218, 245, 0.8);
  border-radius: 7px;
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.62),
    inset 0 0 0 5px rgba(230, 230, 230, 0.035),
    0 0 12px rgba(10, 116, 155, 0.27);
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.year-directory-card::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(230, 230, 230, 0.09);
  pointer-events: none;
}

.year-directory-card > i {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 35% 30%, #e2e5e4, #6d7475 55%, #181b1c);
  border: 1px solid #070909;
  border-radius: 50%;
  box-shadow: 0 1px 3px #000;
}

.year-directory-card > i:nth-child(2) {
  right: 12px;
  left: auto;
}

.year-card-summary {
  display: grid;
  place-items: center;
}

.year-card-summary > span {
  color: #0a749b;
  font: 700 13px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.year-card-summary > strong {
  margin: 2px 0 1px;
  color: var(--lime);
  font: 700 clamp(45px, 3.5vw, 59px)/0.9 "Barlow Condensed", Impact, sans-serif;
  text-shadow: 0 3px 0 #000, 0 0 13px rgba(181, 215, 58, 0.28);
}

.year-card-summary > small {
  color: rgba(230, 230, 230, 0.74);
  font: 600 14px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.year-card-summary > b {
  align-self: end;
  margin-top: 16px;
  color: #0a749b;
  font: 700 12px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.year-card-summary > b em {
  margin-left: 5px;
  color: var(--lime);
  font-size: 20px;
  font-style: normal;
  vertical-align: -1px;
}

.year-card-summary,
.year-card-roster {
  transition: opacity 140ms ease, transform 160ms ease;
}

.year-card-roster {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  display: grid;
  align-content: center;
  width: min(430px, calc(100vw - 36px));
  min-height: 180px;
  padding: 25px 28px 23px;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(24, 28, 28, 0.99), rgba(2, 5, 5, 0.99));
  border: 1px solid var(--lime);
  border-radius: 7px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.88),
    inset 0 0 0 5px rgba(230, 230, 230, 0.04),
    0 0 25px rgba(181, 215, 58, 0.28);
  transform: translate(-50%, -50%) scale(0.94);
}

.year-card-roster > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font: 700 22px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
}

.year-card-roster > span {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding-top: 13px;
  border-top: 1px solid rgba(10, 116, 155, 0.4);
}

.year-card-roster i {
  display: block;
  color: #e6e6e6;
  font: 600 16px/1.12 "Barlow Condensed", Arial, sans-serif;
  font-style: normal;
  letter-spacing: 0.25px;
  text-align: center;
  text-transform: uppercase;
}

.year-directory-card:hover .year-card-summary,
.year-directory-card:focus-visible .year-card-summary {
  opacity: 0;
  transform: translateY(-7px);
}

.year-directory-card:hover .year-card-roster,
.year-directory-card:focus-visible .year-card-roster {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.year-directory-card:hover,
.year-directory-card:focus-visible {
  z-index: 25;
  border-color: var(--lime);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.68),
    inset 0 0 0 5px rgba(230, 230, 230, 0.045),
    0 0 23px rgba(181, 215, 58, 0.26);
  outline: none;
  transform: translateY(-4px);
}

@media (min-width: 821px) {
  .members-directory-body {
    --scene-width: min(100vw, calc(100vh * 1.5988));
    background-color: #020303;
    background-position: center top;
    background-size: var(--scene-width) 100vh;
  }

  .member-directory {
    width: min(1265px, calc(var(--scene-width) * 0.797));
  }
}

@media (min-width: 1181px) {
  .member-directory {
    padding-top: clamp(180px, 20vh, 215px);
  }

  .member-directory-heading {
    margin-bottom: 20px;
  }

  .directory-intro {
    margin-top: 16px;
  }

  .year-directory-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .year-directory-card {
    min-height: clamp(128px, 14.5vh, 150px);
    padding: 20px 14px 14px;
  }

  .year-directory-card::before {
    inset: 8px;
  }

  .year-directory-card > i {
    top: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
  }

  .year-directory-card > i:nth-child(2) {
    right: 10px;
  }

  .year-card-summary > span {
    font-size: 11px;
  }

  .year-card-summary > strong {
    font-size: clamp(40px, 2.8vw, 50px);
  }

  .year-card-summary > small {
    font-size: 12px;
  }

  .year-card-summary > b {
    margin-top: 8px;
    font-size: 10px;
  }

  .year-card-summary > b em {
    font-size: 17px;
  }
}

@media (max-width: 1180px) {
  .year-directory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .member-directory {
    width: min(100% - 36px, 720px);
    padding-top: 125px;
  }

  .member-directory-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .member-directory h1 {
    white-space: normal;
  }

  .directory-search {
    width: min(100%, 400px);
  }

  .year-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .member-directory {
    width: min(100% - 24px, 440px);
  }

  .year-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .year-directory-card {
    min-height: 165px;
  }
}

/* History page */
.history-body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(2, 5, 6, 0.1), rgba(2, 5, 6, 0.28)),
    #030506 url("images/history-scroll-vault-background.png") center top / cover scroll;
}

.history-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 142px 0 80px;
}

.history-heading {
  text-align: center;
}

.history-heading > p {
  margin: 0;
  color: #0a749b;
  font: 700 14px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.history-heading h1 {
  margin: 10px 0 18px;
  color: #e6e6e6;
  font: italic 700 clamp(64px, 7vw, 96px)/0.85 "Barlow Condensed", Impact, sans-serif;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.62), 0 0 22px rgba(230, 230, 230, 0.1);
  text-transform: uppercase;
}

.history-heading > div {
  display: grid;
  grid-template-columns: 90px 9px 90px;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.history-heading > div span {
  height: 2px;
  background: #0a749b;
  box-shadow: 0 0 10px rgba(10, 116, 155, 0.55);
}

.history-heading > div i {
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(181, 215, 58, 0.55);
}

.history-story {
  position: relative;
  margin-top: 38px;
  padding: clamp(34px, 4.5vw, 58px);
  background:
    linear-gradient(145deg, rgba(16, 19, 19, 0.94), rgba(3, 6, 7, 0.94));
  border: 1px solid rgba(10, 116, 155, 0.5);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.72),
    inset 0 0 0 5px rgba(230, 230, 230, 0.025),
    0 0 20px rgba(10, 116, 155, 0.13);
}

.history-story::before,
.history-story::after {
  position: absolute;
  top: 0;
  width: 74px;
  height: 3px;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 10px rgba(181, 215, 58, 0.45);
}

.history-story::before {
  left: 0;
}

.history-story::after {
  right: 0;
}

.history-story p {
  margin: 0;
  color: rgba(230, 230, 230, 0.78);
  font-size: clamp(20px, 1.6875vw, 23.75px);
  line-height: 1.75;
}

.history-story p + p {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(230, 230, 230, 0.09);
}

.history-story a {
  color: var(--lime);
  font-weight: 700;
  text-decoration-color: rgba(181, 215, 58, 0.55);
  text-underline-offset: 3px;
}

.history-story a:hover,
.history-story a:focus {
  color: #0a749b;
}

@media (max-width: 680px) {
  .history-page {
    width: min(100% - 24px, 560px);
    padding-top: 120px;
  }

  .history-story {
    padding: 30px 24px;
  }
}

/* Induction ceremony and banquet */
.ceremony-body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(2, 5, 6, 0.12), rgba(2, 5, 6, 0.32)),
    #030506 url("images/ceremony-honors-theater-background.png") center top / cover fixed;
}

.ceremony-page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 142px 0 90px;
}

.ceremony-hero {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.ceremony-kicker,
.ceremony-section-heading > p,
.ceremony-event-card > span,
.ticket-review > span {
  margin: 0;
  color: #0a749b;
  font: 700 14px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ceremony-hero h1 {
  margin: 10px 0 20px;
  color: #e6e6e6;
  font: italic 700 clamp(58px, 7vw, 96px)/0.84 "Barlow Condensed", Impact, sans-serif;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.65), 0 0 24px rgba(230, 230, 230, 0.1);
  text-transform: uppercase;
}

.ceremony-hero h1 span {
  display: block;
  color: var(--lime);
  font-size: 0.56em;
  letter-spacing: 2px;
}

.ceremony-lead {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(230, 230, 230, 0.76);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.ceremony-draft-note {
  display: inline-block;
  margin: 22px 0 0;
  padding: 7px 11px;
  color: rgba(230, 230, 230, 0.62);
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(230, 230, 230, 0.18);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ceremony-event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.ceremony-event-card {
  min-height: 235px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(17, 20, 20, 0.95), rgba(3, 6, 7, 0.96));
  border: 1px solid rgba(10, 116, 155, 0.44);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.62), inset 0 0 0 4px rgba(230, 230, 230, 0.02);
}

.ceremony-event-primary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 0;
  border-top: 3px solid var(--lime);
}

.ceremony-event-primary > div > span,
.ceremony-location-card > div > span:first-child {
  color: #0a749b;
  font: 700 14px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ceremony-event-primary > div h2 {
  margin-bottom: 0;
}

.ceremony-event-primary > p {
  max-width: 120px;
  color: var(--lime);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: right;
  text-transform: uppercase;
}

.ceremony-location-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1fr);
  gap: 25px;
  align-items: center;
}

.ceremony-location-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border: 1px solid rgba(10, 116, 155, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.ceremony-event-card h2 {
  margin: 11px 0 17px;
  color: #e6e6e6;
  font: italic 700 clamp(28px, 2.6vw, 40px)/0.95 "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.ceremony-event-card p,
.ceremony-event-card address {
  margin: 0;
  color: rgba(230, 230, 230, 0.7);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.ceremony-event-card a {
  color: var(--lime);
}

.ceremony-event-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 16px;
}

.ceremony-event-card dl div {
  padding: 12px;
  background: rgba(0, 0, 0, 0.35);
  border-left: 2px solid #0a749b;
}

.ceremony-event-card dt {
  color: var(--lime);
  font: 700 21px/1 "Barlow Condensed", Arial, sans-serif;
}

.ceremony-event-card dd {
  margin: 4px 0 0;
  color: rgba(230, 230, 230, 0.7);
  font-size: 11px;
  text-transform: uppercase;
}

.ceremony-honorees,
.ticket-section {
  margin-top: 60px;
}

.ceremony-section-heading {
  margin-bottom: 23px;
  text-align: center;
}

.ceremony-section-heading h2 {
  margin: 7px 0 0;
  color: #e6e6e6;
  font: italic 700 clamp(42px, 5vw, 68px)/0.9 "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.ceremony-section-heading > span {
  display: block;
  margin-top: 12px;
  color: rgba(230, 230, 230, 0.58);
  font-size: 13px;
}

.ceremony-honoree-columns {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
}

.ceremony-honoree-columns > article {
  padding: 32px;
  background: rgba(5, 8, 9, 0.94);
  border: 1px solid rgba(230, 230, 230, 0.13);
  border-top: 2px solid #0a749b;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.6);
}

.ceremony-honoree-columns h3 {
  margin: 0 0 21px;
  color: var(--lime);
  font: 700 22px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.ceremony-honoree-columns ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ceremony-honoree-columns li {
  padding: 7px 0 7px 14px;
  color: #e6e6e6;
  border-left: 2px solid rgba(10, 116, 155, 0.65);
  font: 600 18px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.ticket-section {
  padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(145deg, rgba(16, 19, 19, 0.97), rgba(2, 5, 6, 0.98));
  border: 1px solid rgba(10, 116, 155, 0.48);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.72), inset 0 0 0 5px rgba(230, 230, 230, 0.025);
}

.ticket-form {
  display: grid;
  gap: 30px;
}

.ticket-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ticket-pricing > label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px 92px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(230, 230, 230, 0.12);
}

.ticket-pricing label span b,
.ticket-pricing label span small {
  display: block;
}

.ticket-pricing label span b {
  color: #e6e6e6;
  font: 700 19px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.ticket-pricing label span small {
  margin-top: 4px;
  color: rgba(230, 230, 230, 0.48);
  font-size: 11px;
}

.ticket-pricing input,
.ticket-fields input {
  width: 100%;
  height: 43px;
  padding: 8px 11px;
  color: #e6e6e6;
  background: #020303;
  border: 1px solid rgba(230, 230, 230, 0.34);
  border-radius: 3px;
  outline: none;
  font: 600 16px "Inter", Arial, sans-serif;
}

.ticket-pricing input:focus,
.ticket-fields input:focus {
  border-color: #0a749b;
  box-shadow: 0 0 0 2px rgba(10, 116, 155, 0.18);
}

.ticket-pricing output {
  color: var(--lime);
  font: 700 21px/1 "Barlow Condensed", Arial, sans-serif;
  text-align: right;
}

.ticket-total {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
  padding: 17px 20px;
  color: #0a749b;
  background: rgba(10, 116, 155, 0.06);
  border: 1px solid rgba(10, 116, 155, 0.22);
  font: 700 18px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ticket-total output {
  min-width: 110px;
  color: var(--lime);
  font-size: 30px;
}

.ticket-form fieldset {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(230, 230, 230, 0.13);
}

.ticket-form legend {
  padding: 0 10px;
  color: #0a749b;
  font: 700 16px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.ticket-fields {
  display: grid;
  grid-template-columns: 1fr 0.45fr 0.55fr;
  gap: 16px;
}

.ticket-fields label {
  display: grid;
  gap: 6px;
}

.ticket-fields label > span {
  color: rgba(230, 230, 230, 0.68);
  font: 700 12px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticket-field-wide {
  grid-column: 1 / -1;
}

.ticket-payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ticket-payment-options label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 17px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(230, 230, 230, 0.11);
  cursor: pointer;
}

.ticket-payment-options input {
  margin: 3px 0 0;
  accent-color: var(--lime);
}

.ticket-payment-options b,
.ticket-payment-options small {
  display: block;
}

.ticket-payment-options b {
  color: #e6e6e6;
  font: 700 17px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.ticket-payment-options small {
  margin-top: 5px;
  color: rgba(230, 230, 230, 0.55);
  font-size: 11px;
  line-height: 1.45;
}

.ticket-form-message {
  min-height: 18px;
  margin: -10px 0;
  color: #ff7272;
  font-size: 13px;
}

.ticket-review-button {
  justify-self: end;
  min-width: 245px;
  min-height: 51px;
  padding: 13px 19px;
  color: #071012;
  background: var(--lime);
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(181, 215, 58, 0.24);
  font: 700 17px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
}

.ticket-review-button span {
  margin-left: 12px;
  font-size: 22px;
}

.ticket-review {
  margin-top: 30px;
  padding: 28px;
  background: rgba(10, 116, 155, 0.07);
  border: 1px solid rgba(10, 116, 155, 0.43);
}

.ticket-review h3 {
  margin: 8px 0 20px;
  color: #e6e6e6;
  font: italic 700 34px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.ticket-review-details {
  display: grid;
}

#ticket-review-details p {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 15px;
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(230, 230, 230, 0.08);
}

#ticket-review-details strong {
  color: #0a749b;
  font: 700 13px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

#ticket-review-details span,
.ticket-review > p {
  color: rgba(230, 230, 230, 0.75);
  font-size: 13px;
}

.ticket-review > p {
  margin: 20px 0 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .ceremony-event-grid,
  .ceremony-honoree-columns {
    grid-template-columns: 1fr;
  }

  .ceremony-event-primary {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .ceremony-event-primary > p {
    max-width: none;
    text-align: left;
  }

  .ticket-pricing,
  .ticket-payment-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ceremony-page {
    width: min(100% - 24px, 560px);
    padding-top: 120px;
  }

  .ceremony-event-card,
  .ceremony-honoree-columns > article {
    padding: 24px;
  }

  .ceremony-location-card {
    grid-template-columns: 1fr;
  }

  .ceremony-honoree-columns ul,
  .ticket-fields {
    grid-template-columns: 1fr;
  }

  .ticket-field-wide {
    grid-column: auto;
  }

  .ticket-pricing > label {
    grid-template-columns: 1fr 64px;
  }

  .ticket-pricing > label output {
    grid-column: 1 / -1;
    text-align: left;
  }

  .ticket-review-button {
    width: 100%;
  }
}

/* Nomination workflow */
.nomination-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(3, 6, 7, 0.2), rgba(3, 6, 7, 0.42)),
    url("images/nomination-archive-background.png") center top / cover scroll;
}

.nomination-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 80px;
}

.nomination-intro h1 {
  margin: 0;
  color: #e6e6e6;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(52px, 6vw, 86px);
  font-style: italic;
  line-height: 0.92;
  text-transform: uppercase;
}

.nomination-intro > p:last-child {
  margin: 20px 0 0;
  color: rgba(230, 230, 230, 0.72);
  font-size: 17px;
}

.ticket-form[hidden] {
  display: none;
}

#ceremony-location-address { white-space: pre-line; }

.pdf-application {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(10, 116, 155, 0.72);
  border-radius: 6px;
  background: rgba(4, 9, 11, 0.88);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.pdf-application span {
  color: var(--cyan);
  font: 700 14px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pdf-application h2 {
  margin: 6px 0 4px;
  color: var(--white);
  font: italic 700 29px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.pdf-application p {
  margin: 0;
  color: rgba(230, 230, 230, 0.72);
  line-height: 1.45;
}

.pdf-application-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.pdf-application-actions a {
  padding: 12px 17px;
  color: #071013;
  border: 1px solid var(--lime);
  border-radius: 4px;
  background: var(--lime);
  font: 700 16px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.pdf-application-actions a:first-child {
  color: var(--white);
  border-color: rgba(230, 230, 230, 0.42);
  background: transparent;
}

.pdf-application-actions a:hover,
.pdf-application-actions a:focus-visible {
  color: var(--white);
  border-color: var(--cyan);
  background: var(--cyan);
}

@media (max-width: 700px) {
  .pdf-application {
    align-items: stretch;
    flex-direction: column;
  }

  .pdf-application-actions a {
    flex: 1;
    text-align: center;
  }
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 48px 0 24px;
  padding: 0;
  list-style: none;
}

.form-progress li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  color: rgba(230, 230, 230, 0.42);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-progress li::before {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 24px;
  height: 2px;
  content: "";
  background: rgba(230, 230, 230, 0.16);
}

.form-progress li span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #8f9698;
  background: #0b0d0e;
  border: 2px solid #464c4e;
  border-radius: 50%;
  font-size: 20px;
}

.form-progress li.active,
.form-progress li.complete {
  color: #e6e6e6;
}

.form-progress li.active span {
  color: #071013;
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 14px rgba(181, 215, 58, 0.42);
}

.form-progress li.complete span {
  color: #041014;
  background: #0a749b;
  border-color: #0a749b;
}

.nomination-form,
.submission-success {
  padding: clamp(24px, 4vw, 50px);
  background: linear-gradient(145deg, rgba(25, 27, 27, 0.97), rgba(7, 9, 9, 0.98));
  border: 1px solid rgba(10, 116, 155, 0.48);
  border-radius: 10px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(230, 230, 230, 0.06);
}

.form-step[hidden],
.submission-success[hidden] {
  display: none;
}

.form-step-heading {
  margin-bottom: 30px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(230, 230, 230, 0.14);
}

.form-step-heading > span {
  color: #0a749b;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-step-heading h2 {
  margin: 6px 0 0;
  color: #e6e6e6;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.form-step-heading h2 strong {
  color: var(--lime);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field > span,
.electronic-signature > span {
  color: rgba(230, 230, 230, 0.82);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.electronic-signature input {
  width: 100%;
  color: #e6e6e6;
  background: #030404;
  border: 1px solid rgba(230, 230, 230, 0.28);
  border-radius: 4px;
  outline: 0;
  font: 20px/1.4 Inter, Arial, sans-serif;
}

.field input,
.field select,
.electronic-signature input {
  min-height: 60px;
  padding: 0 13px;
}

.field textarea {
  min-height: 90px;
  padding: 12px 13px;
  resize: vertical;
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.electronic-signature input:focus {
  border-color: #0a749b;
  box-shadow: 0 0 0 2px rgba(10, 116, 155, 0.22);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #ff6978;
}

.field small,
.electronic-signature small {
  color: rgba(230, 230, 230, 0.52);
}

.upload-field {
  padding: 18px;
  background: rgba(10, 116, 155, 0.05);
  border: 1px dashed rgba(10, 116, 155, 0.55);
  border-radius: 5px;
}

.qualification-note {
  margin-top: 24px;
  padding: 17px 20px;
  color: rgba(230, 230, 230, 0.78);
  background: rgba(181, 215, 58, 0.07);
  border-left: 4px solid var(--lime);
  line-height: 1.55;
}

.all-criteria {
  margin-bottom: 28px;
  padding: 22px;
  background: rgba(181, 215, 58, 0.045);
  border: 1px solid rgba(181, 215, 58, 0.34);
  border-radius: 7px;
}

.all-criteria > h3 {
  margin: 0 0 17px;
  color: var(--lime);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 23px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.criteria-grid article {
  padding: 15px 16px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid #0a749b;
}

.criteria-grid article:last-child {
  grid-column: 1 / -1;
}

.criteria-grid h4 {
  margin: 0 0 5px;
  color: #0a749b;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.criteria-grid p {
  margin: 0;
  color: rgba(230, 230, 230, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.category-fields,
.shared-fields,
.signature-fields {
  margin: 0 0 30px;
  padding: 25px;
  border: 1px solid rgba(230, 230, 230, 0.15);
  border-radius: 7px;
}

.category-fields[hidden] {
  display: none;
}

.category-fields legend,
.shared-fields legend,
.signature-fields legend {
  padding: 0 10px;
  color: var(--lime);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 230, 230, 0.12);
}

.form-actions button,
.submission-success a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 150px;
  min-height: 50px;
  padding: 0 22px;
  color: #0a749b;
  background: #030404;
  border: 1px solid #0a749b;
  border-radius: 5px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.form-actions button:hover,
.form-actions button:focus-visible,
.submission-success a:hover {
  color: #050707;
  background: #0a749b;
}

.form-actions button b {
  font-size: 30px;
  line-height: 0;
}

.form-actions .form-submit {
  color: #071012;
  background: var(--lime);
  border-color: var(--lime);
}

.form-actions button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.nomination-review {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.nomination-review section {
  padding: 22px;
  background: rgba(230, 230, 230, 0.035);
  border: 1px solid rgba(230, 230, 230, 0.12);
  border-radius: 6px;
}

.nomination-review h3 {
  margin: 0 0 16px;
  color: #0a749b;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nomination-review dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
}

.nomination-review dl div {
  min-width: 0;
}

.nomination-review dt {
  color: rgba(230, 230, 230, 0.48);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nomination-review dd {
  margin: 4px 0 0;
  color: #e6e6e6;
  line-height: 1.5;
  white-space: pre-wrap;
}

.attestation {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0;
  color: rgba(230, 230, 230, 0.82);
  line-height: 1.5;
}

.attestation input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--lime);
}

.electronic-signature {
  display: grid;
  gap: 9px;
  padding: 22px;
  background: rgba(181, 215, 58, 0.06);
  border: 1px solid rgba(181, 215, 58, 0.5);
  border-radius: 6px;
}

.electronic-signature input {
  font-family: "Barlow Condensed", cursive;
  font-size: 25px;
  font-style: italic;
}

.form-error {
  margin-top: 20px;
  padding: 15px 18px;
  color: #ffd6da;
  background: rgba(183, 28, 47, 0.25);
  border: 1px solid #ff6978;
  border-radius: 5px;
}

.submission-success {
  margin-top: 48px;
  text-align: center;
}

.submission-success > span {
  color: var(--lime);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.submission-success h2 {
  margin: 10px 0 18px;
  color: #e6e6e6;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.submission-success p {
  margin: 0 0 28px;
  color: rgba(230, 230, 230, 0.76);
}

.submission-success strong {
  color: #0a749b;
}

@media (max-width: 760px) {
  .nomination-page {
    width: min(100% - 24px, 620px);
    padding-top: 108px;
  }

  .form-progress {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-progress li {
    justify-content: center;
  }

  .form-progress li strong {
    display: none;
  }

  .form-grid,
  .nomination-review dl,
  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .criteria-grid article:last-child {
    grid-column: auto;
  }

  .field.full,
  .field.small {
    grid-column: auto;
  }

  .category-fields,
  .shared-fields,
  .signature-fields {
    padding: 18px 14px;
  }

  .form-actions button {
    min-width: 0;
    flex: 1;
  }
}
/* By-laws charter chamber */
html {
  scroll-behavior: smooth;
}

.bylaws-body {
  min-height: 100vh;
  margin: 0;
  color: #e6e6e6;
  background: #050708 url("images/bylaws-charter-chamber-background.png") center top / cover fixed no-repeat;
  font-family: "Inter", sans-serif;
}

.bylaws-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .5) 25%, rgba(0, 0, 0, .54) 75%, rgba(0, 0, 0, .12)),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .38));
}

.bylaws-page {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 90px;
}

.bylaws-heading {
  text-align: center;
  margin-bottom: 30px;
}

.bylaws-heading > p:first-child,
.bylaws-toc-heading span,
.bylaws-article header span {
  margin: 0;
  color: #0a749b;
  font: 700 14px/1 "Barlow Condensed", sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.bylaws-heading h1 {
  margin: 6px 0 7px;
  color: #e6e6e6;
  font: italic 700 clamp(58px, 7vw, 92px)/.9 "Barlow Condensed", sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 5px 16px #000;
}

.bylaws-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: min(330px, 75%);
  margin: 18px auto;
}

.bylaws-rule span {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, transparent, #0a749b);
}

.bylaws-rule span:last-child {
  background: linear-gradient(90deg, #0a749b, transparent);
}

.bylaws-rule i {
  width: 10px;
  height: 10px;
  background: #b5d73a;
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(181, 215, 58, .75);
}

.bylaws-intro {
  margin: 0 !important;
  color: #e6e6e6 !important;
  font-size: 17px !important;
}

.bylaws-revision {
  margin: 8px 0 0 !important;
  color: #899398 !important;
  font: 600 12px/1.4 "Inter", sans-serif !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
}

.nomination-form {
  height: 790px;
  max-height: 790px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #0a749b rgba(0, 0, 0, .3);
  scrollbar-width: thin;
}

.nomination-form::-webkit-scrollbar { width: 10px; }
.nomination-form::-webkit-scrollbar-track { background: rgba(0, 0, 0, .3); }
.nomination-form::-webkit-scrollbar-thumb {
  background: #0a749b;
  border: 2px solid rgba(0, 0, 0, .3);
  border-radius: 10px;
}

.bylaws-coming-soon {
  margin: 0 0 24px;
  color: #b5d73a;
  font: 700 33px/1.05 "Barlow Condensed", sans-serif;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(181, 215, 58, .28);
}

.bylaws-heading.interior-page-header { margin-bottom: 24px !important; }

.bylaws-toc,
.bylaws-article {
  border: 1px solid rgba(10, 116, 155, .42);
  background: linear-gradient(145deg, rgba(15, 20, 22, .96), rgba(4, 6, 7, .94));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .58), inset 0 1px rgba(230, 230, 230, .04);
}

.bylaws-toc {
  position: relative;
  padding: 31px 34px 34px;
  border-top: 3px solid #b5d73a;
}

.bylaws-toc::before,
.bylaws-toc::after,
.bylaws-article::before,
.bylaws-article::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e6e6e6, #687277 45%, #171b1d 70%);
  box-shadow: 0 1px 3px #000;
}

.bylaws-toc::before,
.bylaws-article::before { top: 10px; left: 10px; }
.bylaws-toc::after,
.bylaws-article::after { top: 10px; right: 10px; }

.bylaws-toc-heading {
  text-align: center;
  margin-bottom: 23px;
}

.bylaws-toc-heading h2 {
  margin: 5px 0 0;
  font: italic 700 38px/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.bylaws-toc ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bylaws-toc a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 53px;
  padding: 8px 13px;
  color: #e6e6e6;
  border: 1px solid rgba(230, 230, 230, .08);
  background: rgba(230, 230, 230, .026);
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}

.bylaws-toc a:hover,
.bylaws-toc a:focus-visible {
  border-color: #0a749b;
  background: rgba(10, 116, 155, .09);
  transform: translateY(-2px);
  outline: none;
}

.bylaws-toc a span {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  color: #b5d73a;
  border: 1px solid rgba(181, 215, 58, .38);
  font: 700 15px/1 "Barlow Condensed", sans-serif;
}

.bylaws-toc a strong {
  font: 700 16px/1.1 "Barlow Condensed", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bylaws-articles {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.bylaws-article {
  position: relative;
  padding: 32px 42px 25px;
  scroll-margin-top: 92px;
}

.bylaws-article:target {
  border-color: #b5d73a;
  box-shadow: 0 0 28px rgba(181, 215, 58, .15), 0 16px 42px rgba(0, 0, 0, .58);
}

.bylaws-article header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(230, 230, 230, .12);
}

.bylaws-article header h2 {
  margin: 0;
  color: #e6e6e6;
  font: italic 700 34px/1 "Barlow Condensed", sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.bylaws-article > ol {
  margin: 22px 0 9px;
  padding-left: 26px;
}

.bylaws-article li {
  padding-left: 8px;
  margin: 0 0 14px;
  color: #e6e6e6;
  font-size: 15px;
  line-height: 1.7;
}

.bylaws-article li::marker {
  color: #b5d73a;
  font-weight: 700;
}

.bylaws-article li ol {
  margin: 14px 0 0;
  padding-left: 24px;
}

.bylaws-article li strong {
  color: #0a749b;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.back-to-contents {
  display: block;
  margin-top: 17px;
  color: #0a749b;
  font: 700 13px/1 "Barlow Condensed", sans-serif;
  letter-spacing: .08em;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

.back-to-contents:hover { color: #b5d73a; }
.back-to-contents span { margin-left: 5px; }

@media (max-width: 800px) {
  .bylaws-page {
    width: min(100% - 24px, 680px);
    padding-top: 94px;
  }

  .bylaws-toc ol { grid-template-columns: repeat(2, 1fr); }
  .bylaws-article { padding: 30px 25px 23px; }
}

@media (max-width: 520px) {
  .bylaws-toc { padding: 28px 20px 24px; }
  .bylaws-toc ol { grid-template-columns: 1fr; }
  .bylaws-article header { display: block; }
  .bylaws-article header h2 { margin-top: 7px; font-size: 30px; }
  .bylaws-article > ol { padding-left: 21px; }
}

/* One-pass generated sculpted portrait-plaque rotunda for This Year's Inductees. */
.inductees-body {
  background:
    linear-gradient(180deg, rgba(1, 4, 5, 0.03), rgba(1, 4, 5, 0.1) 66%, rgba(1, 4, 5, 0.42)),
    url("images/inductees-rotunda-sculpted-portrait-plaques.png") center top / cover scroll;
}

.inductees-page {
  width: min(1540px, calc(100% - 54px));
  min-height: 100vh;
  padding: 108px 0 38px;
}

.inductees-page .inductees-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 14px 26px 18px;
  background: linear-gradient(180deg, rgba(2, 6, 8, 0.6), rgba(2, 6, 8, 0.18));
  border-top: 2px solid var(--cyan);
  text-align: center;
  backdrop-filter: blur(2px);
}

.inductees-page .inductees-hero h1 {
  font-size: clamp(48px, 5vw, 75px);
}

.inductees-page .inductees-hero > p:last-child {
  margin-top: 13px;
  font-size: clamp(15px, 1.2vw, 19px);
}

.inductees-page .class-timeline {
  margin-top: clamp(500px, 60vh, 640px);
  padding: 17px 22px 8px;
  background: linear-gradient(180deg, rgba(3, 7, 9, 0.62), rgba(2, 5, 6, 0.86));
  border: 1px solid rgba(10, 116, 155, 0.35);
  backdrop-filter: blur(4px);
}

.timeline-class-preview {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: clamp(300px, 34vh, 370px);
  width: min(340px, 23vw);
  min-height: 250px;
  padding: 24px 28px 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(230, 230, 230, 0.045), transparent 38%),
    rgba(3, 7, 8, 0.88);
  border: 1px solid rgba(10, 116, 155, 0.58);
  border-top: 3px solid var(--lime);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.68), inset 0 0 0 3px rgba(230, 230, 230, 0.025);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(5px);
}

.timeline-class-preview[hidden] {
  display: none;
}

.timeline-class-preview > span {
  color: var(--cyan);
  font: 700 12px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.timeline-class-preview h2 {
  margin: 7px 0 15px;
  color: var(--lime);
  font: italic 700 48px/0.92 "Barlow Condensed", Impact, sans-serif;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
}

#timeline-preview-names {
  display: grid;
  gap: 7px;
}

#timeline-preview-names a {
  margin: 0;
  color: rgba(230, 230, 230, 0.9);
  font: 700 clamp(18px, 1.25vw, 21px)/1.08 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#timeline-preview-names a:hover,
#timeline-preview-names a:focus-visible {
  color: var(--lime);
}

.inductees-page .section-heading {
  margin-bottom: 8px;
}

.inductees-page .timeline-year {
  min-height: 66px;
}

.inductees-page .inductee-search {
  margin-top: 18px;
  padding: 20px 28px 24px;
}

@media (max-width: 820px) {
  .inductees-page {
    width: min(100% - 24px, 720px);
    padding-top: 92px;
  }

  .inductees-page .class-timeline {
    margin-top: 500px;
  }

  .timeline-class-preview {
    top: 300px;
    width: min(330px, calc(100% - 30px));
  }
}

