/* CSS Document */
.page-intro {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 40px;
}

.page-intro-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.page-intro-head h1 {
  margin: 0;
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2f2f2b;
  padding-bottom: 14px;
  border-bottom: 2px solid #838e54;
}

.page-intro-head p {
  margin: 18px auto 0;
  max-width: 720px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: #6f6f68;
}

.page-intro-image {
  margin-top: 10px;
}

.page-intro-image img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.page-intro-caption {
  display: block;
  margin-top: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #6c6c66;
}

@media (max-width: 860px) {
  .page-intro {
    padding: 56px 0 34px;
  }

  .page-intro-head {
    margin-bottom: 26px;
  }

  .page-intro-head h1 {
    padding-bottom: 12px;
  }

  .page-intro-head p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .page-intro-image img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .page-intro {
    width: min(1200px, calc(100% - 28px));
    padding: 44px 0 28px;
  }

  .page-intro-head h1 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .page-intro-head p {
    font-size: 0.94rem;
  }

  .page-intro-image img {
    height: 260px;
  }

  .page-intro-caption {
    font-size: 0.82rem;
    line-height: 1.55;
  }
}

