.gate-ledger-board {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1px;
  overflow: hidden;
  padding: .9rem;
  border: 1px solid rgb(255 157 202 / 22%);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 16% 10%,rgb(255 157 202 / 15%),transparent 16rem),
    linear-gradient(135deg,rgb(55 15 63 / 82%),rgb(12 14 9 / 92%));
  box-shadow: 0 2rem 4rem rgb(0 0 0 / 28%);
}

.gate-ledger-board article {
  position: relative;
  min-width: 0;
  padding: clamp(1.25rem,3vw,2rem);
  border: 1px solid rgb(210 155 72 / 20%);
  background: linear-gradient(135deg,rgb(8 9 6 / 84%),rgb(35 10 42 / 58%));
}

.gate-ledger-board article:nth-child(1) { border-radius: 1rem 0 0 0; }
.gate-ledger-board article:nth-child(2) { border-radius: 0 1rem 0 0; }
.gate-ledger-board article:nth-child(3) { border-radius: 0 0 0 1rem; }
.gate-ledger-board article:nth-child(4) { border-radius: 0 0 1rem 0; }

.gate-ledger-board span {
  color: var(--rose-light);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gate-ledger-board strong {
  display: block;
  margin-top: .55rem;
  color: var(--cream);
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(1.3rem,2.4vw,2rem);
  font-weight: 400;
  line-height: 1.18;
}

.gate-ledger-board p {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .gate-ledger-board {
    grid-template-columns: 1fr;
    padding: .85rem;
    border-radius: 1.2rem;
  }

  .gate-ledger-board article,
  .gate-ledger-board article:nth-child(n) {
    border-radius: .9rem;
  }
}
