.features-hero {
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

.features-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-12);
  align-items: center;
}

.features-hero__lead {
  max-width: 34rem;
  color: var(--color-text-muted);
}

.features-hero__cta-group {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.features-hero__media {
  max-width: 30rem;
  justify-self: flex-end;
}

.features-hero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.features-section {
  background-color: var(--color-bg-elevated);
}

.features-section__header {
  margin-bottom: var(--space-8);
}

.features-grid {
  margin-top: var(--space-4);
}

.feature-card__figure {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.features-cta {
  padding-top: var(--space-12);
  padding-bottom: var(--space-20);
}

.features-cta__inner {
  background: linear-gradient(135deg, rgba(215, 38, 56, 0.35), rgba(0, 0, 0, 0.9));
  box-shadow: var(--shadow-strong), var(--shadow-glow-red);
}

.features-cta__content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
  justify-content: space-between;
}

.features-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 960px) {
  .features-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .features-hero__media {
    justify-self: stretch;
    max-width: none;
  }

  .features-hero {
    padding-top: var(--space-16);
  }
}

@media (max-width: 720px) {
  .features-hero__cta-group,
  .features-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .features-section {
    padding-block: var(--space-12);
  }

  .features-cta {
    padding-block: var(--space-12);
  }
}
