/* ============================================================
   THE COASTAL EDIT — homepage Substack teaser
   Full-bleed photo section between Featured Listings and the closing
   Contact CTA, giving the newsletter real visual weight on the homepage
   instead of just a small footer icon.
   ============================================================ */

.journal-teaser {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 46vw, 620px);
  overflow: hidden;
}

.journal-teaser__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.journal-teaser__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.30) 55%,
    rgba(0, 0, 0, 0.40) 100%
  );
}

.journal-teaser__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-block: var(--space-16);
}

.journal-teaser__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-on-dark);
  margin-bottom: var(--space-3);
}

.journal-teaser__heading {
  font-family: var(--font-serif);
  font-weight: var(--weight-light);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  color: #fff;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.journal-teaser__text {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: var(--space-8);
}

@media (max-width: 640px) {
  .journal-teaser__heading {
    font-size: var(--text-4xl);
  }
}
