.steve-page {
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.steve-hero {
  display: grid;
  grid-template-columns: minmax(300px, 416px) minmax(0, 1fr);
  gap: clamp(2.2rem, 4vw, 4.5rem);
  align-items: start;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.steve-portrait-wrap {
  position: relative;
  isolation: isolate;
  width: min(100%, 390px);
  padding: 0.7rem;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgb(255 157 202 / 24%);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 2%)),
    rgb(20 8 15 / 42%);
  box-shadow: 0 2.1rem 5rem rgb(0 0 0 / 42%);
}

.steve-portrait-glow {
  position: absolute;
  z-index: -1;
  inset: -12% -16% 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 18%, rgb(210 155 72 / 34%), transparent 32%),
    radial-gradient(circle at 22% 60%, rgb(255 61 155 / 19%), transparent 40%);
  filter: blur(34px);
}

.steve-portrait {
  width: 100%;
  height: clamp(338px, 44vw, 481px);
  object-fit: cover;
  object-position: 50% 20%;
  border: 1px solid rgb(255 235 214 / 18%);
  border-radius: 0.55rem;
  box-shadow: 0 1.4rem 3rem rgb(0 0 0 / 36%);
}

.portrait-caption {
  margin: 0.65rem 0 0;
  padding: 0.72rem 0.65rem 0.64rem;
  border-radius: 999px;
  background: rgb(65 11 34 / 78%);
  box-shadow: inset 0 0 0 1px rgb(255 157 202 / 28%);
  color: #d8bdca;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.steve-story h1 {
  max-width: none;
}

.steve-intro {
  max-width: 34rem;
  margin: 0.8rem 0 2.2rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
}

.steve-copy {
  max-width: 43rem;
  columns: 2;
  column-gap: clamp(1.8rem, 4vw, 3rem);
}

.steve-copy p {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  color: #ddc7d1;
  font-size: 1rem;
  line-height: 1.76;
}

.steve-copy p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--rose-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.94rem;
  line-height: 0.76;
  text-shadow: 0 0 1.5rem rgb(255 61 155 / 28%);
}

.steve-home-link {
  width: fit-content;
  margin-top: 0.6rem;
}

.steve-signoff {
  width: min(100%, 12rem);
  margin: 0.45rem 0 0.15rem;
}

.steve-signoff img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 1.1rem rgb(255 232 196 / 14%));
}

@media (max-width: 850px) {
  .steve-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .steve-portrait-wrap {
    width: min(82vw, 390px);
    margin-inline: auto;
  }
}

@media (max-width: 650px) {
  .steve-hero {
    gap: 2.7rem;
    padding-top: 2.5rem;
  }

  .steve-portrait {
    height: min(91vw, 416px);
  }

  .steve-copy {
    columns: 1;
  }

  .steve-copy p {
    font-size: 0.98rem;
  }
}
