/* ==============================================
   Responsive: Tablet (980px)
   ============================================== */
@media (max-width: 980px) {

  /* ── Nav ── */
  .ch-nav {
    padding: 0 1.5rem;
    height: 60px;
  }

  .ch-nav-brand-sub {
    display: none;
  }

  .ch-nav-brand-main {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .ch-nav-cta {
    margin-left: auto;
    margin-right: 12px;
    padding: 7px 16px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .ch-nav-toggle {
    display: block;
    margin-left: 0;
  }

  /* Mobile nav list */
  .ch-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 14, 28, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(168, 184, 200, 0.1);
    border-bottom: 1px solid rgba(168, 184, 200, 0.1);
    z-index: 300;
    padding: 0;
    margin: 0;
    gap: 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .ch-nav-links.ch-nav-open {
    display: flex;
  }

  .ch-nav-links > li {
    width: 100%;
    flex-direction: column;
  }

  .ch-nav-links > li > a {
    padding: 16px 2rem;
    border-bottom: 1px solid rgba(168, 184, 200, 0.06);
    font-size: 11px;
    letter-spacing: 3px;
  }

  .ch-nav-links > li.menu-item-has-children > a::after {
    display: none;
  }

  .ch-nav-links > li > ul.sub-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    padding-top: 0;
    min-width: 0;
    background: rgba(0, 8, 16, 0.5);
  }

  .ch-nav-links > li > ul.sub-menu::before {
    display: none;
  }

  .ch-nav-links > li > ul.sub-menu > li > a {
    padding: 12px 2rem 12px 3rem;
    border-bottom: 1px solid rgba(168, 184, 200, 0.04);
    font-size: 10px;
    letter-spacing: 2px;
  }

  /* Nav spacer adjustment */
  .ch-custom-header #et-main-area,
  .ch-custom-header #page-container .et_pb_section:first-child {
    padding-top: 68px;
  }

  /* Scores strip */
  .ch-score-item:nth-child(1) {
    display: none;
  }

  .ch-scores-inner {
    padding: 0 16px;
  }

  .ch-score-item {
    gap: 10px;
    padding: 8px 16px;
  }

  /* Page hero */
  .ch-page-hero {
    padding: 32px 16px;
  }

  .ch-page-hero-title {
    font-size: 36px;
  }

  .ch-page-hero-ghost {
    display: none;
  }

  /* Quick links — 2 columns on tablet */
  .ch-quick-links {
    grid-template-columns: 1fr 1fr;
  }

  .ch-hero {
    padding: 40px 20px;
  }

  .ch-hero-title {
    font-size: 46px;
  }

  .ch-hero-pretitle {
    font-size: 11px;
  }

  .ch-arena-columns {
    flex-direction: column;
  }

  .ch-arena-col {
    border-right: none;
    border-bottom: 1px solid rgba(168, 184, 200, 0.07);
  }

  /* Roster */
  .ch-roster-header,
  .ch-roster-row {
    grid-template-columns: 56px 1fr 60px 60px;
  }

  .ch-roster-hometown,
  .ch-roster-header-cell.ch-col-hometown {
    display: none;
  }

  .ch-roster-stat:last-child,
  .ch-roster-header-cell.ch-col-stat:last-child {
    display: none;
  }

  .ch-roster-number {
    font-size: 32px;
  }

  .ch-roster-player-name {
    font-size: 17px;
  }

  .ch-roster {
    padding: 24px 16px;
  }

  /* Footer — Tablet */
  .ch-ft-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .ch-ft-cta-title {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .ch-ft-cta-slash {
    right: 15%;
  }

  .ch-ft-grid {
    flex-direction: column;
    gap: 40px;
  }

  .ch-ft-brand {
    flex: none;
    max-width: none;
    text-align: center;
  }

  .ch-ft-logo {
    display: inline-block;
  }

  .ch-ft-brand-info {
    align-items: center;
  }

  .ch-ft-logos {
    justify-content: center;
  }

  .ch-ft-social {
    justify-content: center;
  }

  .ch-ft-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .ch-ft-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .ch-ft-bar-right {
    flex-direction: column;
    gap: 8px;
  }

  .ch-ft-credit {
    padding-left: 0;
    border-left: none;
  }
}

/* ==============================================
   Responsive: Phone (480px)
   ============================================== */
@media (max-width: 480px) {

  /* ── Nav ── */
  .ch-nav {
    padding: 0 1rem;
    height: 56px;
  }

  .ch-nav-brand-main {
    font-size: 17px;
    letter-spacing: 2px;
  }

  .ch-nav-cta {
    padding: 6px 12px;
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-right: 8px;
  }

  .ch-nav-links > li > a {
    padding: 14px 1.5rem;
  }

  .ch-nav-links > li > ul.sub-menu > li > a {
    padding: 10px 1.5rem 10px 2.5rem;
  }

  /* Nav spacer adjustment */
  .ch-custom-header #et-main-area,
  .ch-custom-header #page-container .et_pb_section:first-child {
    padding-top: 56px;
  }

  /* Scores strip */
  .ch-score-item:nth-child(1),
  .ch-score-item:nth-child(2) {
    display: none;
  }

  .ch-scores-inner {
    padding: 0 12px;
  }

  .ch-score-item {
    gap: 8px;
    padding: 8px 12px;
  }

  .ch-score-date {
    font-size: 10px;
  }

  .ch-score-row {
    font-size: 12px;
    gap: 10px;
  }

  .ch-score-tag {
    font-size: 9px;
  }

  .ch-score-upcoming-label {
    font-size: 12px;
  }

  .ch-score-upcoming-detail {
    font-size: 10px;
  }

  /* Page hero */
  .ch-page-hero {
    padding: 24px 12px;
  }

  .ch-page-hero-title {
    font-size: 28px;
  }

  .ch-page-hero-breadcrumbs {
    font-size: 11px;
  }

  /* Quick links — single column on phone */
  .ch-quick-links {
    grid-template-columns: 1fr;
  }

  .ch-quick-link {
    height: 120px;
  }

  .ch-hero {
    padding: 32px 16px;
  }

  .ch-hero-title {
    font-size: 32px;
  }

  .ch-hero-pretitle {
    font-size: 10px;
  }

  .ch-hero-subtitle {
    font-size: 13px;
  }

  .ch-nav-links li a {
    font-size: 10px;
  }

  /* Roster */
  .ch-roster-header,
  .ch-roster-row {
    grid-template-columns: 48px 1fr 50px;
  }

  .ch-roster-stat:nth-last-child(2),
  .ch-roster-header-cell.ch-col-stat:nth-last-child(2) {
    display: none;
  }

  .ch-roster-number {
    font-size: 28px;
    padding: 12px 8px 12px 12px;
  }

  .ch-roster-player-name {
    font-size: 14px;
  }

  .ch-roster-player-detail {
    font-size: 10px;
  }

  .ch-roster-stat-val {
    font-size: 15px;
  }

  .ch-roster-filter {
    font-size: 11px;
    padding: 8px 12px;
  }

  .ch-roster {
    padding: 20px 12px;
  }

  /* Footer — Phone */
  .ch-ft-cta-title {
    font-size: 24px;
  }

  .ch-ft-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .ch-ft-btn-solid,
  .ch-ft-btn-outline {
    text-align: center;
  }

  .ch-ft-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ch-ft-col {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(168, 184, 200, 0.04);
    padding-top: 20px;
  }

  .ch-ft-col a:hover {
    padding-left: 0;
    border-left-color: transparent;
  }

  .ch-ft-ghost {
    display: none;
  }
}
