/*
Theme Name: Απόλλων Λιβαδειάς
Theme URI: https://apollonlivadeias.gr
Author: Pixel Mantix
Description: Pixel-matched nba.com/hawks layout for Α.Σ. Απόλλων Λιβαδειάς (forest green / cream).
Version: 3.6.2
Text Domain: apollon-livadias
*/

@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;400;600;700&display=swap");

:root {
  /* Apollon brand mapped onto Hawks structure */
  --green: #0a5c2c;
  --green-deep: #064421;
  --cream: #eee1c6;
  --hawks-gray: #dbe2e9;
  --hawks-gray-soft: #eff4f8;
  --ink: #000000;
  --muted: #555555;
  --white: #ffffff;
  --section-pad-x: 1.8rem;   /* 28.8px */
  --section-pad-y: 1.8rem;
  --section-pad-b: 2.7rem;   /* 43.2px */
  --font: "Titillium Web", Arial, sans-serif;
  --heading-size: 1.7325rem; /* 27.72px */
  --heading-lh: 2.59875rem;  /* 41.58px */
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  min-height: 100vh;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cream);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* —— Global bar (NBA white strip) —— */
.nba-global-bar {
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  font-size: 12px;
}
.nba-global-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem var(--section-pad-x);
  gap: 1rem;
}
.nba-global-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nba-global-links { display: flex; gap: 1rem; }
.nba-global-links a { color: #666; font-weight: 600; text-decoration: none; }
.nba-global-links a:hover { color: var(--green); }

/* —— Team header (Hawks red bar → green) —— */
.site-header {
  background: var(--green);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: 96px;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1rem;
  padding: 0.65rem var(--section-pad-x);
  min-height: 96px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  justify-self: start;
  /* Push crest further inward from the left */
  margin-left: clamp(2.5rem, 12vw, 9rem);
  grid-column: 1;
}
.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 3px;
}
.primary-nav {
  grid-column: 2;
  justify-self: center;
}
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 0.35rem;
}
.primary-nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--cream); }

.header-end {
  grid-column: 3;
  justify-self: end;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  /* Pull block left from the right edge */
  margin-right: clamp(1.5rem, 5vw, 4rem);
  /* Cancel vertical padding so divider can run full header height */
  margin-top: -0.65rem;
  margin-bottom: -0.65rem;
  min-height: calc(100% + 1.3rem);
}

.header-divider {
  display: block;
  width: 1px;
  align-self: stretch;
  height: auto;
  min-height: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  /* Indent icons toward the left (away from far right) */
  margin-right: clamp(0.75rem, 2.5vw, 2rem);
  padding-right: 0.25rem;
}

.header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.header-social:hover {
  color: #fff;
  opacity: 0.75;
  text-decoration: none;
}

.header-social svg {
  display: block;
  width: 50px;
  height: 50px;
}

.header-tagline {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.95;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  grid-column: 3;
  justify-self: end;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-white {
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.43;
  padding: 7.2px 22px;
  border-radius: 50px;
  min-width: 140px;
}
.btn-white:hover { background: var(--cream); color: var(--ink); }
.btn-cream {
  background: var(--cream);
  color: var(--green-deep);
  font-size: 16px;
  padding: 0.65rem 1.4rem;
}
.btn-cream:hover { background: #f7ecd2; }
.btn-pill { border-radius: 50px; }

/* —— Schedule strip (Hawks asyncScheduleContent) —— */
.async-schedule {
  width: 100%;
  background: var(--hawks-gray);
  padding: 1rem 0 1.15rem;
}
.async-schedule-inner {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 0.5rem;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
.sched-arrow {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #8a8a8a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.sched-arrow:hover { color: var(--green); }
.score-rail-track {
  display: flex;
  justify-content: center;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.2rem 0.25rem;
}
.score-rail-track.is-overflow {
  justify-content: flex-start;
}
.score-rail-track::-webkit-scrollbar { display: none; }

.score-card {
  flex: 0 0 300px;
  width: 300px;
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(to right bottom, var(--hawks-gray-soft), var(--hawks-gray));
  display: flex;
  flex-direction: column;
  min-height: 186px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.score-card-top {
  text-align: center;
  padding: 0.55rem 0.85rem 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.score-card-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.08);
  padding: 0.25rem 0.55rem;
  line-height: 1.25;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  border-radius: 3px;
}
.score-card-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0 0.9rem 0.45rem;
  flex: 1;
}
.sc-side { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; min-width: 0; }
.sc-right { align-items: center; }
.sc-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}
.sc-abbr {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.sc-name {
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  color: #444;
  max-width: 130px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sc-mid {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sc-vs {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #777;
}
.score-card-scoreline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.85rem 0.55rem;
}
.score-card-scoreline strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}
.sc-result {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: #666;
  color: var(--white);
  padding: 0.28rem 0.55rem;
  letter-spacing: 0.04em;
}
.sc-result.is-win {
  background: var(--green);
  color: var(--white);
}
.sc-result.is-loss {
  background: #c8102e;
  color: var(--white);
}
.score-card-cta {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  margin-top: auto;
}
.cta-tickets,
.cta-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.45rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}
.cta-tickets {
  background: var(--cream);
  color: var(--ink);
}
.cta-tickets:hover { background: #f7ecd2; text-decoration: none; color: var(--ink); }
.cta-more {
  background: var(--green);
  color: var(--white);
  width: auto;
}
.cta-more:hover { background: var(--green-deep); text-decoration: none; color: var(--white); }

/* —— Hero promoCarousel —— */
.promo-carousel,
.hawks-hero {
  position: relative;
  width: 100%;
  min-height: 499px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 68, 33, 0.92) 0%, rgba(10, 92, 44, 0.78) 45%, rgba(0, 0, 0, 0.55) 100%),
    var(--hero-img) center / cover no-repeat;
  overflow: hidden;
}
.promo-content {
  width: 100%;
  max-width: 720px;
  padding: 3rem var(--section-pad-x);
}
.ps-headline {
  margin: 0 0 0.75rem;
  font-family: var(--font);
  font-size: 57.6px;
  font-weight: 700;
  line-height: 57.6px;
  text-transform: uppercase;
  max-width: 12ch;
}
.ps-subhead {
  margin: 0 0 1.35rem;
  font-size: 18px;
  line-height: 1.4;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.92);
}

