.home-n .hero__intro {
  grid-template-columns: minmax(0, 560px);
  align-items: start;
  margin-left: 0;
}

.home-n .hero__actions {
  margin-top: 28px;
}

.reviews--swiper {
  padding: 132px 0 118px;
  background: var(--navy-950);
}

.reviews--swiper::before {
  top: -260px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-color: rgba(225, 161, 125, 0.14);
}

.reviews__heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

.reviews--swiper .reviews__copy h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.reviews--swiper .reviews__copy h2 em {
  color: var(--copper-light);
}

.reviews__controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 17px;
  padding-bottom: 8px;
}

.reviews__arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.reviews__arrow:hover,
.reviews__arrow:focus-visible {
  border-color: var(--copper);
  background: var(--copper);
}

.reviews__counter {
  min-width: 62px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.reviews__counter b {
  color: var(--copper-light);
  font-weight: 700;
}

.reviews-swiper {
  width: 100%;
  margin-top: 70px;
  padding: 0 48px 50px;
  overflow: hidden;
}

.reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.review-card {
  display: flex;
  width: 86vw;
  height: auto;
  min-height: 390px;
  flex-direction: column;
  padding: 38px 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(13, 37, 59, 0.58);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

@media (min-width: 680px) {
  .review-card {
    width: 62vw;
  }
}

@media (min-width: 1024px) {
  .review-card {
    width: 40vw;
  }
}

@media (min-width: 1480px) {
  .review-card {
    width: 30.5vw;
  }
}

.review-card:hover {
  border-color: rgba(225, 161, 125, 0.58);
  background: rgba(13, 37, 59, 0.88);
  transform: translateY(-6px);
}

.review-card__top {
  display: flex;
  align-items: center;
  min-height: 50px;
  gap: 15px;
}

.review-card__avatar {
  display: block;
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  align-self: center;
  box-sizing: border-box;
  border: 1px solid rgba(225, 161, 125, 0.5);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
  vertical-align: middle;
}

.review-card h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 600;
}

.review-card__top div > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.67rem;
}

.review-card__stars {
  margin: 34px 0 26px;
  color: #f5b941;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 1.45vw, 1.6rem);
  line-height: 1.46;
}

.review-card__source {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-color: rgba(225, 161, 125, 0.34);
  text-underline-offset: 4px;
  text-transform: lowercase;
  transition: color 180ms ease;
}

.review-card__source:hover,
.review-card__source:focus-visible {
  color: var(--copper-light);
}

.reviews__progress {
  position: absolute;
  right: 48px;
  bottom: 0;
  left: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.reviews__progress .swiper-scrollbar-drag {
  background: var(--copper-light);
}

@media (max-width: 860px) {
  .home-n .hero__intro {
    display: block;
  }

  .reviews__heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 0;
  }

  .reviews-swiper {
    margin-top: 54px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .review-card {
    min-height: 360px;
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .reviews--swiper {
    padding: 100px 0 90px;
  }

  .reviews__controls {
    width: 100%;
    justify-content: space-between;
  }

  .reviews-swiper {
    margin-top: 42px;
  }
}
