@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Lato:ital,wght@0,400;0,700;1,400&display=swap");

.page-spotlight {
  margin: 0;
  font-family: "Lato", system-ui, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
}

.page-spotlight .site-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 3rem;
}

.page-spotlight .feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  min-height: 420px;
}
@media (max-width: 800px) {
  .page-spotlight .feature {
    grid-template-columns: 1fr;
  }
}

.page-spotlight .feature-visual {
  position: relative;
}
.page-spotlight .feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.page-spotlight .feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(250, 250, 250, 0.95) 100%);
  pointer-events: none;
}
@media (max-width: 800px) {
  .page-spotlight .feature-visual::after {
    background: linear-gradient(180deg, transparent 50%, #fafafa 100%);
  }
}

.page-spotlight .feature-copy {
  padding: 2.5rem 1.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 800px) {
  .page-spotlight .feature-copy {
    padding: 1.5rem 1.25rem 2rem;
  }
}
.page-spotlight .kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b91c1c;
  margin: 0 0 0.75rem;
}
.page-spotlight h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
}
.page-spotlight .lead {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  color: #404040;
}
.page-spotlight .pull {
  margin: 0;
  padding: 1rem 0 1rem 1.1rem;
  border-left: 4px solid #111;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #262626;
}

.page-spotlight .below {
  max-width: 38rem;
  margin: 2.5rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}
