.topic-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 260px;
}

.topic-hero__copy {
  background: var(--primary);
  color: #fff;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.topic-hero__copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 36px,
    rgba(255, 255, 255, 0.04) 36px,
    rgba(255, 255, 255, 0.04) 37px
  );
  pointer-events: none;
}

.topic-hero__copy > * {
  position: relative;
  z-index: 1;
}

.topic-hero__copy h1 {
  color: #fff;
  margin: 8px 0 12px;
}

.topic-hero__copy p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
}

.topic-hero__visual {
  background-size: cover;
  background-position: center;
  border-left: 2px solid var(--accent);
  min-height: 220px;
  max-width: 100%;
  overflow: hidden;
}

.topic-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-body h2 {
  margin: 32px 0 12px;
}

.topic-body p {
  color: var(--muted);
  margin-bottom: 14px;
}

.topic-body ul {
  padding-left: 1.2rem;
  margin: 12px 0 20px;
  color: var(--muted);
}

.topic-body li {
  margin-bottom: 8px;
}

.bonus-rail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  margin-top: 28px;
}

.bonus-rail__side {
  background: var(--fashion-ink);
  color: rgba(244, 235, 217, 0.85);
  padding: 24px 18px;
}

.bonus-rail__side h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.bonus-rail__side p {
  color: rgba(244, 235, 217, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.bonus-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.bonus-mosaic .tile {
  height: 140px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  max-width: 100%;
}

.cote-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.92rem;
}

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

.cote-table th {
  background: var(--surface);
  font-family: var(--font-serif);
}

.cote-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}

.cote-quote {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 20px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text);
}

.licence-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.licence-band article {
  background: var(--surface);
  padding: 18px;
  border-top: 3px solid var(--primary);
}

.licence-band h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.licence-band p {
  margin: 0;
  font-size: 0.88rem;
}

.licence-visual-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.pay-hero-stat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
}

.pay-hero-stat div {
  background: var(--fashion-ink);
  color: #fff;
  padding: 18px 14px;
  text-align: center;
}

.pay-hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.pay-hero-stat span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.pay-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

.pay-img-rail {
  max-width: 500px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .topic-hero,
  .bonus-rail,
  .cote-split,
  .pay-columns {
    grid-template-columns: 1fr;
  }
  .licence-band,
  .pay-hero-stat {
    grid-template-columns: 1fr 1fr;
  }
  .topic-hero__visual {
    border-left: none;
    border-top: 2px solid var(--accent);
  }
}

@media (max-width: 520px) {
  .licence-band,
  .pay-hero-stat,
  .bonus-mosaic {
    grid-template-columns: 1fr;
  }
  .topic-hero__visual {
    min-height: 160px;
    max-width: 100%;
  }
  .bonus-mosaic .tile {
    height: 110px;
    max-width: 100%;
  }
  .pay-img-rail,
  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }
}
