.intro-section {
  background: var(--beige);
}

.intro-section .text {
  padding: var(--s2);
}

.intro-section h1 {
  color: var(--gold);
  font-size: var(--s3);
  line-height: 1;
  margin-bottom: var(--s1);
}

.intro-section h2 {
  color: var(--blue);
  font-size: var(--s1);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-1);
}

.intro-section p {
  color: var(--blue);
  margin-bottom: var(--s-2);
}

.intro-section .intro-link {
  background: var(--gold);
  padding: var(--s-1) var(--s4);
  display: inline-block;
  color: white;
  border-radius: 3px;
  font-size: var(--s-1);
  transition: background 200ms ease;
  margin-top: var(--s2);
}

.intro-section .intro-link:hover {
  background: var(--gold-light);
}

.intro-section swiper-container {
  display: grid;
  width: 100%;
  aspect-ratio: 8 / 6;
}

.intro-section swiper-slide {
  width: 100%;
  height: 100%;
}

swiper-container::part(button-prev),
swiper-container::part(button-next) {
  width: var(--s0);
}

.intro-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 560px) {
  .intro-section .text {
    padding: var(--s3);
  }
}

@media (min-width: 1200px) {
  .intro-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 60vh;
  }

  .intro-section .text {
    align-self: center;
    justify-self: center;
  }
}

@media (min-width: 1600px) {
  .intro-section .text {
    padding: var(--s6);
    max-width: 58ch;
  }

  .intro-section h1 {
    font-size: var(--s5);
  }
}
