.intro-hero {
  position: relative;
  padding: clamp(48px, 10vw, 112px) clamp(20px, 6vw, 120px);
  background: var(--Light-Grey, #f3f4f6);
  color: #fff;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}

.intro-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding-right: 300px;
  opacity: 0;
  transform: translateY(16px);
  animation: intro-hero-fade 0.7s ease forwards;
}

.intro-hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  width: 100%;
}

.intro-hero__stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  animation: intro-hero-fade 0.6s ease 0.15s forwards;
}

.intro-hero__tagline-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.intro-hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}

.intro-hero__heading-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-hero__headline {
  margin: 0;
  font-family: "Teachers", var(--wp--preset--font-family--inter, Inter, sans-serif);
  font-size: clamp(36px, 6vw, 60px);
  line-height: 110%;
  color: #ffffff;
  letter-spacing: -0.6px;
}

.intro-hero__subheading {
  margin: 0;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 150%;
  color: #ffffff;
}

.intro-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  animation: intro-hero-fade 0.6s ease 0.25s forwards;
}

.intro-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #22c55e;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.intro-hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.32);
}

.intro-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(57, 89, 53, 0.3);
  background: transparent;
  color: #395935;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.intro-hero__secondary:hover {
  border-color: #395935;
  transform: translateY(-1px);
}

.intro-hero__tertiary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.intro-hero__tertiary:hover {
  text-decoration: underline;
}

.intro-hero__tertiary-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* No media element for single blog hero; background image only */

@keyframes intro-hero-fade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-hero__inner,
  .intro-hero__stack,
  .intro-hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.single-blog-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.single-blog-hero__crumb {
  color: #ffffff;
  text-decoration: none;
}

.single-blog-hero__crumb:hover {
  text-decoration: underline;
}

.single-blog-hero__crumb-arrow {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #ffffff;
}

@media (max-width: 900px) {
  .intro-hero__inner {
    padding-right: 0;
    text-align: left;
    align-items: flex-start;
  }

  .intro-hero__copy {
    align-items: flex-start;
  }

  .intro-hero__actions {
    justify-content: flex-start;
  }

  .intro-hero__tagline-row {
    justify-content: flex-start;
  }
}
