/* Angled gradients over each column's image — Tailwind's bg-gradient-*
   utilities only support 8 fixed directions, not an arbitrary angle, so
   this is a CSS-only exception per the root CLAUDE.md. The two sides use
   slightly different angles/stops per the Figma export. */
.hero-cta__overlay--left {
    background: linear-gradient(196.29deg, rgba(3, 43, 54, 0) 60.3%, rgba(3, 43, 54, 0.8) 99.01%);
}

.hero-cta__overlay--right {
    background: linear-gradient(192.95deg, rgba(3, 43, 54, 0) 56.87%, rgba(3, 43, 54, 0.8) 98.52%);
}
