.commercial-special-feature {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0;
  padding: clamp(48px, 10vw, 112px) clamp(20px, 6vw, 120px);
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
  background: var(--Light-Grey, #f3f4f6);
  box-sizing: border-box;
}

.commercial-special-feature__inner {
  display: flex;
  width: 100%;
  max-width: var(--Container-container-large, 1280px);
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 60px);
  margin: 0 auto;
}

.commercial-special-feature__split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  flex-wrap: wrap;
}

.commercial-special-feature__left {
  display: flex;
  width: min(588px, 100%);
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 320px;
}

.commercial-special-feature__tagline {
  color: var(--Accented-Blue, #214197);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.commercial-special-feature__tagline * {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.commercial-special-feature__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.commercial-special-feature__heading {
  margin: 0;
  color: var(--Accented-Blue, #214197);
  font-family: "Teachers", var(--wp--preset--font-family--inter, Inter, sans-serif);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.6px;
}

.commercial-special-feature__heading * {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.commercial-special-feature__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 320px;
  color: var(--Accented-Blue, #214197);
  font-family: Inter, system-ui, sans-serif;
  font-size: var(--Text-Sizes-Text-Medium, 20px);
  font-weight: 400;
  line-height: 150%;
  align-self: stretch;
}

.commercial-special-feature__description {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.commercial-special-feature__description p,
.commercial-special-feature__description ul,
.commercial-special-feature__description ol {
  margin: 0 0 0.75em;
}

.commercial-special-feature__description ul,
.commercial-special-feature__description ol {
  padding-left: 1.5em;
}

.commercial-special-feature__description > :last-child {
  margin-bottom: 0;
}

.commercial-special-feature__media {
  width: 100%;
  height: clamp(360px, 50vw, 692px);
  border-radius: var(--Radius-Large, 8px);
  background: rgba(33, 65, 151, 0.2) center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.commercial-special-feature__media-placeholder {
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
}

.commercial-special-feature__animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.commercial-special-feature.is-visible .commercial-special-feature__animate {
  opacity: 1;
  transform: none;
}

.commercial-special-feature__media.commercial-special-feature__animate {
  transition-delay: 0.1s;
}

.commercial-special-feature__left.commercial-special-feature__animate {
  transition-delay: 0.05s;
}

.commercial-special-feature__right.commercial-special-feature__animate {
  transition-delay: 0.15s;
}

@media (max-width: 899px) {
  .commercial-special-feature__split {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .commercial-special-feature__left {
    align-items: flex-start;
  }

  .commercial-special-feature__heading-group {
    gap: 10px;
  }

  .commercial-special-feature__media {
    order: -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .commercial-special-feature__inner {
    align-items: flex-start;
  }

  .commercial-special-feature__split {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .commercial-special-feature__left {
    align-items: flex-start;
    flex: 1 1 auto;
  }

  .commercial-special-feature__heading-group {
    gap: 8px;
  }

  .commercial-special-feature__right {
    margin-top: 0;
    flex: 1 1 auto;
  }

  .commercial-special-feature__left,
  .commercial-special-feature__right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .commercial-special-feature {
    padding: clamp(48px, 14vw, 72px) clamp(16px, 8vw, 32px);
  }

  .commercial-special-feature__split {
    gap: 12px;
    align-items: flex-start;
  }

  .commercial-special-feature__heading {
    font-size: clamp(32px, 10vw, 44px);
  }

  .commercial-special-feature__heading-group {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .commercial-special-feature__media,
  .commercial-special-feature__animate {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
}
