:root {
  --timberlake-green: #0b4b33;
  --timberlake-green-dark: #073522;
  --timberlake-green-soft: #e8f0ec;
  --timberlake-gold: #d8a928;
  --timberlake-gold-light: #f4df9c;
  --timberlake-ink: #17211c;
  --timberlake-muted: #66736c;
  --timberlake-border: #dfe6e2;
  --timberlake-surface: #f6f8f7;
  --timberlake-white: #ffffff;
  --site-shadow: 0 0.75rem 2rem rgba(7, 53, 34, 0.09);
  --site-shadow-hover: 0 1rem 2.5rem rgba(7, 53, 34, 0.14);
  --radius-sm: 0.5rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.25rem;
  --space-section: clamp(3.5rem, 8vw, 6.5rem);
}

html {
  font-size: 16px;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--timberlake-ink);
  background: var(--timberlake-white);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--timberlake-green);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--timberlake-green-dark);
}

:focus-visible {
  outline: 0.2rem solid var(--timberlake-gold);
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1100;
  padding: 0.65rem 1rem;
  color: var(--timberlake-white);
  background: var(--timberlake-green-dark);
  border-radius: 0.25rem;
  transform: translateY(-150%);
}

.skip-link:focus {
  color: var(--timberlake-white);
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 1000;
  background: var(--timberlake-white);
  border-top: 0.3rem solid var(--timberlake-gold);
  box-shadow: 0 0.2rem 1.25rem rgba(7, 53, 34, 0.08);
}

.site-navbar {
  min-height: 5rem;
  padding-block: 0.65rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 14rem;
  color: var(--timberlake-green-dark);
  text-decoration: none;
}

.site-brand:hover {
  color: var(--timberlake-green);
}

.site-logo-placeholder {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: grid;
  place-items: center;
  color: var(--timberlake-white);
  background: var(--timberlake-green);
  border: 0.16rem solid var(--timberlake-gold);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.site-logo {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  object-fit: contain;
}

.site-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.site-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.site-brand-sport {
  margin-top: 0.3rem;
  color: var(--timberlake-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-navbar .navbar-toggler {
  padding: 0.55rem;
  border-color: var(--timberlake-border);
}

.site-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 169, 40, 0.35);
}

.desktop-navigation .nav-link {
  border: 0;
  background: transparent;
}

.mobile-menu-button {
  display: inline-flex;
}

.mobile-navigation {
  width: min(90vw, 24rem) !important;
  color: var(--timberlake-ink);
  background: var(--timberlake-white);
}

.mobile-navigation .offcanvas-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--timberlake-border);
}

.mobile-navigation .offcanvas-title {
  color: var(--timberlake-green-dark);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mobile-navigation .offcanvas-body {
  padding: 1rem 1.25rem 1.5rem;
}

.mobile-navigation .nav-link {
  width: 100%;
  padding: 0.85rem 0.25rem;
  color: var(--timberlake-ink);
  border: 0;
  border-bottom: 1px solid var(--timberlake-border);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 750;
  text-align: left;
}

.mobile-navigation .nav-link.active {
  color: var(--timberlake-green);
}

.mobile-navigation .nav-link.active::after {
  display: none;
}

.mobile-submenu-toggle {
  position: relative;
}

.mobile-submenu-toggle::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  font-size: 1.15rem;
  line-height: 1;
}

.mobile-submenu-toggle[aria-expanded="true"]::after {
  content: "−";
}

.mobile-submenu-items {
  padding: 0.35rem 0 0.35rem 1rem;
  background: var(--timberlake-surface);
  border-left: 0.2rem solid var(--timberlake-gold);
}

.mobile-submenu-items .nav-link {
  padding-block: 0.65rem;
  border-bottom: 0;
  font-size: 0.84rem;
}

.mobile-auth {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--timberlake-border);
}

.mobile-auth .navbar-nav {
  align-items: stretch !important;
}

.mobile-auth .nav-link {
  border-bottom: 0;
}

.site-navbar .navbar-collapse {
  padding-top: 1rem;
}

.site-navbar .nav-link {
  position: relative;
  padding: 0.7rem 0.85rem;
  color: var(--timberlake-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: var(--timberlake-green);
}

.site-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  bottom: 0.35rem;
  left: 0.85rem;
  height: 0.18rem;
  background: var(--timberlake-gold);
  border-radius: 1rem;
}

.site-navbar .dropdown-menu {
  padding: 0.5rem;
  border-color: var(--timberlake-border);
  border-radius: 0.35rem;
  box-shadow: var(--site-shadow);
}

.site-navbar .dropdown-item {
  padding: 0.6rem 0.75rem;
  border-radius: 0.2rem;
  font-weight: 600;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
  color: var(--timberlake-green-dark);
  background: var(--timberlake-green-soft);
}

.site-auth {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--timberlake-border);
}

.site-auth .nav-link {
  font-size: 0.82rem;
}

.site-main {
  flex: 1 0 auto;
}

.placeholder-hero {
  position: relative;
  overflow: hidden;
  min-height: 26rem;
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(11, 75, 51, 0.97), rgba(7, 53, 34, 0.91)),
    var(--timberlake-green);
}

.placeholder-hero::before,
.placeholder-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.placeholder-hero::before {
  width: 24rem;
  height: 24rem;
  right: -10rem;
  top: -9rem;
}

.placeholder-hero::after {
  width: 13rem;
  height: 13rem;
  right: 4rem;
  bottom: -8rem;
}

.placeholder-hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding-block: 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--timberlake-gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 0.16rem;
  background: var(--timberlake-gold);
}