/* —— Shared media sections —— */
.media-block-section {
  width: 100%;
  padding: var(--section-pad-y) var(--section-pad-x) var(--section-pad-b);
}
.featured-promos-section { background: var(--hawks-gray); }
.main-news-section { background: var(--white); }

.blocks-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  min-height: 40px;
}
.heading-content {
  margin: 0;
  font-family: var(--font);
  font-size: var(--heading-size);
  font-weight: 200;
  line-height: var(--heading-lh);
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.arrow-link {
  font-size: 17.64px;
  font-weight: 700;
  line-height: 15.876px;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  padding-right: 1.76rem;
  position: relative;
  white-space: nowrap;
}
.arrow-link::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.arrow-link:hover { text-decoration: underline; }

.media-blocks-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
}

.media-blocks-list.media-blocks-vertical .media-blocks-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0;
}

.media-blocks-list.media-blocks-horizontal .media-blocks-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0;
}

.media-block {
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  display: block;
  background: var(--green-deep);
}
.media-block:hover { text-decoration: none; color: var(--white); }

/* Featured vertical cards — fill row, taller viewport height */
.media-block-vertical {
  width: auto;
  height: clamp(520px, 68vh, 640px);
}
/* Blog cards — 3 across, wider + taller */
.media-block-horizontal {
  width: auto;
  height: clamp(300px, 38vh, 420px);
}

.media-block-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.82) 100%),
    var(--card-img) center / cover no-repeat;
  transform: scale(1);
  transition: transform 0.45s ease;
  will-change: transform;
}
.media-block:hover .media-block-image { transform: scale(1.12); }

.media-block-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.15rem 1.05rem 1.25rem;
  pointer-events: none;
}
.media-block-caption strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}
.media-block-vertical .media-block-caption strong { -webkit-line-clamp: 4; }
.media-block-horizontal .media-block-caption strong { -webkit-line-clamp: 3; font-size: 22px; }

/* —— Academy section (modern, not Ticket Central buttons) —— */
.academy-section {
  position: relative;
  width: 100%;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
  background: #061a0f;
}
.academy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 480px at 15% 20%, rgba(238, 225, 198, 0.18), transparent 60%),
    radial-gradient(700px 420px at 85% 80%, rgba(10, 92, 44, 0.55), transparent 55%),
    linear-gradient(115deg, rgba(4, 28, 16, 0.92) 0%, rgba(6, 68, 33, 0.72) 48%, rgba(4, 20, 12, 0.88) 100%),
    var(--academy-bg) center / cover no-repeat;
  transform: scale(1.02);
}
.academy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 14px,
      rgba(238, 225, 198, 0.03) 14px,
      rgba(238, 225, 198, 0.03) 15px
    );
  pointer-events: none;
}
.academy-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.25rem var(--section-pad-x) 4.5rem;
}
.academy-intro {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.25rem;
}
.academy-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.academy-intro h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.academy-lede {
  margin: 0 auto;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
}
.academy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.academy-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 112px;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  text-decoration: none;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(238, 225, 198, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.academy-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--cream);
  opacity: 0.7;
}
.academy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 225, 198, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background:
    linear-gradient(145deg, rgba(10, 92, 44, 0.88), rgba(6, 68, 33, 0.72));
  color: var(--white);
  text-decoration: none;
}
.academy-card.is-accent {
  background:
    linear-gradient(145deg, rgba(238, 225, 198, 0.95), rgba(238, 225, 198, 0.82));
  color: var(--green-deep);
  border-color: rgba(238, 225, 198, 0.9);
}
.academy-card.is-accent::before { background: var(--green); }
.academy-card.is-accent .academy-card-meta { color: rgba(6, 68, 33, 0.7); }
.academy-card.is-accent .academy-card-arrow,
.academy-card.is-accent .academy-card-icon {
  background: var(--green);
  color: var(--cream);
}
.academy-card.is-accent:hover {
  background:
    linear-gradient(145deg, #f7ecd2, var(--cream));
  color: var(--green-deep);
}
.academy-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  background: rgba(10, 92, 44, 0.85);
  color: var(--cream);
  border: 1px solid rgba(238, 225, 198, 0.25);
}
.academy-card-copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}
.academy-card-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 225, 198, 0.8);
}
.academy-card-title {
  font-family: var(--font);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.academy-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1px solid rgba(238, 225, 198, 0.25);
  transition: transform 0.25s ease, background 0.25s ease;
}
.academy-card:hover .academy-card-arrow {
  transform: translateX(3px);
  background: rgba(238, 225, 198, 0.2);
}

/* —— Connect / Follow —— */
.connect-section {
  display: grid;
  grid-template-columns: 1.55fr 0.55fr;
  width: 100%;
  min-height: 360px;
}
.follow-visual {
  position: relative;
  min-height: 360px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050505;
}
.follow-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.follow-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0.12) 55%, transparent 78%);
  pointer-events: none;
}
.follow-visual-copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem var(--section-pad-x) 2.75rem;
  max-width: 34rem;
}
.follow-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.follow-visual-copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.follow-visual-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.5;
}
.follow-socials {
  background: var(--white);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-left: 1px solid #eee;
}
.follow-socials-label {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 200;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}
.follow-social-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.follow-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.follow-social:hover {
  transform: translateY(-2px);
  opacity: 0.88;
  text-decoration: none;
}
.follow-social img {
  width: 48px;
  height: 48px;
  display: block;
}

