/* Page: New Awards */

.new-awards-page {
  overflow: hidden;
  background: #ffffff;
}

.new-awards-hero {
  padding: 145px 20px 82px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.new-awards-hero__container {
  max-width: 760px;
}

.new-awards-hero__headline {
  color: #111827;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1.2;
  margin: 0 0 22px;
  text-transform: none;
}

.new-awards-hero__subheadline {
  color: #697089;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 640px;
}

.new-awards-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.34) 0, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #be88eb 0%, rgba(118, 113, 206, 0) 52.07%),
    url('../img/new/bg-why-choose-us.png'),
    linear-gradient(180deg, #be88eb 0%, #7671ce 100%);
  background-size: cover;
  min-height: 500px;
  padding: 130px 20px 110px;
  position: relative;
}

.new-awards-section__container {
  position: relative;
  z-index: 2;
}

.new-awards-section__curve {
  left: 50%;
  min-width: 1920px;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.new-awards-section__curve--top {
  top: 0;
  transform: translate(-50%, -315px);
}

.new-awards-section__curve--bottom {
  bottom: 0;
  transform: translate(-50%, 195px);
}

.new-awards-grid {
  background: linear-gradient(180deg, #f9f7f7 1.46%, #f9f9f9 54.12%, #e6e8f0 100%);
  border-radius: 40px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 960px;
  padding: 8px;
}

.new-awards-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(105, 112, 137, 0.12);
  border-radius: 26px;
  box-shadow: 0 12px 32px rgba(34, 25, 77, 0.06);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 190px;
  padding: 28px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.new-awards-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  grid-template-columns: 260px minmax(0, 1fr);
}

.new-awards-card:hover,
.new-awards-card:focus-within {
  box-shadow: 0 24px 55px rgba(34, 25, 77, 0.15);
  transform: translateY(-4px);
}

.new-awards-card__media {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 110px;
}

.new-awards-card__media img {
  display: block;
  height: auto;
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
}

.new-awards-card__badge {
  align-items: center;
  background: linear-gradient(135deg, #f5edff 0%, #e4e8ff 100%);
  border: 2px solid rgba(118, 113, 206, 0.26);
  border-radius: 24px;
  color: #5b4fc7;
  display: flex;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
  height: 112px;
  justify-content: center;
  letter-spacing: -0.04em;
  width: 112px;
}

.new-awards-card__product {
  color: #7671ce;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.new-awards-card__content h3 {
  color: #111827;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
  text-transform: none;
}

.new-awards-card__content h3 a {
  color: inherit;
  text-decoration: none;
}

.new-awards-card__content h3 a:hover,
.new-awards-card__content h3 a:focus {
  color: #5b4fc7;
  text-decoration: underline;
}

.new-awards-card__content p:not(.new-awards-card__product) {
  color: #697089;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1100px) {
  .new-awards-card {
    gap: 22px;
    grid-template-columns: 130px minmax(0, 1fr);
    padding: 24px;
  }
}

@media (max-width: 990px) {
  .new-awards-hero {
    padding-top: 126px;
  }

  .new-awards-section {
    padding-top: 110px;
  }

  .new-awards-section__curve {
    min-width: 100%;
  }

  .new-awards-grid {
    grid-template-columns: 1fr;
  }

  .new-awards-card {
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 0;
  }

  .new-awards-card:last-child:nth-child(odd) {
    grid-column: auto;
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .new-awards-hero {
    padding: 108px 20px 62px;
  }

  .new-awards-hero__headline {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .new-awards-hero__subheadline {
    font-size: 16px;
    line-height: 1.5;
  }

  .new-awards-section {
    padding: 82px 14px 86px;
  }

  .new-awards-grid {
    border-radius: 28px;
    padding: 8px;
  }

  .new-awards-card {
    border-radius: 24px;
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 26px 20px;
    text-align: center;
  }

  .new-awards-card__media {
    min-height: 105px;
  }

  .new-awards-card__media img {
    max-height: 105px;
  }

  .new-awards-card__content h3 {
    font-size: 18px;
  }

  .new-awards-card__content p:not(.new-awards-card__product) {
    font-size: 15px;
  }

  .new-awards-card__product {
    font-size: 11px;
  }
}