.placeholder-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--timberlake-white);
  font-size: clamp(2.5rem, 9vw, 5.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.placeholder-hero .lead {
  max-width: 39rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
}

.site-footer {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--timberlake-green-dark);
  border-top: 0.3rem solid var(--timberlake-gold);
}

.site-footer-brand {
  color: var(--timberlake-white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-copy {
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--timberlake-white);
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer-links a {
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus {
  color: var(--timberlake-gold-light);
}

.site-footer-rule {
  height: 1px;
  margin-block: 2rem 1.25rem;
  background: rgba(255, 255, 255, 0.16);
}

.btn-primary {
  --bs-btn-bg: var(--timberlake-green);
  --bs-btn-border-color: var(--timberlake-green);
  --bs-btn-hover-bg: var(--timberlake-green-dark);
  --bs-btn-hover-border-color: var(--timberlake-green-dark);
  --bs-btn-active-bg: var(--timberlake-green-dark);
  --bs-btn-active-border-color: var(--timberlake-green-dark);
  --bs-btn-focus-shadow-rgb: 216, 169, 40;
}

/* Design system */
.ds-eyebrow,
.ds-card-eyebrow {
  color: var(--timberlake-green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ds-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}

.ds-eyebrow::before {
  content: "";
  width: 2rem;
  height: 0.18rem;
  flex: 0 0 2rem;
  background: var(--timberlake-gold);
  border-radius: 1rem;
}

.ds-eyebrow-light {
  color: var(--timberlake-gold-light);
}

.ds-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--timberlake-white);
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 169, 40, 0.2), transparent 28rem),
    linear-gradient(120deg, var(--timberlake-green), var(--timberlake-green-dark));
}

