:root {
  --navy: #0a2342;
  --navy-soft: #173b66;
  --orange: #fb4f14;
  --orange-soft: #fff1eb;
  --paper: #f7f8fa;
  --white: #ffffff;
  --ink: #172235;
  --muted: #5d6a7c;
  --line: #dbe2ea;
  --shadow: 0 10px 24px rgba(10, 35, 66, 0.08);
  --brand-line: clamp(1.35rem, 4vw, 1.85rem);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--orange);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--orange);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--navy-soft);
}

a:hover,
a:focus-visible {
  color: var(--orange);
}

.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--orange);
  color: var(--white);
}

.broncos-banner {
  display: block;
  width: 100%;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  text-align: center;
}

.broncos-banner__inner {
  display: grid;
  place-items: center;
  padding: 0.55rem 1rem 0.6rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.broncos-banner__titles {
  min-width: 0;
  width: max-content;
  max-width: calc(100% - 2rem);
  margin-inline: auto;
  text-align: center;
}

.broncos-banner__team {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.15rem, 3.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
}

.broncos-banner__rule {
  display: block;
  width: min(100%, 14rem);
  height: 3px;
  margin: 0.28rem auto 0.22rem;
  background: var(--orange);
  border: 0;
}

.broncos-banner__site {
  margin: 0;
  color: #e8eef6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Corner accents stay decorative so the wordmark can stay centered */
.broncos-banner__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(225deg, var(--orange) 0 38%, #d94312 38% 48%, transparent 48%);
  opacity: 0.95;
  pointer-events: none;
}

.broncos-banner__accent--left {
  right: auto;
  left: 0;
  background: linear-gradient(135deg, var(--orange) 0 38%, #d94312 38% 48%, transparent 48%);
}

@media (max-width: 41.99rem) {
  .broncos-banner__inner {
    padding: 0.45rem 0.75rem 0.5rem;
  }

  .broncos-banner__accent,
  .broncos-banner__accent--left {
    width: 1.85rem;
    height: 1.85rem;
  }
}

.footer-inner {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
}

.main {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 0 0 3rem;
}

.header-bar {
  align-items: flex-start;
  display: flex;
  gap: 1rem 1.25rem;
  padding: 0.85rem 1rem;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner--main {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  min-width: 0;
  width: min(100%, 72rem);
  margin: 0 auto;
}

/* Standings + main sit side-by-side; standings fills the left orange gap */
.page-shell {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.75rem 1rem 0 0.4rem;
  box-sizing: border-box;
}

.afcwest-rail {
  flex: 0 0 clamp(15rem, 20vw, 19.5rem);
  width: clamp(15rem, 20vw, 19.5rem);
  padding: 0;
  box-sizing: border-box;
}

.afcwest-standings {
  background: var(--white);
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 0.7rem;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
  max-width: none;
  width: 100%;
  padding: 0.9rem 1rem 0.85rem;
  box-sizing: border-box;
}

.afcwest-standings__title {
  display: inline-block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}

.afcwest-standings__title:hover,
.afcwest-standings__title:focus-visible {
  color: var(--orange);
}

.afcwest-standings__table {
  border-collapse: collapse;
  width: 100%;
  color: var(--ink);
}

.afcwest-standings__table th,
.afcwest-standings__table td {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0.45rem 0.35rem 0;
  text-align: left;
  white-space: nowrap;
  vertical-align: baseline;
}

.afcwest-standings__table th:last-child,
.afcwest-standings__table td:last-child,
.afcwest-standings__table th:nth-child(2),
.afcwest-standings__table td:nth-child(2) {
  text-align: right;
  padding-right: 0;
  padding-left: 0.65rem;
}

.afcwest-standings__table th {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom-color: #c5ced9;
}

.afcwest-standings__table tr.is-den td {
  color: var(--navy);
  font-weight: 700;
  background: var(--orange-soft);
}

.afcwest-standings__table tr.is-den td:first-child {
  box-shadow: inset 3px 0 0 var(--orange);
  padding-left: 0.45rem;
}

.afcwest-standings__table tbody tr:last-child td {
  border-bottom: 0;
}

/* AFC West odds tile: same tile as standings, stacked below it */
.afcwest-standings--odds {
  margin-top: 0.75rem;
}

.afcwest-standings--odds abbr {
  text-decoration: none;
  cursor: help;
}

.afcwest-standings__source {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0.5rem 0 0;
}

.afcwest-standings__source a {
  color: var(--navy-soft);
}


.brand {
  color: var(--white);
  font-size: var(--brand-line);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.tagline {
  color: #cbd8e7;
  font-size: 0.82rem;
  margin: 0.15rem 0 0.85rem;
}

.nav {
  display: flex;
  gap: 0.35rem;
}

.nav a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.3rem 0.78rem;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--white);
  color: var(--navy);
}


.hero {
  margin-bottom: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
}

.kicker {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.deck {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 42rem;
}

.pub-meta {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0.85rem 0 0;
}

.pub-dot {
  margin: 0 0.35rem;
}

.grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card--accent {
  border-top: 5px solid var(--orange);
}

.card-head {
  align-items: baseline;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.card-head h2 {
  margin-bottom: 0;
}

.card-link {
  color: var(--navy-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--orange);
  text-decoration: underline;
}

.record {
  align-items: baseline;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.record strong {
  color: var(--navy);
  font-size: 2.25rem;
  letter-spacing: -0.04em;
}

.badge {
  background: var(--orange-soft);
  border-radius: 999px;
  color: #b7380b;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
}

.split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 42rem) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .split .data-list:last-child {
    border-left: 1px solid var(--line);
    padding-left: 1.5rem;
  }
}

.data-list {
  display: grid;
  gap: 0.72rem;
  margin: 0;
}

.data-list div {
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
}

.data-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.data-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-list dd {
  margin: 0.1rem 0 0;
}

.stat-line {
  margin: 0;
}

.stat-line + .stat-line {
  margin-top: 0.65rem;
}

.note {
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 0.45rem 0.45rem 0;
  padding: 0.8rem 0.9rem;
}

.note p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.source-row {
  color: var(--muted);
  font-size: 0.78rem;
  margin: auto 0 0;
  padding-top: 1rem;
}

.source-row a {
  margin-right: 0.65rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 -0.15rem;
}

.facts {
  border-collapse: collapse;
  font-size: 0.88rem;
  width: 100%;
}

.facts th,
.facts td {
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0.55rem 0.55rem 0;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.facts th {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.facts tr.is-den td {
  background: var(--orange-soft);
  font-weight: 650;
}

.facts tr.is-den td:first-child {
  box-shadow: inset 3px 0 0 var(--orange);
}

.schedule {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule li {
  border-top: 1px solid var(--line);
  padding: 0.72rem 0;
}

.schedule li:first-child {
  border-top: 0;
  padding-top: 0;
}

.schedule li:last-child {
  padding-bottom: 0;
}

.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-list li {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.archive-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.archive-list a {
  color: var(--navy);
  font-weight: 800;
}

.archive-list a:hover,
.archive-list a:focus-visible {
  color: var(--orange);
}

.footer {
  background: var(--navy);
  color: #cbd8e7;
  font-size: 0.82rem;
}

.footer-inner {
  padding: 1.15rem 0;
}

.footer p {
  margin: 0;
}

@media (min-width: 42rem) {
  .header-bar {
    align-items: center;
  }

  .header-inner--main {
    align-items: center;
  }

  .tagline {
    margin-bottom: 0;
  }

  .brand-block {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
  }

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

  .span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 41.99rem) {
  .header-bar {
    flex-wrap: wrap;
  }

  .page-shell {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .afcwest-rail {
    flex: 0 0 auto;
    width: 100%;
    max-width: 22rem;
  }

  .afcwest-standings {
    max-width: none;
  }

  .header-inner--main {
    width: 100%;
  }

  .nav {
    margin-top: 0.35rem;
  }
}
.writeup-kicker {
  margin: 1.1rem 0 0.55rem;
  font-size: 0.95rem;
  color: var(--navy);
}

.game-writeup p {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.game-writeup p:last-child {
  margin-bottom: 0;
}

.card--accent .game-writeup p {
  color: var(--ink);
}

.sb-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .sb-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sb-list {
  list-style: none;
  margin: 0.5rem 0 0.75rem;
  padding: 0;
}

.sb-list li {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 0.45rem 0;
}

.sb-list li:last-child {
  border-bottom: 0;
}

.sb-team {
  color: var(--ink);
  font-weight: 600;
}

.sb-price {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}


.note-inline {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.news-list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.news-list li {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.news-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-list a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.news-list a:hover,
.news-list a:focus-visible {
  color: var(--orange);
  text-decoration: underline;
}

.news-meta {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.news-blurb {
  color: var(--ink);
  font-size: 0.95rem;
  margin: 0.35rem 0 0;
}

.odds-summary {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
  margin: 0 0 0.85rem;
}
