:root {
  color-scheme: light;
  --blue-950: #092457;
  --blue-850: #0e3f8f;
  --blue-700: #155cc8;
  --blue-500: #2d85ef;
  --blue-120: #dcebff;
  --blue-070: #f2f7ff;
  --green-500: #58b86d;
  --ink: #12203a;
  --muted: #52647f;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(10, 44, 96, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    url("assets/sport-banner.png") center / cover no-repeat fixed,
    #dcecff;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 2.4vw, 58px);
}

.fallback-panel {
  width: min(82vw, 1760px);
  min-height: min(1040px, calc(100vh - clamp(32px, 5vw, 116px)));
  display: block;
  padding: clamp(12px, 2.7vw, 56px);
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.content {
  width: clamp(660px, 42vw, 980px);
  min-height: clamp(576px, 56vh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  position: relative;
  padding: clamp(30px, 2.8vw, 60px) clamp(42px, 3.2vw, 78px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 56px rgba(8, 32, 74, 0.18);
}

.city-title {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--blue-700);
  font-size: clamp(1.12rem, 1.25vw, 1.7rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.city-title::before {
  content: "";
  flex: 0 0 auto;
  width: clamp(34px, 3.1vw, 62px);
  height: 4px;
  border-radius: 999px;
  background: var(--blue-700);
}

.topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}

.brand-title,
.eyebrow {
  margin: 0;
}

.brand-title {
  color: var(--blue-950);
  font-size: clamp(0.96rem, 0.92vw, 1.16rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.eyebrow {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue-850);
  background: var(--blue-120);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(4.35rem, 4.45vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.18vw, 1.6rem);
  line-height: 1.5;
}

.sport-notes {
  display: grid;
  gap: 10px;
  width: min(780px, 100%);
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.sport-notes li {
  display: grid;
  grid-template-columns: clamp(42px, 2.8vw, 56px) 1fr;
  align-items: center;
  gap: clamp(14px, 1.2vw, 22px);
  min-height: clamp(54px, 4vw, 72px);
  padding: clamp(10px, 0.9vw, 16px) clamp(16px, 1.4vw, 24px);
  border-radius: 8px;
  color: var(--blue-950);
  background: rgba(242, 247, 255, 0.86);
  font-size: clamp(1rem, 0.95vw, 1.25rem);
  font-weight: 750;
}

.sport-notes span {
  display: grid;
  place-items: center;
  width: clamp(38px, 2.8vw, 54px);
  height: clamp(38px, 2.8vw, 54px);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-size: clamp(0.82rem, 0.8vw, 1.06rem);
  font-weight: 900;
}

.credit {
  width: min(780px, 100%);
  margin: clamp(18px, 1.3vw, 28px) 0 0;
  padding-top: clamp(12px, 0.9vw, 18px);
  border-top: 1px solid rgba(21, 92, 200, 0.14);
  color: var(--muted);
  font-size: clamp(0.78rem, 0.78vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  body {
    background-position: center top;
    background-attachment: scroll;
  }

  .page-shell {
    align-items: start;
  }

  .fallback-panel {
    width: min(100%, 760px);
    min-height: auto;
    padding: 0;
  }

  .content {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    padding: clamp(28px, 8vw, 48px);
  }

  h1 {
    max-width: 720px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 12px;
  }

  .fallback-panel {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.15rem, 13vw, 3.45rem);
  }

  .city-title {
    gap: 10px;
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .topline {
    gap: 8px;
    margin-bottom: 12px;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .lead {
    margin-top: 16px;
    font-size: 1.02rem;
  }

  .sport-notes {
    margin-top: 24px;
  }

  .sport-notes li {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .sport-notes span {
    width: 34px;
    height: 34px;
  }

  .credit {
    font-size: 0.78rem;
  }
}
