:root {
  --bg: #09070b;
  --bg-2: #110b13;
  --panel: #19111c;
  --panel-2: #26172b;
  --text: #fff7ef;
  --muted: #b9aab8;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ef3029;
  --teal: #ff3ccd;
  --purple: #8b2ac4;
  --amber: #ffbd43;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

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

button,
input,
select,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 56px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.9), rgba(8, 9, 13, 0.18));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.scrolled {
  min-height: 64px;
  background: rgba(8, 9, 13, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 132px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(239, 48, 41, 0.22));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-action,
.secondary-button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.primary-button {
  color: var(--white);
  background: var(--red);
  border-color: transparent;
}

.home-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 72px 80px;
  isolation: isolate;
}

.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: -3;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 900ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.95) 0%, rgba(8, 9, 13, 0.73) 36%, rgba(8, 9, 13, 0.12) 74%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 13, 0.08) 30%),
    radial-gradient(circle at 82% 48%, rgba(255, 60, 205, 0.2), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
}

.kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 94px;
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

p {
  line-height: 1.65;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-rail {
  position: absolute;
  left: 72px;
  bottom: 32px;
  display: flex;
  gap: 10px;
}

.hero-brand-art {
  position: absolute;
  right: 4%;
  bottom: -54px;
  z-index: 1;
  width: min(38vw, 500px);
  pointer-events: none;
}

.hero-mascot {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 30px 30px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 24px rgba(255, 60, 205, 0.16));
}

.rail-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
}

.rail-dot.active {
  background: var(--teal);
}

.partner-carousel {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 90px;
  align-items: center;
  min-height: 88px;
  overflow: hidden;
  background: #0d0910;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-carousel-label {
  display: grid;
  align-self: stretch;
  place-items: center;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(239, 48, 41, 0.34), rgba(139, 42, 196, 0.18)),
    var(--panel);
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.partner-marquee {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partner-marquee-track {
  display: flex;
  width: max-content;
  animation: partner-marquee 42s linear infinite;
}

.partner-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.partner-logo-item {
  display: grid;
  grid-template-columns: 52px minmax(90px, 1fr);
  align-items: center;
  gap: 12px;
  width: 205px;
  min-height: 86px;
  padding: 10px 18px;
  color: var(--muted);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
  transition: color 160ms ease, background 160ms ease;
}

.partner-logo-item:hover {
  color: var(--white);
  background: rgba(255, 60, 205, 0.07);
}

.partner-logo-item img {
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;
  object-fit: cover;
  border: 1px solid var(--line);
}

@keyframes partner-marquee {
  to {
    transform: translateX(-50%);
  }
}

.partner-carousel-link {
  display: grid;
  align-self: stretch;
  place-items: center;
  padding: 14px;
  color: var(--white);
  border-left: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-strip,
.latest-band,
.section,
.subpage-hero {
  padding: 78px 72px;
}

.portal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--bg);
}

.portal-tile,
.content-card,
.club-panel,
.partner-card,
.news-card {
  background: var(--panel);
  border: 1px solid var(--line);
}

.portal-tile {
  min-height: 245px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.portal-tile:hover {
  transform: translateY(-4px);
  background: var(--panel-2);
  border-color: rgba(255, 60, 205, 0.5);
}

.portal-tile span,
.card-label,
.news-card time,
.record-row .status,
.mini-label {
  display: inline-flex;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-tile h2 {
  margin-top: 62px;
  font-size: 28px;
}

.portal-tile p,
.muted,
.content-card p,
.club-panel p,
.partner-card p,
.news-card p,
.case-preview p {
  color: var(--muted);
}

.latest-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(239, 48, 41, 0.22), transparent 44%),
    linear-gradient(315deg, rgba(255, 60, 205, 0.12), transparent 38%),
    #0b0d12;
  border-top: 1px solid var(--line);
}

.latest-band h2 {
  max-width: 760px;
}

.recent-bans {
  padding: 52px 72px;
  background:
    linear-gradient(180deg, rgba(239, 48, 41, 0.08), transparent 30%),
    var(--bg);
  border-top: 1px solid var(--line);
}

.recent-bans-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.recent-bans-heading p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.recent-ban-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.recent-ban-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto;
  gap: 4px 14px;
  min-height: 64px;
  padding: 10px 14px;
  color: var(--muted);
  background: var(--panel);
  transition: background 160ms ease;
}

a.recent-ban-row:hover {
  color: var(--text);
  background: rgba(255, 60, 205, 0.08);
}

.recent-ban-row > span {
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
}

.recent-ban-head {
  display: none;
}

.recent-ban-row > span:first-child {
  color: var(--text);
  font-weight: 800;
}

.recent-ban-row > span:nth-child(2),
.recent-ban-row > span:nth-child(3) {
  font-size: 12px;
}

.recent-ban-row > span:nth-child(3) {
  grid-column: 1;
}

.recent-ban-row > span:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
}

