.book-gated:not(.has-premium-access) .premium-book-content {
  display: none !important;
}

.book-gated:not(.has-premium-access) .subscribe-band {
  display: none !important;
}

.book-gate {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 62px);
  background: #102033;
  color: white;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.16);
}

.book-gate-copy {
  max-width: 720px;
}

.book-gate-kicker {
  margin: 0 0 12px;
  color: #f3c94d;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-gate h2 {
  max-width: 760px;
  color: white;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

.book-gate-copy > p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.book-gate-offer {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.book-gate-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.book-gate-price strong {
  color: white;
  font-size: 2rem;
}

.book-gate-price span,
.book-gate-note {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.book-gate-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.book-gate-list li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.book-gate-list li::before {
  margin-right: 8px;
  color: #f3c94d;
  content: "✓";
}

.book-gate .button {
  width: 100%;
  border-color: #f3c94d;
  background: #f3c94d;
  color: #102033;
}

.has-premium-access .book-gate {
  display: none;
}

@media (max-width: 760px) {
  .book-gate {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }
}