/* —— Footer (Hawks team-color footer) —— */
.site-footer {
  background: var(--green);
  color: var(--white);
  width: 100%;
  padding: 2.5rem 0 0;
  font-size: 12px;
  line-height: 18px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0 var(--section-pad-x) 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: rgba(255, 255, 255, 0.88); text-decoration: none; }
.site-footer a:hover { color: var(--cream); text-decoration: underline; }
.footer-bottom {
  background: rgba(0, 0, 0, 0.22);
  padding: 1rem var(--section-pad-x);
}
.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
}

/* —— Inner pages —— */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem var(--section-pad-x) 3rem;
}
.page-hero {
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--ink);
}
.page-hero h1 {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.page-hero p { margin: 0; color: var(--muted); }
.card {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 1.1rem;
}
.scoreboard { display: grid; gap: 0.65rem; }
.score-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid #ddd;
  border-left: 4px solid var(--green);
  padding: 0.95rem 1.05rem;
  background: var(--white);
}
.score-row .team { font-weight: 700; text-transform: uppercase; }
.score-row .team.away { text-align: right; }
.score-row .score { font-size: 1.55rem; font-weight: 700; color: var(--green); text-align: center; }
.score-meta { grid-column: 1 / -1; color: var(--muted); font-size: 0.84rem; display: flex; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.score-stats { grid-column: 1 / -1; color: var(--muted); font-size: 0.84rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.posts-list { display: grid; gap: 1rem; }
.post-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  border: 1px solid #ddd;
  overflow: hidden;
}
.post-row img { width: 100%; height: 100%; object-fit: cover; min-height: 140px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 1.15rem; }
.contact-form label {
  display: block;
  margin: 0.8rem 0 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #ccc;
  padding: 0.7rem 0.8rem;
  font: inherit;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-actions { margin-top: 1rem; }
.entry-content { max-width: 70ch; }

@media (max-width: 1100px) {
  .academy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-blocks-list.media-blocks-vertical .media-blocks-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .media-blocks-list.media-blocks-horizontal .media-blocks-track {
    grid-template-columns: 1fr;
  }
  .media-block-vertical {
    height: clamp(420px, 55vh, 560px);
  }
  .media-block-horizontal {
    height: clamp(260px, 32vh, 360px);
  }
  .connect-section { grid-template-columns: 1fr; }
  .follow-visual { min-height: 320px; }
  .follow-socials { border-left: 0; border-top: 1px solid #eee; min-height: 240px; }
}

@media (max-width: 1100px) {
  .nba-global-links { display: none; }
  .header-tagline { display: none; }
  .nav-toggle { display: flex; grid-column: 3; justify-self: end; margin-right: 0.5rem; }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    column-gap: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.35rem;
  }
  .brand {
    margin-left: 0.35rem;
    grid-column: 1;
  }
  .brand-logo {
    width: 58px;
    height: 58px;
  }
  .site-header,
  .header-inner {
    min-height: 72px;
  }
  .header-end {
    grid-column: 2;
    justify-self: end;
    margin-right: 0.25rem;
    margin-top: -0.65rem;
    margin-bottom: -0.65rem;
    align-self: center;
    gap: 0.65rem;
  }
  .header-divider {
    display: block;
    align-self: stretch;
    height: 40px;
    min-height: 40px;
  }
  .header-socials {
    margin-right: 0;
  }
  .header-social svg {
    width: 32px;
    height: 32px;
  }
  .primary-nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    justify-self: stretch;
    background: var(--green-deep);
    margin: 0 -0.75rem 0;
    padding: 0 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0 0.85rem;
  }
  .primary-nav a {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
  }
  .ps-headline { font-size: 40px; line-height: 1.05; }
  .promo-carousel { min-height: 380px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .grid-2, .contact-grid, .post-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header-socials { display: none; }
  .header-divider { display: none; }
  .header-end { display: none; }
  .nav-toggle {
    grid-column: 2;
    justify-self: end;
  }
  .header-inner {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 640px) {
  .async-schedule-inner { grid-template-columns: 28px minmax(0, 1fr) 28px; }
  .score-card {
    flex-basis: min(300px, 86vw);
    width: min(300px, 86vw);
  }
  .academy-grid { grid-template-columns: 1fr; }
  .academy-section-inner { padding-top: 3rem; padding-bottom: 3.25rem; }
  .follow-visual-copy h2 { font-size: 1.75rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .media-blocks-list.media-blocks-vertical .media-blocks-track {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }
  .media-block-vertical {
    flex: 0 0 min(78vw, 280px);
    width: min(78vw, 280px);
    height: min(72vh, 560px);
  }
  .ps-headline {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    line-height: 1.12;
    max-width: none;
  }
  .ps-subhead {
    font-size: 16px;
  }
  .promo-content {
    padding: 2rem 1.1rem 2.25rem;
  }
  .promo-carousel {
    min-height: 300px;
  }
  .site-main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* —— Roster (pixel-matched nba.com/hawks/roster, Apollon green) —— */
.roster-page {
  background: #f6f6f6;
  padding: 1rem 0 2.5rem;
  overflow: hidden;
}

.roster-page .playersSection {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}

.roster-page .asyncContent {
  display: block;
  overflow: hidden;
}

.roster-page .playersContainer {
  width: calc(100% - 300px);
  float: left;
  text-align: center;
  font-size: 0; /* kill inline-block whitespace gaps (Hawks minified HTML) */
}

.roster-page .playerBlockWrapper {
  width: 33.333%;
  padding: 15px;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  text-align: left;
  font-size: 16px;
}

.roster-page .playerBlock {
  overflow: hidden;
  background: #fff;
  width: 100%;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
  color: #000;
  font-family: var(--font);
}

.roster-page .playerNameWrapper {
  height: 80px;
  background-color: #f6f6f6;
}

.roster-page .playerNameWrapper .playerNum,
.roster-page .playerNameWrapper .playerName {
  float: left;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  vertical-align: top;
}

.roster-page .playerNameWrapper .playerName {
  justify-content: flex-start;
  width: 76%;
  padding-left: 3%;
  white-space: nowrap;
  font-size: 1em;
  line-height: 125%;
  text-align: left;
  box-sizing: border-box;
}

.roster-page .playerNameWrapper .playerNum {
  justify-content: flex-end;
  width: 22%;
  font-size: 2.5em;
  font-weight: 900;
  padding-right: 2%;
  color: var(--green);
  line-height: 1;
  box-sizing: border-box;
}

.roster-page .playerFName {
  padding-left: 1px;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.25;
}

.roster-page .playerLName {
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1.25;
}

.roster-page .playerPos {
  font-size: 0.8em;
  line-height: 100%;
  color: #777;
  margin: 3px 0 0 2px;
  font-weight: 400;
}

.roster-page .playerSecondaryInfo {
  background-color: var(--green);
  color: #fff;
  overflow: hidden;
  padding: 3px 0;
  font-size: 0.7em;
}

.roster-page .secBlock {
  width: 33.333%;
  float: left;
  padding: 0 8px;
  font-weight: 700;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.5;
}

.roster-page .secBlock:nth-of-type(1) { text-align: left; }
.roster-page .secBlock:nth-of-type(2) { text-align: center; }
.roster-page .secBlock:nth-of-type(3) { text-align: right; }

.roster-page .secBlock span {
  font-weight: 200;
  padding-right: 5px;
  font-size: 0.75em;
}

.roster-page .playerPhoto {
  padding: 12px 0 0;
  height: 240px;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #f6f6f6 0%, #e7e7e7 100%);
  box-sizing: border-box;
}

.roster-page .playerPhoto img {
  height: 100%;
  width: auto;
  max-width: 88%;
  max-height: none;
  margin: 0 auto;
  display: inline-block;
  object-fit: cover;
  object-position: center top;
}

.roster-page .playerPhoto.anonPhoto img {
  opacity: 0.4;
}

.roster-page .coachesWrapper {
  margin: 15px auto 25px;
  width: 300px;
  float: left;
  padding-right: 15px;
  box-sizing: border-box;
}

.roster-page .coachesContainer {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  color: #000;
  background-color: #efefef;
  padding: 0;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
  font-family: var(--font);
}

.roster-page .coachesContainer h2 {
  text-align: center;
  font-weight: 700;
  font-size: 1.5em;
  text-transform: uppercase;
  margin: 0;
  background-color: var(--green);
  color: var(--cream);
  padding: 10px 0;
  display: block;
  width: 100%;
  line-height: 1.2;
}

.roster-page .coachBlock {
  margin: 0;
  color: #000;
  width: 100%;
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #dedede;
  padding: 0 10px;
  overflow: hidden;
  text-transform: uppercase;
  box-sizing: border-box;
  text-align: left;
}

.roster-page .coachBlock:last-of-type {
  border-bottom: none;
}

.roster-page .coachBlock .coachName {
  font-size: 1em;
  font-weight: 700;
  margin-top: 10px;
  line-height: 90%;
}

.roster-page .coachBlock .coachTitle {
  font-size: 0.8em;
  margin-bottom: 14px;
  font-weight: 400;
  color: #444;
}

.roster-page .coachHeadshot {
  height: 115px;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 10px;
}

.roster-page .coachHeadshot img {
  height: 100%;
  width: auto;
  display: inline-block;
  margin: 0 auto;
  object-fit: cover;
}

.roster-page .roster-empty {
  margin: 1.5rem;
  color: #555;
  float: left;
  width: calc(100% - 300px);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .roster-page .playerNameWrapper .playerNum { font-size: 2.25em; }
}

@media (max-width: 1199px) {
  .roster-page .playerBlockWrapper {
    width: 50%;
    padding: 10px;
  }
  .roster-page .coachesWrapper {
    margin: 10px auto 25px;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .roster-page .coachesWrapper,
  .roster-page .playersContainer,
  .roster-page .roster-empty {
    width: 100%;
    float: none;
  }
  .roster-page .coachesWrapper {
    max-width: 350px;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .roster-page .playerBlockWrapper { padding: 5px; }
  .roster-page .playerBlock { font-size: 16px; }
}

@media (max-width: 499px) {
  .roster-page .playerBlockWrapper {
    width: 100%;
    padding: 10px;
  }
  .roster-page .playerBlock { font-size: 20px; }
  .roster-page .secBlock span {
    padding-right: 4px;
    font-size: 0.7em;
  }
  .roster-page .coachesWrapper {
    padding: 0 10px;
    max-width: none;
  }
}

/* —— Schedule (Hawks schedule_v2, Apollon green / Greek) —— */
.apollon-schedule-page {
  background: #f6f6f6;
  padding: 0 0 2.5rem;
}

.apollon-schedule-page .schedWrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 12px;
}

.apollon-schedule-page .hawksSchedContainer_standard {
  position: relative;
  width: 100%;
  margin: 15px auto 0;
  font-family: var(--font);
}

.apollon-schedule-page .seasonTypeLabel {
  position: sticky;
  top: -1px;
  z-index: 3;
  font-size: 44px;
  text-transform: uppercase;
  margin: 0;
  background-color: #222;
  color: #fff;
  padding: 15px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.apollon-schedule-page .seasonTypeLabelContent {
  line-height: 100%;
  padding-left: 0.25em;
}

.apollon-schedule-page .seasonTypeLabelMain {
  font-size: 0.8em;
  margin: 0;
  font-weight: 400;
}

.apollon-schedule-page .gameBlock {
  font-size: 28px;
  line-height: 150%;
  position: relative;
  height: 200px;
  padding-bottom: 10px;
  padding-left: 36px;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
  margin: 10px 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 1px 4px;
}

.apollon-schedule-page .gameBlockWrapper:last-of-type .gameBlock {
  margin-bottom: 25px;
}

.apollon-schedule-page .gameBlockWrapper[data-homeaway="A"] .gameBlock {
  background: #eee;
}

.apollon-schedule-page .gameBlock::before {
  position: absolute;
  transform: rotate(-90deg);
  width: 200px;
  top: 82px;
  left: -82px;
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
}

.apollon-schedule-page .gameBlockWrapper[data-homeaway="H"] .gameBlock::before {
  content: "ΕΝΤΟΣ";
  background-color: var(--green);
  color: #fff;
}

.apollon-schedule-page .gameBlockWrapper[data-homeaway="A"] .gameBlock::before {
  content: "ΕΚΤΟΣ";
  background-color: #777;
  color: #ddd;
}

.apollon-schedule-page .gameSubBlock {
  vertical-align: top;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.apollon-schedule-page .oppLogoBlock {
  padding: 0 15px;
  width: 150px;
  z-index: 1;
  box-sizing: border-box;
}

.apollon-schedule-page .oppLogoBlock img {
  max-width: 100%;
  max-height: 70%;
  height: auto;
  width: 100%;
  object-fit: contain;
}

.apollon-schedule-page .gameInfoBlock {
  width: calc(100% - 345px);
  line-height: 105%;
  justify-content: flex-start;
  white-space: nowrap;
  z-index: 3;
}

.apollon-schedule-page .teamName::before {
  font-family: var(--font);
  font-weight: 900;
  opacity: 0.4;
  font-size: 0.8em;
  margin-right: 0.25em;
  vertical-align: bottom;
}

.apollon-schedule-page .gameBlockWrapper[data-homeaway="H"] .teamName::before {
  content: "VS";
}

.apollon-schedule-page .gameBlockWrapper[data-homeaway="A"] .teamName::before {
  content: "@";
}

.apollon-schedule-page .gameBadges .gameBadge {
  position: relative;
  padding: 0.4em 1em;
  font-size: 0.4em;
  display: inline-block;
  line-height: 100%;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.15);
  margin-right: 0.5rem;
  font-weight: 700;
}

.apollon-schedule-page .gameBadge.gameBadge-inseason,
.apollon-schedule-page .gameBadge.gameBadge-playoffgamenum {
  background-color: var(--cream);
  color: #111;
}

.apollon-schedule-page .gameDate {
  font-size: 1em;
  font-weight: 700;
}

.apollon-schedule-page .teamName,
.apollon-schedule-page .gameTime {
  font-size: 0.8em;
}

.apollon-schedule-page .teamName {
  margin-bottom: -2px;
}

.apollon-schedule-page .resultBlock {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1em;
  text-align: center;
  line-height: 115%;
  margin-top: -5px;
}

.apollon-schedule-page .finalLabel {
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #777;
}

.apollon-schedule-page .finalScore {
  font-size: 1.15em;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}

.apollon-schedule-page .resultColorTxt {
  font-size: 0.55em;
  font-weight: 700;
}

.apollon-schedule-page .gameBlockWrapper[data-hawkswin="true"] .resultColorTxt {
  color: var(--green);
}

.apollon-schedule-page .gameBlockWrapper[data-hawkswin="false"] .resultColorTxt {
  color: #c8102e;
}

.apollon-schedule-page .btnBlock {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  z-index: 5;
}

.apollon-schedule-page .btnBlock .btnsContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.apollon-schedule-page .btn.scheduleBtn {
  padding: 0;
  font-size: 0.7em;
  width: 100%;
  height: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: solid 1px rgba(225, 225, 225, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  box-sizing: border-box;
}

.apollon-schedule-page .btn.scheduleBtn.btn-torch {
  background: var(--green);
  color: #fff;
}

.apollon-schedule-page .btn.scheduleBtn.promosBtn {
  background: #efefef;
  color: var(--green);
  font-weight: 400;
  font-size: 0.55em;
  padding: 0 8px;
  text-align: center;
  white-space: normal;
  line-height: 1.2;
}

.apollon-schedule-page .gameBlockWrapper[data-gamestate="3"] .gameBlock::before,
.apollon-schedule-page .gameBlockWrapper[data-gamestate="3"] .oppLogoBlock,
.apollon-schedule-page .gameBlockWrapper[data-gamestate="3"] .gameInfoBlock {
  opacity: 0.55;
}

.apollon-schedule-page .schedule-empty {
  margin: 2rem 0;
  color: #555;
}

@media (min-width: 768px) and (max-width: 1399px) {
  .apollon-schedule-page .hawksSchedContainer_standard {
    margin: 15px 1.5vw 0;
    width: calc(100% - 3vw);
  }
}

@media (max-width: 991px) {
  .apollon-schedule-page .gameBlock {
    height: 170px;
    font-size: 22px;
  }
  .apollon-schedule-page .gameBlock::before {
    font-size: 18px;
    width: 170px;
    left: -67px;
    top: 67px;
    line-height: 30px;
  }
  .apollon-schedule-page .oppLogoBlock { width: 110px; }
  .apollon-schedule-page .gameInfoBlock { width: calc(100% - 300px); }
  .apollon-schedule-page .resultBlock,
  .apollon-schedule-page .btnBlock { width: 160px; }
  .apollon-schedule-page .seasonTypeLabel { font-size: 32px; }
}

@media (max-width: 767px) {
  .apollon-schedule-page .schedWrapper {
    padding: 0 10px;
  }

  .apollon-schedule-page .gameBlock {
    height: auto;
    min-height: 0;
    font-size: 16px;
    line-height: 1.35;
    padding: 12px 12px 12px 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 0;
    overflow: visible;
  }

  .apollon-schedule-page .gameBlock::before {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    width: 28px;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    font-size: 12px;
    line-height: 28px;
    padding: 8px 0;
    box-sizing: border-box;
  }

  .apollon-schedule-page .gameSubBlock {
    display: flex;
    height: auto;
    align-items: center;
  }

  .apollon-schedule-page .oppLogoBlock {
    width: 58px;
    padding: 0 6px 0 0;
    flex: 0 0 58px;
  }

  .apollon-schedule-page .oppLogoBlock img {
    max-height: 52px;
  }

  .apollon-schedule-page .gameInfoBlock {
    width: auto;
    flex: 1 1 calc(100% - 70px);
    white-space: normal;
    padding-right: 4px;
  }

  .apollon-schedule-page .teamName {
    font-size: 1.05em;
    line-height: 1.2;
  }

  .apollon-schedule-page .gameDate,
  .apollon-schedule-page .gameTime {
    font-size: 0.78em;
  }

  .apollon-schedule-page .resultBlock,
  .apollon-schedule-page .btnBlock {
    position: static;
    width: 100%;
    flex: 1 1 100%;
    height: auto;
    margin-top: 0;
    justify-content: stretch;
    padding-top: 2px;
    z-index: 1;
  }

  .apollon-schedule-page .btnBlock .btnsContainer {
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 8px;
  }

  .apollon-schedule-page .btn.scheduleBtn {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    min-height: 40px;
    font-size: 12px;
    padding: 8px 6px;
    text-align: center;
    border-radius: 4px;
  }

  .apollon-schedule-page .seasonTypeLabel {
    font-size: 24px;
    padding: 12px;
  }

  .apollon-schedule-page .finalScore { font-size: 1em; }

  .apollon-schedule-page .gameBadges .gameBadge {
    font-size: 10px;
  }
}

/* —— Sponsors / Partner Lineup (Hawks partnerships sector) —— */
.sponsors-page {
  background: #fff;
  padding: 0;
  font-family: var(--font);
}

.sponsors-page .existingPartnersSection {
  background: #f6f6f6;
  padding: 100px 50px;
}

.sponsors-page .existingPartnersSection h2 {
  margin: 25px 0;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  line-height: 1.1;
}

.sponsors-page .sectionMainParagraph {
  text-align: center;
  margin: 0 auto 25px;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  max-width: 52rem;
}

.sponsors-page .noWrap {
  white-space: nowrap;
}

.sponsors-page .existingPartnersContainer {
  text-align: center;
  margin-top: 25px;
}

.sponsors-page .cardContainer {
  display: inline-block;
  vertical-align: top;
}

.sponsors-page .cardContainer > a,
.sponsors-page .cardContainer > div {
  text-decoration: none;
  color: inherit;
  display: block;
}

.sponsors-page .card {
  height: 250px;
  width: 350px;
  position: relative;
  margin: 15px;
}

.sponsors-page .card > div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
  box-sizing: border-box;
}

.sponsors-page .card__front {
  background-color: #fff;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 15px;
  border: 1px solid transparent;
}

.sponsors-page .cardContainer > a:hover .card__front,
.sponsors-page .cardContainer > div:hover .card__front {
  background-color: #f9f9f9;
  filter: brightness(1.1);
  border: 1px solid #aaa;
}

.sponsors-page .card__front > div {
  margin-bottom: 25px;
  width: 100%;
  text-align: center;
}

.sponsors-page .card__front img {
  width: 55%;
  max-width: none;
  height: auto;
  margin: 0 auto 25px;
  display: block;
  object-fit: contain;
}

.sponsors-page .card__front p {
  text-align: center;
  color: #777;
  line-height: 115%;
  margin: 0;
  font-size: 16px;
  position: absolute;
  width: 90%;
  left: 5%;
  bottom: 25px;
}

.sponsors-page .card__front p .noWrap {
  display: block;
}

.sponsors-page .sponsor-card-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.2;
  margin: 0 auto 25px;
  max-width: 85%;
}

.sponsors-page .sponsors-empty {
  text-align: center;
  color: #555;
  margin: 1.5rem 0 0;
}

.sponsors-page .sponsors-cta-bar {
  background: var(--green);
  padding: 2.5rem 1.5rem;
  border-top: 4px solid var(--cream);
}

.sponsors-page .sponsors-cta-bar-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.sponsors-page .sponsors-cta-bar-inner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
}

.sponsors-page .sponsors-cta-bar-inner p {
  margin: 0 0 1.15rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

.sponsors-page .sponsors-cta-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  background: var(--cream);
  color: var(--green-deep) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  font-size: 0.85rem;
}

@media (max-width: 1299px) {
  .sponsors-page .card {
    height: 225px;
    width: 290px;
    margin: 15px;
  }
}

@media (max-width: 767px) {
  .sponsors-page .existingPartnersSection {
    padding: 50px 15px;
  }
  .sponsors-page .existingPartnersSection h2 {
    font-size: 28px;
  }
  .sponsors-page .sectionMainParagraph {
    font-size: 17px;
  }
  .sponsors-page .existingPartnersContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 0;
    text-align: left;
  }
  .sponsors-page .cardContainer {
    display: block;
    width: calc(50% - 6px);
    max-width: 280px;
  }
  .sponsors-page .card {
    height: auto;
    width: 100%;
    margin: 0;
    aspect-ratio: 7 / 5;
    min-height: 150px;
  }
  .sponsors-page .card__front p {
    font-size: 13px;
  }
}

@media (max-width: 599px) {
  .sponsors-page .existingPartnersSection {
    padding: 28px 12px;
  }
  .sponsors-page .cardContainer {
    width: calc(50% - 6px);
  }
  .sponsors-page .card {
    min-height: 140px;
  }
  .sponsors-page .card__front p {
    bottom: 12px;
    font-size: 12px;
  }
  .sponsors-page .sponsor-card-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 499px) {
  .sponsors-page .existingPartnersContainer {
    margin: 18px 0 0;
    gap: 10px;
  }
  .sponsors-page .cardContainer {
    width: 100%;
    max-width: none;
  }
  .sponsors-page .card {
    min-height: 150px;
    aspect-ratio: 16 / 9;
  }
  .sponsors-page .card__front p {
    bottom: 14px;
    font-size: 13px;
  }
  .sponsors-page .card__front img {
    margin-bottom: 14px;
    max-height: 64px;
  }
}

@media (max-width: 359px) {
  .sponsors-page .card {
    min-height: 140px;
  }
}

/* —— News (Hawks /news layout, Apollon green / cream — no black) —— */
.apollon-news-page {
  background: #f6f6f6;
  padding: 0 0 2.75rem;
  font-family: var(--font);
}

.apollon-news-page .newsWrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 12px;
}

.apollon-news-page .newsPageHeader {
  margin: 15px 0 18px;
  background: var(--green);
  color: #fff;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.apollon-news-page .newsPageHeaderInner {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
}

.apollon-news-page .newsPageTitle {
  margin: 0;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.apollon-news-page .newsFeatured {
  margin: 0 0 28px;
}

.apollon-news-page .newsFeaturedLink {
  display: block;
  position: relative;
  text-decoration: none !important;
  color: inherit;
}

.apollon-news-page .newsFeaturedMedia {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  max-height: 520px;
  overflow: hidden;
  background: #ddd;
  border-radius: 4px 4px 0 0;
}

.apollon-news-page .newsFeaturedMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apollon-news-page .newsFeaturedPanel {
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 18%;
  width: min(42%, 460px);
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 1.5rem 1.6rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 4px 18px;
}

.apollon-news-page .newsFeaturedTitle {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.apollon-news-page .newsFeaturedMeta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.85rem 0.15rem 0;
  border-top: 3px solid var(--cream);
  margin-top: -3px;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  color: #444;
}

.apollon-news-page .newsMetaSep {
  width: 1px;
  height: 0.9em;
  background: #bbb;
  display: inline-block;
}

.apollon-news-page .newsMetaCat {
  color: var(--green);
  text-transform: lowercase;
}

.apollon-news-page .newsGrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 18px;
}

.apollon-news-page .newsCard {
  margin: 0;
  background: transparent;
}

.apollon-news-page .newsCardLink {
  display: block;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
}

.apollon-news-page .newsCardMedia {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ddd;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.apollon-news-page .newsCardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.apollon-news-page .newsCardLink:hover .newsCardMedia img {
  transform: scale(1.04);
}

.apollon-news-page .newsCardTitle {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: #111;
}

.apollon-news-page .newsCardLink:hover .newsCardTitle {
  color: var(--green);
}

.apollon-news-page .newsCardMeta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  text-transform: lowercase;
}

.apollon-news-page .news-empty {
  margin: 2rem 0;
  padding: 1.25rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 4px;
}

.apollon-news-page .newsPagination {
  margin-top: 2rem;
}

.apollon-news-page .newsPagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.apollon-news-page .newsPagination a,
.apollon-news-page .newsPagination .current {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.apollon-news-page .newsPagination a:hover {
  border-color: var(--green);
  color: var(--green);
}

.apollon-news-page .newsPagination .current {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

@media (max-width: 980px) {
  .apollon-news-page .newsPageTitle {
    font-size: 34px;
  }

  .apollon-news-page .newsFeaturedMedia {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .apollon-news-page .newsFeaturedPanel {
    width: min(48%, 360px);
    top: 10%;
    bottom: 16%;
    padding: 1.1rem 1.15rem;
  }

  .apollon-news-page .newsFeaturedTitle {
    font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  }

  .apollon-news-page .newsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .apollon-news-page .newsFeaturedMedia {
    aspect-ratio: 16 / 9;
    border-radius: 4px;
  }

  .apollon-news-page .newsFeaturedPanel {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: -4px;
    padding: 1rem 1.05rem;
  }

  .apollon-news-page .newsFeaturedTitle {
    font-size: clamp(1.15rem, 4.2vw, 1.55rem);
  }

  .apollon-news-page .newsFeaturedMeta {
    border-top: 3px solid var(--cream);
  }
}

@media (max-width: 640px) {
  .apollon-news-page .newsPageTitle {
    font-size: 28px;
  }

  .apollon-news-page .newsFeaturedMedia {
    aspect-ratio: 4 / 3;
  }

  .apollon-news-page .newsGrid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .apollon-news-page .newsCardTitle {
    font-size: 1.05rem;
  }
}

/* Single news article */
.apollon-news-single .newsSingleHeaderInner {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 0;
  padding: 1.15rem 1.25rem 1.25rem;
}

.apollon-news-single .newsSingleMeta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.apollon-news-single .newsSingleMeta .newsMetaCat {
  color: var(--cream);
}

.apollon-news-single .newsSingleMeta .newsMetaSep {
  background: rgba(255, 255, 255, 0.45);
}

.apollon-news-single .newsSingleTitle {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
}

.apollon-news-single .newsSingleMedia {
  margin: 0 0 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  max-height: 480px;
  background: #ddd;
}

.apollon-news-single .newsSingleMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apollon-news-single .newsSingleContent {
  background: #fff;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 4px;
  padding: 1.5rem 1.4rem 1.75rem;
  max-width: 760px;
  margin: 0 auto;
  color: #222;
  line-height: 1.65;
}

.apollon-news-single .newsSingleBack {
  max-width: 760px;
  margin: 1.25rem auto 0;
}

.apollon-news-single .newsBackBtn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--green);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 4px;
}

.apollon-news-single .newsBackBtn:hover {
  background: var(--green-deep);
  color: var(--cream) !important;
}

@media (max-width: 640px) {
  .apollon-news-single .newsSingleMedia {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
}



/* —— History timeline (schedule-style, L/R + scroll reveal) —— */
.apollon-history-page {
  background: #f6f6f6;
  padding: 0 0 2.5rem;
  max-width: none;
}

.apollon-history-page .histWrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}

.apollon-history-page .hawksHistContainer {
  position: relative;
  width: 100%;
  margin: 15px auto 0;
  font-family: var(--font);
}

.apollon-history-page .historySeasonLabel {
  position: sticky;
  top: -1px;
  z-index: 3;
  font-size: 44px;
  text-transform: uppercase;
  margin: 0 0 18px;
  background-color: #222;
  color: #fff;
  padding: 15px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.apollon-history-page .seasonTypeLabelContent {
  line-height: 100%;
  padding-left: 0.25em;
}

.apollon-history-page .seasonTypeLabelMain {
  font-size: 0.8em;
  margin: 0;
  font-weight: 400;
}

.apollon-history-page .history-intro-block {
  background: #fff;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 1px 4px;
  padding: 1.15rem 1.35rem;
  margin: 0 0 2rem;
  border-left: 6px solid var(--green);
  font-size: 1.05rem;
  line-height: 1.55;
  color: #333;
}

.apollon-history-page .history-intro-block p {
  margin: 0;
  max-width: 70ch;
}

.apollon-history-page .history-timeline {
  position: relative;
  padding: 0.5rem 0 1rem;
}

.apollon-history-page .history-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  margin-left: -2px;
  background: var(--green);
  border-radius: 2px;
  z-index: 0;
}

.apollon-history-page .history-block-wrap {
  position: relative;
  width: calc(50% - 28px);
  margin: 0 0 1.35rem;
  z-index: 1;
  opacity: 0;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.apollon-history-page .history-block-wrap.side-left {
  margin-right: auto;
  transform: translate3d(-48px, 28px, 0);
}

.apollon-history-page .history-block-wrap.side-right {
  margin-left: auto;
  transform: translate3d(48px, 28px, 0);
}

.apollon-history-page .history-block-wrap.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.apollon-history-page .history-block-wrap[data-reveal="fade"] {
  transform: translate3d(0, 24px, 0);
}

.apollon-history-page .history-intro-block[data-reveal="fade"] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.apollon-history-page .history-intro-block[data-reveal="fade"].is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.apollon-history-page .history-node {
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  box-shadow: 0 0 0 3px #f6f6f6;
  z-index: 2;
}

.apollon-history-page .history-block-wrap.side-left .history-node {
  right: -36px;
}

.apollon-history-page .history-block-wrap.side-right .history-node {
  left: -36px;
}

.apollon-history-page .history-block-wrap.is-win .history-node,
.apollon-history-page .history-block-wrap.is-founding .history-node,
.apollon-history-page .history-block-wrap.is-now .history-node {
  background: var(--green);
  border-color: var(--cream);
}

.apollon-history-page .history-block-wrap.is-loss .history-node {
  border-color: #777;
  background: #eee;
}

.apollon-history-page .history-block {
  position: relative;
  min-height: 140px;
  padding: 1.1rem 1.15rem 1.15rem 3.1rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 1px 4px;
  overflow: hidden;
  text-transform: none;
}

.apollon-history-page .history-block-wrap.side-right .history-block {
  background: #eee;
}

.apollon-history-page .history-block-wrap.is-win .history-block {
  box-shadow: rgba(10, 92, 44, 0.18) 0 2px 8px;
}

.apollon-history-page .history-year-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 36px;
  background: var(--green);
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.5rem 0;
}

.apollon-history-page .history-block-wrap.is-loss .history-year-ribbon {
  background: #777;
  color: #ddd;
}

.apollon-history-page .history-block-wrap.is-now .history-year-ribbon {
  background: var(--green-deep);
  color: var(--cream);
}

.apollon-history-page .history-title {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #111;
}

.apollon-history-page .history-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  text-transform: none;
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  .apollon-history-page .history-block-wrap,
  .apollon-history-page .history-intro-block[data-reveal="fade"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 820px) {
  .apollon-history-page .historySeasonLabel {
    font-size: 32px;
  }

  .apollon-history-page .history-spine {
    left: 18px;
    margin-left: 0;
  }

  .apollon-history-page .history-block-wrap,
  .apollon-history-page .history-block-wrap.side-left,
  .apollon-history-page .history-block-wrap.side-right {
    width: calc(100% - 42px);
    margin-left: 42px;
    margin-right: 0;
    transform: translate3d(0, 28px, 0);
  }

  .apollon-history-page .history-block-wrap.side-left .history-node,
  .apollon-history-page .history-block-wrap.side-right .history-node {
    left: -32px;
    right: auto;
  }

  .apollon-history-page .history-block-wrap.is-inview {
    transform: translate3d(0, 0, 0);
  }

  .apollon-history-page .history-block-wrap.side-right .history-block {
    background: #fff;
  }

  .apollon-history-page .history-block-wrap:nth-of-type(even) .history-block {
    background: #eee;
  }
}

@media (max-width: 520px) {
  .apollon-history-page .historySeasonLabel {
    font-size: 26px;
    padding: 12px;
  }

  .apollon-history-page .history-title {
    font-size: 1.15rem;
  }

  .apollon-history-page .history-block {
    padding-left: 2.85rem;
  }
}


