.page-header {
  padding: 4.7rem var(--page-pad) 1.2rem;
  text-align: center;
}

.page-title {
  font-family: 'Baskervville', Georgia, serif;
  font-size: clamp(2.4rem, 5.3vw, 3.9rem);
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--accent);
  line-height: 1.08;
  margin: 0 0 2.1rem;
}

.intro-text {
  font-size: 1.18rem;
  line-height: 1.95;
  font-weight: 500;
  color: rgba(21, 19, 18, 0.78);
  max-width: 660px;
  margin: 0 auto;
  text-align: left;
}

.intro-text p {
  margin: 0;
}

.workshop-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem var(--page-pad) 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.workshop-item {
  display: grid;
  grid-template-columns: minmax(280px, 420px);
  gap: 1.2rem;
  align-items: start;
  justify-items: center;
  justify-content: center;
}

.workshop-caption {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.6;
  text-align: center;
}

.workshop-caption a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.workshop-caption a:hover {
  color: var(--accent);
}

.workshop-image-link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--stone);
}

.workshop-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}

.workshop-image-link:hover img {
  transform: scale(1.03);
}

.workshop-image-static {
  cursor: default;
}

.workshop-image-static:hover img {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .workshop-image-link img,
  .workshop-caption a {
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .page-header {
    padding: 4rem 2rem 1rem;
  }

  .page-title {
    font-size: clamp(2rem, 9vw, 3.1rem);
    letter-spacing: 0.2em;
    margin-bottom: 1.7rem;
  }

  .intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
  }

  .workshop-list {
    padding: 1.8rem 2rem 4rem;
  }

  .workshop-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 3.1rem 1.4rem 0.9rem;
  }

  .page-title {
    letter-spacing: 0.16em;
  }

  .intro-text {
    font-size: 1rem;
    line-height: 1.9;
  }

  .workshop-list {
    padding: 1.6rem 1.4rem 3.5rem;
  }
}
