.odds-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 48px 24px 64px;
  align-items: start;
}

.odds-main h1 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 20px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.odds-main h2 {
  font-size: 0.95rem;
  color: var(--tactical-amber);
  margin: 28px 0 12px;
}

.odds-main p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}

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

.odds-table th {
  background: var(--surface);
  color: var(--tactical-hud-green);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.odds-table td {
  color: var(--muted);
}

.odds-rail {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: calc(var(--nav-height) + 16px);
}

.odds-rail-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.odds-rail-body {
  padding: 20px;
}

.odds-rail-body h3 {
  font-size: 0.85rem;
  color: var(--tactical-hud-green);
  margin-bottom: 10px;
}

.odds-rail-body p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .odds-layout {
    grid-template-columns: 1fr;
    padding: 32px 20px 48px;
  }

  .odds-rail {
    position: static;
  }

  .odds-rail-img {
    max-width: 100%;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 375px) {
  .odds-layout,
  .odds-rail {
    overflow: hidden;
    max-width: 100%;
  }
}
