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

.promo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 28px;
  color: #8f8d98;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.promo-breadcrumbs a {
  color: #191720;
  text-decoration: none;
}

.promo-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
}

.promo-detail__media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-soft);
}

.promo-detail__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.promo-detail__content {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding-top: 0;
}

.promo-detail__content h1 {
  margin: 0;
  color: #111019;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.04;
}

.promo-term {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #17151f;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
}

.promo-term svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.promo-copy {
  display: grid;
  gap: 12px;
  max-width: 650px;
  color: #24212b;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.42;
}

.promo-copy p {
  margin: 0;
}

.promo-copy strong {
  color: #111019;
  font-weight: 900;
}

.promo-catalog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: #111019;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.promo-catalog-link:hover {
  background: var(--accent);
  color: #111019;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .promo-detail {
    grid-template-columns: 1fr;
  }

  .promo-detail__content {
    padding-top: 0;
  }
}

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

  .promo-detail {
    gap: 26px;
  }

  .promo-term {
    padding: 11px 16px;
    font-size: 14px;
  }

  .promo-catalog-link {
    width: 100%;
  }
}
