.section-photographers {
  min-height: auto;
  padding-top: clamp(92px, 18vw, 132px);
  padding-bottom: clamp(90px, 18vw, 132px);
  overflow: hidden;
  color: var(--color-charcoal);
  background:
    radial-gradient(circle at 92% 12%, rgba(120, 132, 92, 0.2), transparent 31%),
    linear-gradient(180deg, #eee8dc 0%, var(--color-cream-soft) 100%);
}

.photographers-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(3px);
}

.photographers-glow--one {
  top: 13%;
  right: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(76, 88, 56, 0.17);
}

.photographers-glow--two {
  bottom: 8%;
  left: -88px;
  width: 180px;
  height: 180px;
  background: rgba(123, 135, 94, 0.08);
}

.photographers-heading {
  position: relative;
  z-index: 2;
}

.photographers-heading__intro {
  max-width: 430px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.68;
}

.photographer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.photographer-card:nth-child(even) {
  margin-top: 42px;
}

.photographer-card__portrait {
  position: relative;
  height: clamp(300px, 66vw, 440px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 90px 90px 24px 24px;
  background: var(--color-olive-deep);
  box-shadow: 0 24px 48px rgba(45, 49, 36, 0.16);
}

.photographer-card__portrait img,
.photographer-card__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photographer-card__portrait img {
  object-fit: cover;
  filter: saturate(0.75) contrast(1.03) brightness(0.92);
  transform: scale(1.015);
}

.photographer-card__veil {
  background:
    linear-gradient(180deg, transparent 36%, rgba(21, 25, 17, 0.82) 100%),
    linear-gradient(120deg, rgba(91, 104, 68, 0.16), transparent 54%);
}

.photographer-card figcaption {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 18px;
  left: 15px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 10px;
  color: #fff;
}

.photographer-card__number {
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.photographer-card h3 {
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 5.2vw, 2rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.photographer-card--long-name h3 {
  font-size: clamp(0.82rem, 3.7vw, 1.15rem);
  letter-spacing: -0.045em;
}

.photographer-card p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.photographers-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 88px;
  color: var(--color-olive);
  font-size: 0.47rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photographers-footer__rule {
  height: 1px;
  background: var(--color-line);
}

@media (max-width: 374px) {
  .photographer-grid {
    gap: 10px;
  }

  .photographer-card__portrait {
    height: 280px;
    border-radius: 72px 72px 20px 20px;
  }

  .photographer-card figcaption {
    right: 12px;
    bottom: 15px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (min-width: 560px) {
  .photographer-grid {
    gap: 22px;
    margin-top: 58px;
  }

  .photographer-card:nth-child(even) {
    margin-top: 54px;
  }

  .photographer-card figcaption {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .photographers-footer {
    margin-top: 112px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .photographer-card__portrait img {
    transition: transform var(--transition-slow), filter var(--transition-medium);
  }

  .photographer-card:hover .photographer-card__portrait img {
    filter: saturate(0.88) contrast(1.02) brightness(0.96);
    transform: scale(1.055);
  }
}