.ds-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 21rem;
  height: 21rem;
  right: -9rem;
  bottom: -11rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.ds-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.ds-hero-inner {
  min-height: clamp(26rem, 62vw, 36rem);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.ds-hero-content {
  max-width: 48rem;
}

.ds-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.55rem, 9vw, 5.6rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.ds-hero-summary {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.ds-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.ds-btn {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem;
  border-width: 0.12rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.ds-btn-primary {
  color: var(--timberlake-white);
  background: var(--timberlake-green);
  border-color: var(--timberlake-green);
}

.ds-btn-primary:hover,
.ds-btn-primary:focus {
  color: var(--timberlake-white);
  background: var(--timberlake-green-dark);
  border-color: var(--timberlake-green-dark);
}

.ds-btn-secondary {
  color: var(--timberlake-green-dark);
  background: transparent;
  border-color: var(--timberlake-green);
}

.ds-btn-secondary:hover,
.ds-btn-secondary:focus {
  color: var(--timberlake-white);
  background: var(--timberlake-green);
  border-color: var(--timberlake-green);
}

.ds-hero .ds-btn-primary {
  color: var(--timberlake-green-dark);
  background: var(--timberlake-gold);
  border-color: var(--timberlake-gold);
}

.ds-hero .ds-btn-primary:hover,
.ds-hero .ds-btn-primary:focus {
  background: var(--timberlake-gold-light);
  border-color: var(--timberlake-gold-light);
}

.ds-hero .ds-btn-secondary {
  color: var(--timberlake-white);
  border-color: rgba(255, 255, 255, 0.72);
}

.ds-hero .ds-btn-secondary:hover,
.ds-hero .ds-btn-secondary:focus {
  color: var(--timberlake-green-dark);
  background: var(--timberlake-white);
  border-color: var(--timberlake-white);
}

.ds-external-mark {
  font-size: 1.1em;
}

.ds-section-header {
  max-width: 46rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.ds-section-header.text-center {
  margin-inline: auto;
}

.ds-section-header h2,
.ds-page-header h1 {
  margin: 0;
  color: var(--timberlake-green-dark);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ds-section-header h2 {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
}

.ds-section-header p,
.ds-page-header p {
  max-width: 43rem;
  margin: 0.8rem 0 0;
  color: var(--timberlake-muted);
}

.ds-page-header {
  padding-block: clamp(2.75rem, 7vw, 5rem);
  background: var(--timberlake-surface);
  border-bottom: 1px solid var(--timberlake-border);
}

.ds-page-header h1 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 7vw, 4.5rem);
}

.ds-breadcrumb {
  padding-block: 0.8rem;
  background: var(--timberlake-white);
  border-bottom: 1px solid var(--timberlake-border);
}

.ds-breadcrumb .breadcrumb {
  font-size: 0.8rem;
  font-weight: 650;
}

.ds-breadcrumb a {
  text-decoration: none;
}

.ds-breadcrumb .active {
  color: var(--timberlake-muted);
}

.ds-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--timberlake-white);
  border: 1px solid var(--timberlake-border);
  border-radius: var(--radius-md);
  box-shadow: var(--site-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ds-card:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--site-shadow-hover);
}

.ds-card-body {
  flex: 1 1 auto;
  padding: clamp(1.25rem, 4vw, 1.75rem);
}

.ds-card-body h3,
.ds-media-copy h3,
.ds-document-copy h3,
.ds-stat-card h3 {
  margin: 0.4rem 0 0;
  color: var(--timberlake-green-dark);
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.2;
}

.ds-card-body p,
.ds-media-copy p,
.ds-document-copy p,
.ds-stat-card p {
  margin: 0.75rem 0 0;
  color: var(--timberlake-muted);
}

.ds-card-footer {
  padding: 0 1.25rem 1.25rem;
  background: transparent;
  border: 0;
}

.ds-feature-card {
  border-top: 0.28rem solid var(--timberlake-gold);
}

.ds-feature-marker {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  margin: 1.5rem 1.5rem 0;
  color: var(--timberlake-white);
  background: var(--timberlake-green);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 900;
}

.ds-text-link {
  display: inline-flex;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.ds-card-image,
.ds-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.ds-card-image {
  display: block;
  object-fit: cover;
  background: var(--timberlake-green-soft);
}

.ds-image-placeholder,
.ds-team-placeholder {
  display: grid;
  place-items: center;
  color: var(--timberlake-green);
  background:
    linear-gradient(135deg, transparent 48%, rgba(11, 75, 51, 0.08) 49%, rgba(11, 75, 51, 0.08) 51%, transparent 52%),
    var(--timberlake-green-soft);
}

.ds-image-placeholder span {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  color: var(--timberlake-white);
  background: var(--timberlake-green);
  border: 0.2rem solid var(--timberlake-gold);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
}

.ds-player-visual {
  position: relative;
}

.ds-player-number {
  position: absolute;
  right: 1rem;
  bottom: -1.25rem;
  min-width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  padding-inline: 0.55rem;
  color: var(--timberlake-green-dark);
  background: var(--timberlake-gold);
  border: 0.25rem solid var(--timberlake-white);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 900;
}

.ds-player-card .ds-card-body {
  padding-top: 1.8rem;
}

.ds-team-placeholder {
  min-height: 12rem;
}

.ds-team-placeholder span {
  color: var(--timberlake-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ds-team-image {
  aspect-ratio: 16 / 9;
}

.ds-meta {
  color: var(--timberlake-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.ds-announcement-card {
  position: relative;
}

.ds-announcement-card.is-featured {
  border-left: 0.3rem solid var(--timberlake-gold);
}

.ds-badge {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  color: var(--timberlake-green-dark);
  background: var(--timberlake-green-soft);
  border-radius: 100rem;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ds-stat-card {
  padding: clamp(1.4rem, 4vw, 2rem);
  background: var(--timberlake-green-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--site-shadow);
}

.ds-stat-value {
  color: var(--timberlake-gold);
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.ds-stat-card h3 {
  margin-top: 0.8rem;
  color: var(--timberlake-white);
}

.ds-stat-card p {
  color: rgba(255, 255, 255, 0.67);
}

.ds-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  color: var(--timberlake-ink);
  background: var(--timberlake-surface);
  border: 1px solid var(--timberlake-border);
  border-left: 0.3rem solid var(--timberlake-green);
  border-radius: var(--radius-sm);
}

.ds-alert-success { border-left-color: #2f7d4b; }
.ds-alert-warning { border-left-color: var(--timberlake-gold); }
.ds-alert-danger { border-left-color: #a33a3a; }

.ds-alert-marker {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--timberlake-white);
  background: var(--timberlake-green);
  border-radius: 50%;
  font-weight: 900;
}

.ds-alert-title {
  font-weight: 850;
}

.ds-alert-link {
  grid-column: 2;
  font-weight: 800;
}

.ds-media-panel,
.ds-document-panel {
  background: var(--timberlake-white);
  border: 1px solid var(--timberlake-border);
  border-radius: var(--radius-md);
  box-shadow: var(--site-shadow);
}

.ds-media-panel {
  overflow: hidden;
}

.ds-media-copy {
  padding: clamp(1.25rem, 4vw, 1.75rem);
}

.ds-video-frame {
  background: var(--timberlake-green-dark);
}

.ds-video-frame::after {
  content: "Video placeholder";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.ds-video-frame iframe {
  z-index: 1;
  border: 0;
}

.ds-document-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.ds-document-icon {
  width: 3.2rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  color: var(--timberlake-white);
  background: var(--timberlake-green);
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ds-document-copy h3 {
  margin-top: 0;
}

.ds-document-panel .ds-btn {
  grid-column: 1 / -1;
}

.ds-gallery-grid {
  display: grid;
  gap: 0.25rem;
  padding: 0 0.25rem 0.25rem;
}

.ds-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 11rem;
  background: var(--timberlake-green-soft);
  border-radius: var(--radius-sm);
}

.ds-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ds-gallery-item figcaption {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 0.5rem 0.65rem;
  color: var(--timberlake-white);
  background: rgba(7, 53, 34, 0.88);
  border-radius: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.ds-showcase-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  padding-block: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--timberlake-border);
}

.ds-showcase-nav .nav-link {
  color: var(--timberlake-green-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.ds-showcase-nav .nav-link.active {
  color: var(--timberlake-white);
  background: var(--timberlake-green);
}

.ds-showcase-page {
  padding-block: var(--space-section);
}

.ds-showcase-block + .ds-showcase-block {
  margin-top: var(--space-section);
}

.ds-sample-surface {
  overflow: hidden;
  border: 1px solid var(--timberlake-border);
  border-radius: var(--radius-md);
}

@media (min-width: 576px) {
  .ds-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ds-document-panel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 1.25rem;
  }

  .ds-document-panel .ds-btn {
    grid-column: auto;
  }
}

@media (min-width: 768px) {
  .ds-gallery-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .ds-gallery-item:first-child {
    grid-row: span 2;
    min-height: 22.25rem;
  }
}

@media (min-width: 1200px) {
  .site-navbar {
    min-height: 5.5rem;
  }

  .site-navbar .navbar-collapse {
    padding-top: 0;
  }

  .site-navbar .nav-link {
    padding: 1rem 0.55rem;
    font-size: 0.82rem;
  }

  .site-navbar .nav-link.active::after {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
  }

  .site-auth {
    margin-top: 0;
    margin-left: 0.5rem;
    padding-top: 0;
    padding-left: 0.5rem;
    border-top: 0;
    border-left: 1px solid var(--timberlake-border);
  }

  .placeholder-hero {
    min-height: 34rem;
  }
}

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

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

/* Google Site visual migration ------------------------------------------------ */
:root {
  --timberlake-navy: #102a56;
  --timberlake-navy-deep: #0a1f43;
  --timberlake-gold: #d5ad36;
  --timberlake-ink: #202124;
  --timberlake-muted: #5f6368;
  --timberlake-border: #dadce0;
  --timberlake-surface: #f1f3f4;
  --timberlake-green: var(--timberlake-navy);
  --timberlake-green-dark: var(--timberlake-navy-deep);
  --timberlake-green-soft: #e8edf5;
  --site-shadow: none;
  --site-shadow-hover: none;
}

body {
  color: var(--timberlake-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a { color: #174ea6; }
a:hover { color: var(--timberlake-navy); }

.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  border: 0;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.18);
}

.site-navbar {
  min-height: 54px;
  padding: 5px clamp(18px, 2vw, 28px);
}

.site-brand {
  max-width: none;
  padding: 0;
  color: #3c4043;
}

.site-brand:hover { color: #202124; }

.site-brand-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: none;
}

.site-navbar .nav-link {
  padding: 14px 9px;
  color: #3c4043;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active { color: var(--timberlake-navy); }

.site-navbar .nav-link.active::after {
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  background: var(--timberlake-navy);
  border-radius: 0;
}

.site-navbar .dropdown-menu {
  padding: 4px 0;
  border: 1px solid var(--timberlake-border);
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(60, 64, 67, 0.18);
}

.site-navbar .dropdown-item {
  padding: 9px 16px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus { color: #202124; background: #f1f3f4; }

.home-dropdown-arrow {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin: 0 0 0.2rem 0.28rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.site-navbar .navbar-toggler {
  border: 0;
  border-radius: 0;
}

.site-navbar .navbar-toggler-icon {
  width: 1.5rem;
  height: 1.15rem;
  background-image:
    linear-gradient(var(--timberlake-navy), var(--timberlake-navy)),
    linear-gradient(var(--timberlake-navy), var(--timberlake-navy)),
    linear-gradient(var(--timberlake-navy), var(--timberlake-navy));
  background-repeat: no-repeat;
  background-position: center top, center center, center bottom;
  background-size: 100% 2px;
}

.site-navbar .navbar-toggler:hover .navbar-toggler-icon,
.site-navbar .navbar-toggler:focus .navbar-toggler-icon {
  opacity: 0.72;
}

.mobile-navigation .offcanvas-title {
  color: #3c4043;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-navigation .nav-link {
  color: #3c4043;
  font-size: 14px;
  font-weight: 400;
}

.mobile-navigation .nav-link.active { color: var(--timberlake-navy); }
.mobile-submenu-items { background: #f1f3f4; border-left-color: var(--timberlake-navy); }

.home-hero {
  position: relative;
  height: clamp(255px, 28vw, 390px);
  min-height: 0;
  display: block;
  padding: 0;
  background: url("../images/banners/timberlake-gym-court-banner.png") center 48% / cover no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.27);
}

.home-hero-copy {
  position: relative;
  width: min(86%, 940px);
  margin-inline: auto;
  padding-top: clamp(38px, 5vw, 68px);
  text-align: center;
  background: transparent;
}

.home-hero-copy p {
  position: relative;
  margin: 0;
  color: var(--timberlake-navy);
  font-size: clamp(25px, 3.5vw, 49px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
}

.home-hero-copy p::after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin: 21px auto 0;
  background: var(--timberlake-navy);
}

.home-hero-copy h1 {
  margin: clamp(38px, 4vw, 54px) 0 0;
  color: var(--timberlake-navy);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.home-section { padding: clamp(48px, 7vw, 86px) 20px; }
.source-content { width: min(100%, 1040px); margin-inline: auto; }
.source-content-narrow { width: min(100%, 820px); }

.home-section h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
}

.mission-section { color: #fff; background: var(--timberlake-navy); }
.mission-section h2 { margin: 0; }
.mission-toggle {
  position: relative;
  width: 100%;
  padding: 0 48px 16px;
  color: var(--timberlake-gold);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font: inherit;
  text-align: center;
}
.mission-toggle span { text-decoration: underline; text-underline-offset: 4px; }
.mission-toggle::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.45);
  border-left: 2px solid rgba(255, 255, 255, 0.45);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}
.mission-toggle.collapsed::after { transform: rotate(225deg); }
.mission-toggle:focus-visible { outline-color: #fff; }
.mission-list {
  margin: 24px 20px 0;
  padding-left: 22px;
  font-size: 15px;
  text-align: left;
}
.mission-list li + li { margin-top: 9px; }
.mission-list li:first-child { font-size: 18px; }

.roles-section { background: #f1f1f1; }
.roles-section > .source-content > h2 {
  color: var(--timberlake-navy);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.source-accordion {
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}

.source-accordion .accordion-item { background: transparent; border: 0; border-bottom: 1px solid #c8c8c8; }
.source-accordion .accordion-item:last-child { border-bottom: 0; }
.source-accordion .accordion-button {
  padding: 19px 6px;
  color: var(--timberlake-navy);
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
}
.source-accordion .accordion-button:not(.collapsed) { color: var(--timberlake-navy); background: transparent; }
.source-accordion .accordion-button:focus { box-shadow: 0 0 0 2px rgba(16, 42, 86, 0.2); }
.source-accordion .accordion-body { padding: 2px 28px 20px; }
.source-accordion ul { margin: 0; padding-left: 22px; }
.source-accordion li + li { margin-top: 7px; }
.roles-summary { max-width: 800px; margin: 32px auto 0; text-align: center; font-weight: 700; }

.calendar-section { padding: 0; color: #fff; background: var(--timberlake-navy-deep); }
.calendar-heading-row { display: grid; grid-template-columns: 150px minmax(0, 1fr) 150px; gap: 30px; align-items: center; padding: 24px 0; }
.calendar-section h2 { color: #fff; }
.calendar-heading-row h2 { margin-bottom: 20px; font-size: clamp(34px, 5vw, 58px); font-weight: 600; text-decoration: underline; text-underline-offset: 6px; }
.calendar-logo { width: 100%; max-width: 125px; height: auto; margin: 0 auto; background: #fff; }
.calendar-access-link { display: block; padding: 7px 12px; color: var(--timberlake-navy); background: #fff; text-decoration: none; }
.calendar-access-link:hover { color: #174ea6; }
.calendar-embed-band { padding: 24px 20px; background: url("../images/banners/timberlake-tiger-mural-banner.jpg") center / cover no-repeat; }
.calendar-frame,
.document-frame { overflow: hidden; margin: 0 auto 22px; background: #fff; border: 0; }
.calendar-frame { max-width: 900px; }
.calendar-frame iframe,
.document-frame iframe { border: 0; }
.source-link { font-weight: 600; }
.source-link-light { color: #fff; }
.source-link-light:hover { color: var(--timberlake-gold); }

.source-white-section { background: #fff; }
.source-gray-section { background: #f1f1f1; }
.open-gyms-section { padding: 18px 20px 24px; color: #fff; background: var(--timberlake-navy); }
.open-gyms-frame {
  width: min(80vw, 1120px);
  height: clamp(460px, 58vw, 760px);
  margin-bottom: 0;
  border: 0;
}
.open-gyms-frame iframe { width: 100%; height: 100%; }
.source-heading { color: var(--timberlake-navy); text-decoration: underline; text-underline-offset: 5px; }
.source-photo { display: block; width: 100%; height: auto; margin: 0 auto 28px; }
.document-frame { max-width: 760px; border: 1px solid #dadce0; }

.champions-section { background: #fff; }
.champions-copy { color: #3c4043; }
.champions-copy h2 {
  display: inline-block;
  margin-bottom: 30px;
  padding: 1px 4px;
  color: var(--timberlake-gold);
  background: var(--timberlake-navy);
  font-size: clamp(26px, 3vw, 38px);
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.champions-copy p { margin-bottom: 22px; font-size: 15px; }
.championship-history {
  font-style: italic;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.team-section { background: #e9edf5; }
.team-copy { color: #3c4043; }
.team-copy h2 {
  max-width: 360px;
  margin-bottom: 28px;
  color: var(--timberlake-navy);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.35;
}
.team-copy p { margin-bottom: 20px; font-size: 15px; }
.team-roster-count { color: var(--timberlake-navy); font-weight: 700; }
.photographer-credit {
  display: block;
  width: min(100%, 330px);
  height: auto;
  margin: 38px auto 0;
}

.gamechanger-section {
  color: #fff;
  background: var(--timberlake-navy);
}
.gamechanger-section h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  text-decoration: none;
}
.gamechanger-section p { margin-bottom: 18px; font-size: 15px; }
.gamechanger-link {
  display: block;
  width: 100%;
  padding: 9px 16px;
  color: var(--timberlake-navy);
  background: #fff;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}
.gamechanger-link:hover,
.gamechanger-link:focus { color: #174ea6; background: #f8f9fa; }

/* Staff page */
.staff-hero {
  min-height: 285px;
  display: grid;
  place-items: center;
  padding: 36px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("../images/banners/timberlake-gym-court-banner.png") center 48% / cover no-repeat;
}
.staff-hero-copy { color: #202124; text-align: center; }
.staff-hero h1 { margin: 0; font-size: clamp(48px, 6vw, 68px); font-weight: 600; line-height: 1; }
.staff-hero-copy span { display: block; width: 100px; height: 7px; margin: 24px auto 23px; background: var(--timberlake-navy); }
.staff-hero-copy p { margin: 0; font-size: clamp(21px, 2.5vw, 29px); font-weight: 700; }

.staff-profile-section { padding: 24px 20px; color: #fff; background: var(--timberlake-navy); }
.staff-photo { display: block; width: 100%; height: auto; }
.staff-biography h2 { margin: 0 0 34px; color: #fff; font-size: clamp(27px, 3vw, 36px); font-weight: 700; }
.staff-biography p { margin-bottom: 20px; font-size: 17px; line-height: 1.5; }
.staff-biography p:last-child { margin-bottom: 0; }
.staff-career { margin-top: 56px; }
.staff-career h2 { margin: 0; }
.staff-career-toggle {
  position: relative;
  width: 100%;
  padding: 0 54px 20px 8px;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font: inherit;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 700;
  text-align: left;
}
.staff-career-toggle::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 14px;
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  transform: rotate(225deg);
  transition: transform 160ms ease;
}
.staff-career-toggle.collapsed::after { transform: rotate(45deg); }
.staff-career-content { max-width: 960px; padding: 34px 8px 18px; }
.staff-career-content h3 { margin: 30px 0 12px; color: var(--timberlake-gold); font-size: 21px; }
.staff-career-content ul { padding-left: 23px; }
.staff-career-content li + li { margin-top: 9px; }
.staff-pride { color: var(--timberlake-gold); font-size: 20px; font-weight: 700; }

@media (max-width: 991.98px) {
  .staff-hero { min-height: 235px; }
  .staff-biography h2 { margin-top: 6px; margin-bottom: 22px; }
  .staff-career { margin-top: 40px; }
}

/* Organization Information page */
.organization-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 42px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("../images/banners/timberlake-gym-court-banner.png") center 48% / cover no-repeat;
}
.organization-hero-copy { color: #202124; text-align: center; }
.organization-hero h1 { margin: 0; font-size: clamp(39px, 5.5vw, 64px); font-weight: 500; line-height: 1.1; }
.organization-hero-copy span { display: block; width: 100px; height: 7px; margin: 24px auto 62px; background: var(--timberlake-navy); }
.organization-hero-copy p { margin: 0; font-size: clamp(24px, 3.2vw, 39px); font-weight: 600; }

.donation-section { padding: 24px 20px; background: #e9edf5; }
.venmo-qr { display: block; width: min(100%, 365px); height: auto; margin-inline: auto; }
.donation-copy h2 { margin: 0 0 24px; color: var(--timberlake-navy); font-size: clamp(22px, 2.5vw, 29px); font-weight: 700; }
.donation-copy p { margin-bottom: 20px; color: #3c4043; font-size: 17px; }
.venmo-link {
  display: block;
  width: 100%;
  padding: 8px 14px;
  color: #fff;
  background: var(--timberlake-navy);
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
}
.venmo-link:hover,
.venmo-link:focus { color: var(--timberlake-gold); }

.organization-document { padding: 38px 20px 24px; }
.organization-document h2 { margin: 0 0 58px; text-align: center; font-size: clamp(28px, 3.5vw, 39px); font-weight: 700; }
.bylaws-section { color: #fff; background: var(--timberlake-navy); }
.bylaws-section h2 { color: var(--timberlake-gold); }
.determination-section { background: #e9edf5; }
.determination-section h2 { color: var(--timberlake-navy); }
.organization-document-frame { width: min(100%, 1155px); height: clamp(600px, 65vw, 820px); margin-inline: auto; background: #fff; }
.organization-document-frame iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 767.98px) {
  .organization-hero { min-height: 285px; }
  .organization-hero-copy span { margin-bottom: 38px; }
  .donation-copy h2 { margin-top: 10px; }
  .organization-document h2 { margin-bottom: 30px; }
  .organization-document-frame { height: 620px; }
}

/* Sacrifice for Success page */
.success-hero {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 38px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("../images/banners/timberlake-gym-court-banner.png") center 48% / cover no-repeat;
}
.success-hero-copy { color: #202124; text-align: center; }
.success-hero h1 { margin: 0; font-size: clamp(39px, 5vw, 61px); font-weight: 500; line-height: 1.25; }
.success-hero-copy span { display: block; width: 100px; height: 7px; margin: 21px auto 0; background: var(--timberlake-navy); }

.success-scale-intro { padding: 24px 20px 38px; color: #fff; background: var(--timberlake-navy); }
.success-graphic-block { text-align: center; }
.success-graphic-block img { display: block; width: 100%; height: auto; max-height: 855px; object-fit: contain; }
.success-graphic-block h2 { margin: 20px 0 34px; color: var(--timberlake-gold); font-size: clamp(24px, 2.8vw, 32px); font-weight: 700; }
.success-graphic-block p { margin: 0; font-size: 17px; font-weight: 800; }

.success-documents { padding: 36px 20px 32px; background: #e9edf5; }
.success-documents h2 { margin: 0 0 58px; color: var(--timberlake-navy); text-align: center; font-size: clamp(23px, 2.8vw, 29px); font-weight: 700; }
.success-document-frame { height: 510px; background: #fff; }
.success-document-frame iframe { width: 100%; height: 100%; border: 0; }

.sacrifice-rubric-section { padding: 22px 20px; background: var(--timberlake-navy); }
.sacrifice-rubric-section img { display: block; width: 100%; height: auto; margin-inline: auto; }

.skills-rubrics-section { padding: 36px 20px; background: #e9edf5; }
.skills-rubric { padding-block: 24px 50px; text-align: center; }
.skills-rubric + .skills-rubric { border-top: 1px solid #c8ccd4; }
.skills-rubric h2 { margin: 0 0 32px; color: var(--timberlake-navy); font-size: clamp(28px, 3.5vw, 39px); font-weight: 700; }
.skills-rubric img { display: block; width: min(100%, 900px); height: auto; margin-inline: auto; }

@media (max-width: 767.98px) {
  .success-hero { min-height: 260px; }
  .success-graphic-block + .success-graphic-block { margin-top: 30px; }
  .success-document-frame { height: 590px; }
}

/* Drills for Skills page */
.drills-hero {
  min-height: 255px;
  display: grid;
  place-items: center;
  padding: 35px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("../images/banners/timberlake-gym-court-banner.png") center 48% / cover no-repeat;
}
.drills-hero-copy { color: #202124; text-align: center; }
.drills-hero h1 { margin: 0; font-size: clamp(44px, 5.5vw, 64px); font-weight: 500; }
.drills-hero-copy span { display: block; width: 100px; height: 7px; margin: 22px auto 0; background: var(--timberlake-navy); }

.open-gym-drills { padding: 34px 20px 24px; background: var(--timberlake-navy); }
.open-gym-drills h2 { margin: 0 0 56px; color: var(--timberlake-gold); text-align: center; font-size: clamp(30px, 3.5vw, 39px); font-weight: 700; }
.drills-document-frame { width: min(100%, 1155px); height: 560px; margin-inline: auto; background: #fff; }
.drills-document-frame iframe { width: 100%; height: 100%; border: 0; }
.drills-category-heading { margin: 0; padding: 34px 20px; color: var(--timberlake-navy); background: #e9edf5; text-align: center; font-size: clamp(30px, 3.5vw, 39px); font-weight: 700; }

.ball-handling-section { padding: 24px 20px; color: #fff; background: var(--timberlake-navy); }
.drill-video-row { padding-block: 0 34px; }
.drill-video-row + .drill-video-row { padding-top: 12px; }
.drill-video-frame { height: 420px; background: #000; }
.drill-video-frame iframe { width: 100%; height: 100%; border: 0; }
.drill-instructions h3 { margin: 10px 0 18px; color: #fff; font-size: clamp(28px, 3vw, 37px); font-weight: 700; }
.drill-instructions ul { padding-left: 22px; font-size: 17px; }
.drill-instructions li + li { margin-top: 9px; }

.shooting-drills-section { padding: 34px 20px; background: #fff; }
.shooting-drill-row { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 48px; align-items: center; padding-block: 34px; }
.shooting-drill-row + .shooting-drill-row { border-top: 1px solid var(--timberlake-border); }
.shooting-drill-row:nth-child(even) img { order: 2; }
.shooting-drill-row img { display: block; width: 100%; max-height: 520px; object-fit: contain; }
.shooting-drill-row h3 { color: var(--timberlake-navy); font-size: clamp(28px, 3vw, 38px); font-weight: 700; }
.shooting-drill-row ul { padding-left: 22px; font-size: 17px; }
.shooting-drill-row li + li { margin-top: 8px; }

@media (max-width: 767.98px) {
  .drills-document-frame { height: 520px; }
  .drill-video-frame { height: 340px; }
  .shooting-drill-row { grid-template-columns: 1fr; gap: 24px; }
  .shooting-drill-row:nth-child(even) img { order: 0; }
}

/* Apparel Shop page */
.apparel-hero {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 38px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("../images/banners/timberlake-gym-court-banner.png") center 48% / cover no-repeat;
}
.apparel-hero-copy { color: #202124; text-align: center; }
.apparel-hero h1 { margin: 0; font-size: clamp(42px, 5vw, 62px); font-weight: 500; line-height: 1.22; }
.apparel-hero-copy span { display: block; width: 100px; height: 7px; margin: 22px auto 0; background: var(--timberlake-navy); }

.apparel-message { padding: 38px 20px 30px; color: #fff; background: var(--timberlake-navy); }
.apparel-message h2 { margin: 0 0 18px; color: #fff; font-size: clamp(25px, 3vw, 36px); font-weight: 700; }
.apparel-message ul { margin: 0; padding-left: 20px; font-size: 17px; }
.apparel-message li + li { margin-top: 10px; }

.apparel-shop-section { min-height: 430px; padding: 24px 20px 54px; background: #e9edf5; }
.game-one-link {
  display: block;
  width: 100%;
  padding: 8px 14px;
  color: #fff;
  background: var(--timberlake-navy);
  border-radius: 2px;
  text-decoration: none;
}
.game-one-link:hover,
.game-one-link:focus { color: var(--timberlake-gold); }
.game-one-name {
  margin-top: 45px;
  color: #111;
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}
@media (max-width: 575.98px) {
  .apparel-hero { min-height: 245px; }
  .apparel-message { padding-block: 30px 26px; }
  .apparel-shop-section { min-height: 320px; }
}

/* Team Shot Tracking page */
.shot-hero {
  height: clamp(300px, 34vw, 430px);
  display: grid;
  place-items: center;
  padding: 35px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("../images/banners/timberlake-gym-court-banner.png") center 48% / cover no-repeat;
}
.shot-hero-copy { color: var(--timberlake-navy); text-align: center; }
.shot-hero-copy p { margin: 0; font-size: clamp(30px, 4vw, 49px); font-weight: 600; }
.shot-hero-copy span { display: block; width: 100px; height: 7px; margin: 24px auto 56px; background: var(--timberlake-navy); }
.shot-hero h1 { margin: 0; font-size: clamp(42px, 5vw, 60px); font-weight: 500; }

.shot-documents-section { padding: 24px 20px; color: #fff; background: var(--timberlake-navy); }
.shot-document-row { padding-block: 0 32px; }
.shot-document-row + .shot-document-row { padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.25); }
.shot-document-copy h2 { color: #fff; font-size: clamp(34px, 4.8vw, 58px); font-weight: 700; line-height: 1.42; text-decoration: underline; text-underline-offset: 5px; }
.shot-document-copy p { font-size: 19px; }
.science-copy h2 { font-size: clamp(27px, 3vw, 39px); line-height: 1.4; text-decoration: none; }
.science-copy p { font-size: 17px; }
.shot-document-frame { height: 345px; background: #fff; }
.shot-document-frame iframe { width: 100%; height: 100%; border: 0; }
.science-frame { height: 430px; }

.shot-rules-section { padding: 36px 20px 50px; background: #e9edf5; }
.shot-rules-section h2 { margin: 0; }
.shot-rules-toggle {
  position: relative;
  width: 100%;
  padding: 0 50px 18px 8px;
  color: var(--timberlake-navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #72757a;
  font: inherit;
  font-size: 25px;
  font-weight: 700;
  text-align: left;
}
.shot-rules-toggle::after { content: ""; position: absolute; top: 5px; right: 15px; width: 11px; height: 11px; border-right: 2px solid #72757a; border-bottom: 2px solid #72757a; transform: rotate(225deg); }
.shot-rules-toggle.collapsed::after { transform: rotate(45deg); }
.shot-rules-content { max-width: 900px; padding: 28px 8px; }
.shot-rules-content h3 { margin-top: 25px; color: var(--timberlake-navy); font-size: 21px; }
.shot-rules-content dt { color: var(--timberlake-navy); }
.shot-rules-content dd { margin-left: 20px; }
.homecourt-row { padding-top: 46px; }
.homecourt-row img { display: block; width: 100%; height: auto; background: #fff; }
.homecourt-row figcaption { margin-top: 12px; color: #3c4043; }
.homecourt-copy p { font-size: 17px; }

.shot-data-section { padding: 25px 20px 45px; background: url("../images/banners/timberlake-tiger-mural-banner.jpg") center / cover no-repeat; }
.shot-data-section > .source-content { width: min(100%, 1320px); }
.shot-data-link { display: block; padding: 9px 15px; color: var(--timberlake-navy); background: #fff; text-align: center; text-decoration: none; }
.shot-data-embeds { display: grid; gap: 26px; margin-top: 26px; }
.shot-data-frame { width: 100%; overflow: hidden; background: #fff; }
.shot-data-frame-totals { height: 790px; }
.shot-data-frame-workbook { height: 530px; }
.shot-data-frame iframe { width: 100%; height: 100%; border: 0; }
.shot-goals-section { padding: 24px 20px 55px; color: #fff; background: var(--timberlake-navy); }
.shot-goals-section > .source-content { width: min(100%, 1120px); }
.shot-goals-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr); gap: clamp(42px, 8vw, 115px); align-items: start; }
.shot-goal-charts { display: grid; gap: 48px; }
.shot-goal-chart { width: 100%; height: 465px; background: #b8ac76; }
.shot-goal-chart iframe { width: 100%; height: 100%; border: 0; }
.shot-goals-copy { padding-top: 185px; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.55; }
.shot-goals-copy p { margin-bottom: 48px; }
.shot-goals-copy a { display: block; padding: 9px 15px; color: var(--timberlake-navy); background: #fff; border-radius: 2px; font-size: 16px; text-align: center; text-decoration: none; }
.shot-goals-copy a:hover,
.shot-goals-copy a:focus { color: #174ea6; }

.running-totals-section { padding: 30px 20px 40px; background: #e9edf5; }
.running-totals-section > .source-content { width: min(100%, 1120px); }
.running-totals-layout { display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr); gap: clamp(35px, 7vw, 90px); align-items: center; }
.running-totals-layout h2 { margin: 0; color: var(--timberlake-navy); font-size: clamp(31px, 3.5vw, 45px); font-weight: 700; line-height: 1.5; text-align: center; }
.running-totals-chart { width: 100%; height: 475px; background: #1c3153; }
.running-totals-chart iframe { width: 100%; height: 100%; border: 0; }

.printable-shot-section { padding: 42px 20px; color: #fff; background: var(--timberlake-navy); }
.printable-shot-section h2 { color: var(--timberlake-gold); font-size: clamp(28px, 3.5vw, 40px); }
.printable-shot-section p { max-width: 780px; font-size: 17px; }
.printable-frame { height: 700px; margin-top: 28px; }

@media (max-width: 767.98px) {
  .shot-hero { height: 280px; }
  .shot-hero-copy span { margin-bottom: 40px; }
  .shot-document-frame { height: 500px; }
  .homecourt-copy { margin-top: 12px; }
  .printable-frame { height: 600px; }
  .shot-data-frame-totals { height: 710px; }
  .shot-data-frame-workbook { height: 530px; }
  .shot-goals-layout { grid-template-columns: 1fr; gap: 28px; }
  .shot-goal-chart { height: 390px; }
  .shot-goals-copy { padding-top: 0; font-size: 18px; }
  .shot-goals-copy p { margin-bottom: 24px; }
  .running-totals-layout { grid-template-columns: 1fr; gap: 26px; }
  .running-totals-layout h2 { line-height: 1.35; }
  .running-totals-chart { height: 390px; }
}

.site-footer {
  color: #fff;
  background: var(--timberlake-navy);
  border: 0;
}

.footer-content { padding: 56px 20px 64px; }
.footer-logo { width: min(88%, 430px); height: auto; margin-bottom: 28px; }
.site-footer h2 { margin: 0 0 10px; color: #fff; font-size: 24px; font-weight: 400; }
.site-footer h3 { margin: 0 0 28px; color: var(--timberlake-gold); font-size: 19px; font-weight: 400; }
.board-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 48px; }
.board-list p { min-width: 140px; margin: 0; font-size: 14px; }
.site-footer a { color: #fff; text-decoration-color: var(--timberlake-gold); }
.site-footer a:hover { color: var(--timberlake-gold); }

@media (max-width: 575.98px) {
  .site-navbar { min-height: 58px; }
  .site-brand-name { font-size: 15px; }
  .home-hero { height: 245px; }
  .home-hero-copy { width: 92%; padding-top: 42px; }
  .home-hero-copy p::after { width: 62px; height: 4px; margin-top: 14px; }
  .home-hero-copy h1 { margin-top: 34px; }
  .home-section { padding-inline: 18px; }
  .source-accordion .accordion-button { font-size: 14px; }
  .calendar-logo { width: 95px; }
  .calendar-heading-row { display: block; padding: 42px 18px; }
  .calendar-heading-row .calendar-logo { margin-bottom: 22px; }
  .calendar-logo-end { display: none; }
  .calendar-heading-row h2 { font-size: 36px; }
  .board-list { display: block; }
  .board-list p + p { margin-top: 22px; }
  .champions-copy { text-align: left; }
  .champions-copy h2 { margin-top: 10px; margin-bottom: 22px; }
  .team-copy h2 { margin-bottom: 20px; }
  .photographer-credit { width: min(85%, 300px); margin: 28px 0 10px; }
}

@media (min-width: 1200px) {
  .site-navbar { min-height: 54px; }
  .site-navbar .nav-link { padding: 14px 8px; font-size: 14px; }
}