.brand-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  padding: 48px 72px;
  background:
    radial-gradient(circle at 16% 52%, rgba(255, 60, 205, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(139, 42, 196, 0.16), transparent 46%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-feature-art {
  align-self: end;
  height: 470px;
}

.brand-feature-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.48));
}

.brand-feature-copy {
  max-width: 650px;
  padding: 40px;
}

.feature-logo {
  display: block;
  width: min(520px, 100%);
  max-height: 230px;
  object-fit: contain;
  object-position: left center;
  margin: -24px 0 -20px;
}

.brand-feature-copy > p:not(.kicker) {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
}

.brand-feature-copy .mascot-intro {
  margin: 8px 0 24px;
  color: var(--text);
  font-size: 15px;
}

.mascot-intro strong {
  color: var(--amber);
}

.subpage-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding-top: 132px;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.96), rgba(8, 9, 13, 0.58)),
    linear-gradient(135deg, rgba(239, 48, 41, 0.34), transparent 48%),
    linear-gradient(315deg, rgba(255, 60, 205, 0.2), transparent 42%),
    #130c16;
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  max-width: 980px;
  font-size: 70px;
}

.club-hero {
  padding-right: 42%;
}

.subpage-mascot {
  position: absolute;
  right: 7%;
  bottom: -82px;
  z-index: -1;
  width: min(32vw, 390px);
  filter:
    drop-shadow(0 26px 28px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 20px rgba(255, 60, 205, 0.16));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 28px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.content-card {
  min-height: 290px;
  display: grid;
  align-content: end;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.content-card.is-hidden {
  display: none;
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    radial-gradient(circle at 75% 25%, rgba(255, 60, 205, 0.22), transparent 26%);
}

.content-card > * {
  position: relative;
  z-index: 1;
}

.content-card.red::before {
  background:
    linear-gradient(135deg, rgba(209, 54, 69, 0.4), transparent 52%),
    radial-gradient(circle at 75% 25%, rgba(240, 170, 66, 0.18), transparent 26%);
}

.content-card.teal::before {
  background:
    linear-gradient(135deg, rgba(255, 60, 205, 0.3), transparent 52%),
    linear-gradient(315deg, rgba(139, 42, 196, 0.28), transparent 44%),
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.14), transparent 26%);
}

.content-card.amber::before {
  background:
    linear-gradient(135deg, rgba(240, 170, 66, 0.34), transparent 52%),
    radial-gradient(circle at 75% 25%, rgba(209, 54, 69, 0.2), transparent 26%);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.filter.active,
.filter:hover {
  color: var(--white);
  border-color: rgba(255, 60, 205, 0.6);
  background: rgba(255, 60, 205, 0.14);
}

.split-layout,
.ban-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.side-stack {
  display: grid;
  gap: 14px;
}

.club-panel,
.partner-card,
.news-card,
.case-preview {
  padding: 24px;
}

.compact-list {
  display: grid;
  gap: 12px;
}

.compact-list div,
.chapter-list article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.chapter-list {
  display: grid;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid var(--teal);
}

.rule-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.rule-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.rule-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  transform: rotate(45deg);
}

.rule-list.large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-top: 24px;
}

.rule-list.compact {
  gap: 8px;
  margin-top: 16px;
}

.rule-list.compact li {
  font-size: 13px;
  line-height: 1.45;
}

.club-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.club-actions {
  margin-top: 28px;
}

.compact-club-info {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 48px;
  padding-bottom: 52px;
}

.compact-club-info .club-panel {
  padding: 20px;
}

.compact-club-info .side-stack {
  display: contents;
}

.mini-schedule {
  display: grid;
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.mini-schedule div {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(160px, 1.3fr);
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.045);
}

.mini-schedule strong {
  color: var(--text);
  font-size: 13px;
}

.mini-schedule span {
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--white);
  font-weight: 900;
}

.staff-section {
  background:
    linear-gradient(180deg, rgba(255, 60, 205, 0.07), transparent 24%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.staff-group,
.dancer-panel {
  background: var(--panel);
  border: 1px solid var(--line);
}

.staff-group {
  min-height: 250px;
  padding: 22px;
}

.staff-list {
  display: grid;
  gap: 10px;
}

.staff-list div,
.dancer-entry {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.staff-list .staff-profile-preview {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(239, 48, 41, 0.14), rgba(255, 60, 205, 0.06)),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 60, 205, 0.24);
}

.staff-profile-preview img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.staff-profile-preview > div {
  display: grid;
  align-content: center;
  gap: 3px;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.staff-profile-preview small {
  color: var(--amber);
  font-size: 10px;
  line-height: 1.35;
}

.staff-profile-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 850;
  border-bottom: 1px solid var(--teal);
}

.staff-list strong,
.dancer-entry strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.staff-list span,
.dancer-entry span,
.dancer-panel-heading > span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.dancer-panel {
  margin-top: 16px;
  padding: 22px;
}

.dancer-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.dancer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.partner-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partner-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--teal));
  font-weight: 900;
}

