/* ============================================================
   SESSIONS - Subscription teaser strip
   Slim navy band, scoped to .ses-subteaser.
   ============================================================ */

.ses-subteaser {
  background: var(--white);
  /* No top padding: the pill sits a full section-gap (pace's 72px bottom) below
     "your pace", and the matching 72px bottom keeps the white block (pace + teaser)
     symmetric top-to-bottom and the pill centered within it. */
  padding-top: 0;
  padding-bottom: 72px;
}

/* Contained navy pill (not a full-bleed band) */
.ses-subteaser__pill {
  background: var(--blue);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ses-subteaser__eyebrow {
  font-family: Inter, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin: 0 0 6px;
  -webkit-font-smoothing: antialiased;
}

.ses-subteaser__line {
  font-family: Inter, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.ses-subteaser__link {
  flex-shrink: 0;
  font-family: Inter, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid var(--purple-light);
  padding-bottom: 3px;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

.ses-subteaser__link:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE — stack on mobile
   ============================================================ */
@media (max-width: 768px) {
  .ses-subteaser {
    padding-bottom: 56px; /* matches .ses-pace bottom padding at this breakpoint */
  }
  .ses-subteaser__pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
}
