.topic-hero {
  background: linear-gradient(120deg, #2a1515 0%, #5c2a2a 55%, #3a1c1c 100%);
  color: #fff0f0;
  padding: 48px 24px 40px;
  border-bottom: 3px solid var(--brass);
  position: relative;
  overflow: hidden;
}

.topic-hero::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 4px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  right: 8%;
  top: 20%;
  animation: gear-spin 18s linear infinite;
}

.topic-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topic-hero h1 {
  font-family: var(--font-display);
  font-variant: small-caps;
  letter-spacing: 0.05em;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 10px;
}

.topic-hero p {
  max-width: 52ch;
  color: rgba(255, 240, 240, 0.8);
}

.odds-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 24px 56px;
}

.odds-rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.odds-rail .rail-img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.4);
  box-shadow: 4px 4px 0 rgba(184, 115, 51, 0.2);
}

.odds-callout {
  background: var(--surface);
  border-left: 4px solid var(--brass);
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}

.odds-table th,
.odds-table td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
}

.odds-table th {
  background: rgba(255, 77, 77, 0.08);
  font-family: var(--font-display);
}

@media (max-width: 800px) {
  .odds-layout {
    grid-template-columns: 1fr;
  }

  .odds-rail {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .odds-rail .rail-img {
    width: calc(50% - 6px);
    max-width: 100%;
    max-height: 160px;
    height: auto;
    object-fit: cover;
  }
}

.pay-band {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 24px 20px;
}

.pay-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4px;
  margin-bottom: 28px;
  min-height: 200px;
}

.pay-mosaic .band-img {
  background-size: cover;
  background-position: center;
  min-height: 200px;
  max-height: 280px;
  border: 1px solid var(--border);
}

.pay-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 56px;
}

.pay-columns article {
  background: var(--surface);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.15);
}

@media (max-width: 700px) {
  .pay-mosaic,
  .pay-columns {
    grid-template-columns: 1fr;
  }

  .pay-mosaic {
    max-width: 100%;
    overflow: hidden;
  }

  .pay-mosaic .band-img {
    max-width: 100%;
    min-height: 140px;
    max-height: 200px;
  }
}

.inplay-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  max-width: var(--max-w);
  margin: 28px auto 56px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.inplay-aside {
  background: #2a1515;
  color: #fff0f0;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inplay-aside img {
  max-width: 100%;
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.inplay-aside .stat {
  font-family: var(--font-display);
  font-variant: small-caps;
  font-size: 1.1rem;
  color: var(--brass);
  border-bottom: 1px solid rgba(255, 179, 179, 0.2);
  padding-bottom: 10px;
}

.inplay-body {
  padding: 28px 26px;
}

.pull-quote {
  margin: 20px 0;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--leather);
  border-top: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  background: rgba(255, 179, 179, 0.12);
}

@media (max-width: 800px) {
  .inplay-split {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
  }

  .inplay-aside img {
    max-height: 160px;
  }
}

.types-hero-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 24px 0;
}

.types-hero-strip .strip-img {
  width: 100%;
  max-width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(201, 162, 39, 0.35);
}

@media (max-width: 767px) {
  .types-hero-strip {
    padding: 20px 16px 0;
    overflow: hidden;
  }

  .types-hero-strip .strip-img {
    max-height: 180px;
  }
}

.types-stack {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.types-stack .type-block {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(201, 162, 39, 0.35);
}

.types-stack .type-block:last-child {
  border-bottom: none;
}

.types-stack h2 {
  font-family: var(--font-display);
  font-variant: small-caps;
  margin-bottom: 8px;
}