.ban-sidebar {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 88px;
}

.ban-main {
  min-width: 0;
}

.ban-controls {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 0.8fr) minmax(160px, 0.8fr);
  gap: 12px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.ban-controls label {
  display: grid;
  gap: 8px;
}

.ban-controls span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ban-controls input,
.ban-controls select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  outline: none;
}

.table-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0;
}

.table-summary p {
  margin: 0;
  color: var(--muted);
}

.ban-record-table {
  display: grid;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
}

.record-row {
  display: grid;
  grid-template-columns:
    minmax(150px, 1.15fr)
    minmax(150px, 1.1fr)
    minmax(110px, 0.75fr)
    minmax(120px, 0.8fr)
    minmax(110px, 0.75fr)
    minmax(120px, 0.75fr)
    minmax(130px, 0.9fr);
  width: 100%;
  min-width: 920px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.record-row:not(.record-head) {
  cursor: pointer;
}

.record-row:not(.record-head):hover,
.record-row.selected {
  background: rgba(255, 60, 205, 0.1);
}

.record-row span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow-wrap: anywhere;
}

.record-head {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.status {
  min-width: 72px;
  min-height: 28px;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
}

.status.active {
  color: #ffffff;
  background: rgba(209, 54, 69, 0.24);
  border-color: rgba(209, 54, 69, 0.55);
}

.status.review {
  color: #ffffff;
  background: rgba(240, 170, 66, 0.2);
  border-color: rgba(240, 170, 66, 0.55);
}

.status.expired {
  color: #ffffff;
  background: rgba(139, 42, 196, 0.2);
  border-color: rgba(255, 60, 205, 0.48);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 72px;
  color: var(--muted);
  background: #050609;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 22px;
  }

  .main-nav {
    display: none;
  }

  .home-hero {
    min-height: 660px;
    padding: 108px 24px 76px;
  }

  .hero-brand-art {
    right: -5%;
    bottom: -24px;
    width: min(44vw, 390px);
    opacity: 0.78;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-rail {
    left: 24px;
  }

  .partner-carousel {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .partner-carousel-link {
    display: none;
  }

  .portal-strip,
  .latest-band,
  .recent-bans,
  .section,
  .subpage-hero,
  .site-footer {
    padding-inline: 24px;
  }

  .brand-feature {
    grid-template-columns: minmax(230px, 0.8fr) minmax(320px, 1.2fr);
    padding-inline: 24px;
  }

  .brand-feature-art {
    height: 400px;
  }

  .brand-feature-copy {
    padding: 24px;
  }

  .club-hero {
    padding-right: 38%;
  }

  .subpage-mascot {
    right: 2%;
    width: min(36vw, 330px);
  }

  .portal-strip,
  .content-grid,
  .content-grid.two,
  .partner-grid,
  .news-grid,
  .leadership-grid,
  .dancer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-ban-list {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .split-layout,
  .ban-workspace {
    grid-template-columns: 1fr;
  }

  .ban-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ban-controls {
    grid-template-columns: 1fr;
  }

  .rule-list.large {
    grid-template-columns: 1fr;
  }

  .compact-club-info {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 40px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 104px;
    height: 48px;
  }

  .header-action {
    min-height: 38px;
    padding-inline: 12px;
  }

  .home-hero {
    min-height: 620px;
  }

  .hero-brand-art {
    display: none;
  }

  .partner-carousel {
    grid-template-columns: 1fr;
  }

  .partner-carousel-label {
    min-height: 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partner-logo-item {
    grid-template-columns: 46px minmax(84px, 1fr);
    width: 180px;
    min-height: 78px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .partner-logo-item img {
    width: 46px;
    height: 46px;
    max-width: 46px;
    max-height: 46px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 30px;
  }

  .subpage-hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .latest-band,
  .recent-bans-heading,
  .table-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-feature {
    grid-template-columns: 1fr;
    padding: 44px 20px;
  }

  .brand-feature-art {
    height: 330px;
  }

  .brand-feature-copy {
    padding: 8px 0 0;
  }

  .feature-logo {
    max-height: 180px;
    margin-block: -16px;
  }

  .club-hero {
    padding-right: 24px;
  }

  .subpage-mascot {
    right: -74px;
    bottom: -38px;
    width: 260px;
    opacity: 0.3;
  }

  .portal-strip,
  .content-grid,
  .content-grid.two,
  .partner-grid,
  .news-grid,
  .leadership-grid,
  .dancer-grid,
  .ban-sidebar {
    grid-template-columns: 1fr;
  }

  .portal-tile {
    min-height: 190px;
  }

  .portal-tile h2 {
    margin-top: 34px;
  }

  .recent-bans {
    padding-block: 42px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mini-schedule div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .dancer-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track {
    animation-play-state: paused;
  }
}
