.work-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  margin: -12px 0 76px;
  background: var(--paper-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-profile-media {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--paper-deep);
  border-right: 1px solid var(--line);
}

.work-profile-image-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--paper-deep);
}

.work-profile-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.88) contrast(0.98);
}

.work-profile-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--mineral);
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: -0.06em;
}

.work-profile.image-unavailable .work-profile-image {
  display: none;
}

.work-profile-media figcaption {
  padding: 14px 18px 15px;
  border-top: 1px solid var(--line);
  color: var(--mineral);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.work-profile-copy {
  min-width: 0;
  padding: clamp(42px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-profile-kicker {
  margin: 0 0 32px;
  color: var(--mineral);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.work-profile-copy h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.work-profile-body {
  max-width: 660px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.work-profile-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.work-profile-body p + p {
  margin-top: 16px;
}

.work-profile-experiments {
  max-width: 660px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.work-profile-experiments p {
  margin: 0;
  color: var(--mineral);
  font-size: 0.78rem;
  line-height: 1.5;
}

.work-profile-experiments a {
  justify-self: start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

.work-profile-experiments a:hover,
.work-profile-experiments a:focus-visible {
  color: var(--mineral-deep);
}

@media (max-width: 900px) {
  .work-profile {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    margin-bottom: 58px;
  }

  .work-profile-image-wrap {
    min-height: 380px;
  }

  .work-profile-copy {
    padding: 38px;
  }

  .work-profile-experiments a {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .work-profile {
    grid-template-columns: 1fr;
  }

  .work-profile-media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .work-profile-image-wrap {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .work-profile-copy {
    padding: 38px 24px 44px;
  }

  .work-profile-copy h3 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
}