/* Marketing banner — typography + CTA (layout in edu_overlay_banner.css) */

.edu-mkt-banner__eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.edu-mkt-banner__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 900;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.edu-mkt-banner__lead {
  margin: 0 0 28px;
  max-width: 54ch;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.edu-mkt-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.42);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.edu-mkt-banner__cta:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.5);
}

@media (max-width: 900px) {
  .edu-mkt-banner__eyebrow,
  .edu-mkt-banner__title,
  .edu-mkt-banner__lead {
    text-align: center;
    margin-inline: auto;
    max-width: none;
  }

  .edu-mkt-banner__cta {
    margin-inline: auto;
  }
}
