/* ==============================================
   Promo Grid — feature tile + 2x2 thumbnails
   ============================================== */
.ch-promo-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0;
}

.ch-promo-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  background: var(--surface);
  min-height: 220px;
  isolation: isolate;
}

/* Feature tile spans both rows on the left */
.ch-promo-tile--feature {
  grid-row: span 2;
  min-height: 460px;
}

.ch-promo-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.7) saturate(1.05);
}

.ch-promo-tile:hover .ch-promo-tile__img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(1.1);
}

/* Bottom-up gradient so labels stay legible */
.ch-promo-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 20, 45, 0.85) 0%,
    rgba(0, 20, 45, 0.35) 45%,
    rgba(0, 20, 45, 0.10) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.ch-promo-tile__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  padding: 20px;
  gap: 12px;
}

/* Feature tile centers a big display title */
.ch-promo-tile--feature .ch-promo-tile__body {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
}

.ch-promo-tile__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  margin: auto 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.ch-promo-tile__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Maroon-style badge — uses team primary color */
.ch-promo-tile__badge {
  display: inline-block;
  padding: 8px 14px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ch-promo-tile:hover .ch-promo-tile__badge {
  background: var(--secondary);
  color: var(--on-secondary);
  transform: translateY(-2px);
}

.ch-promo-tile__caption {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  max-width: 90%;
}

/* ============== Tablet ============== */
@media (max-width: 980px) {
  .ch-promo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .ch-promo-tile--feature {
    grid-column: span 2;
    grid-row: auto;
    min-height: 320px;
  }

  .ch-promo-tile {
    min-height: 200px;
  }
}

/* ============== Phone ============== */
@media (max-width: 480px) {
  .ch-promo-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 16px;
    margin: 24px auto;
  }

  .ch-promo-tile--feature {
    grid-column: auto;
    min-height: 280px;
  }

  .ch-promo-tile {
    min-height: 180px;
  }

  .ch-promo-tile__caption {
    font-size: 15px;
  }
}
