.booking-centres {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: #fff;
  color: var(--ink);
}

.booking-centres > p {
  margin: 0 0 6px;
  font: 600 17px/1.4 Manrope, sans-serif;
}

.booking-centre {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 22px;
  min-height: 116px;
  padding: 18px 20px;
  border: 1px solid #ddd9d1;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.booking-centre:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #fbfaf7;
}

.booking-centre span,
.booking-centre small,
.booking-centre em {
  grid-column: 1;
}

.booking-centre span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.booking-centre strong {
  grid-column: 1;
  font: 500 25px/1.15 Manrope, sans-serif;
}

.booking-centre small {
  color: #7b7f86;
  font-size: 12px;
}

.booking-centre b {
  grid-column: 2;
  grid-row: 1 / span 3;
  color: #25292b;
  font-size: 12px;
  white-space: nowrap;
}

.booking-centre em {
  margin-top: 3px;
  color: #8b8e93;
  font-size: 10px;
  font-style: normal;
}

.booking-centres .booking-reassurance {
  margin-top: 4px;
  color: #8b8e93;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 600px) {
  .booking-centres {
    padding: 20px;
  }

  .booking-centre {
    grid-template-columns: 1fr;
  }

  .booking-centre b {
    grid-column: 1;
    grid-row: auto;
    margin-top: 10px;
  }
}
