.promo-page {
  margin: 0 var(--page-margin);
  padding: 54px var(--page-gutter);
  background: var(--surface);
}

.promo-page h1 {
  margin: 0 0 28px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.promo-card {
  display: grid;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.promo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--surface-soft);
}

.promo-card span {
  color: #111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.promo-card small {
  margin-top: -8px;
  color: #737373;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 700px) {
  .promo-page {
    margin: 0;
    padding: 36px 22px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }
}
