/* Promotions page */
.promotions-page {
  padding: 12px 12px 100px;
  color: #fff;
  box-sizing: border-box;
}
.promotions-head {
  margin: 8px 0 16px;
}
.promotions-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.promotions-sub {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.promotions-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.promo-tab {
  border: 0;
  border-radius: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  color: #c9d2e0;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.promo-tab.is-active {
  background: linear-gradient(90deg, #1e6bff, #3aa0ff);
  color: #fff;
}
.promotions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.promo-card {
  border-radius: 12px;
  overflow: hidden;
  background: #0b1a33;
}
.promo-card-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.promo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Promo info modal */
#promo-sheet.promo-info-sheet {
  max-height: min(50vh, 320px);
}
.promo-info-content {
  padding: 8px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.promo-info-text {
  margin: 0;
  color: #e8eef8;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}
