/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.promo-news-detail {
  font-family: "Geologica", sans-serif;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
}

/* Баннер */
.promo-banner-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 468px;
  border-radius: 16px;
  padding: 94px 125px;
}

.promo-banner-about {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 14px 12px 21px 24px;
  width: 619px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-banner-about-header {
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  color: #fff;
  height: auto;
}

.promo-banner-about-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
}

.promo-banner-btn {
  display: flex;
  width: fit-content;
  padding: 12px 20px;
  border-radius: 12px;
  background-color: #ffad0d;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  cursor: pointer;
  margin-top: 58px;
  border: none;
  text-decoration: none;
}

.promo-banner-btn-outer {
  display: none;
}

/* Блок преимуществ */
.promo-values-container {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}

.promo-values-header {
  color: #22252a;
  font-size: 32px;
  font-weight: 500;
}

.promo-values-content {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}

.promo-values-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 30%;
  min-width: 200px;
}

.promo-values-block--1 { background-color: #bfd7ff; }
.promo-values-block--2 { background-color: #ffe8fe; }
.promo-values-block--3 { background-color: #ffe8fe; }
.promo-values-block--4 { background-color: #e2d7ff; }
.promo-values-block--5 { background-color: #aff4d9; }

.promo-values-block-header {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.promo-values-block-header p {
  color: #22252a;
  font-size: 20px;
  font-weight: 500;
}

.promo-values-block-content {
  margin-top: 12px;
  color: #22252a;
  font-size: 20px;
  font-weight: 300;
}

/* Описание акции */
.promo-description-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 80px;
}

.promo-description-header {
  color: #1c1e21;
  font-size: 32px;
  font-weight: 600;
}

.promo-description-text {
  color: #1c1e21;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .promo-news-detail {
    max-width: 1152px;
    padding: 0 20px;
  }
  .promo-banner-container {
    padding: 94px 125px;
    height: 468px;
  }
}

@media (max-width: 768px) {
  .promo-news-detail {
    padding: 0 16px;
  }
  .promo-banner-container {
    padding: 73px 26px 61px;
    height: 390px;
  }
  .promo-banner-about {
    width: 503px;
  }
  .promo-banner-about-header {
    font-size: 32px;
  }
  .promo-banner-about-text {
    font-size: 18px;
  }
  .promo-banner-btn {
    margin-top: 33px;
  }
  .promo-values-container {
    margin-top: 44px;
  }
  .promo-values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .promo-news-detail {
    padding: 0 12px;
  }
  .promo-banner-container {
    padding: 40px 16px 18px;
    height: 206px;
  }
  .promo-banner-about {
    width: 100%;
    max-width: 296px;
    padding: 24px;
  }
  .promo-banner-about-header {
    font-size: 20px;
  }
  .promo-banner-about-text {
    font-size: 15px;
  }
  .promo-banner-btn {
    display: none;
  }
  .promo-banner-btn-outer {
    display: flex;
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    background-color: #ffad0d;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    margin-top: 75px;
    border: none;
    text-decoration: none;
  }
  .promo-description-container {
    margin-top: 100px;
  }
  .promo-description-header {
    font-size: 24px;
  }
  .promo-values-container {
    margin-top: 16px;
  }
  .promo-values-header {
    font-size: 24px;
  }
  .promo-values-content {
    grid-template-columns: 1fr;
  }
  .promo-values-block-header p {
    font-size: 18px;
  }
  .promo-values-block-content {
    font-size: 16px;
  }
}