/* Full-width photographic treatment for the Carry Drone landing-page hero. */
.drone-hero {
    min-height: clamp(36rem, 72vh, 48rem);
    display: flex;
    align-items: center;
    background-color: #052638;
    background-image:
        linear-gradient(90deg, rgba(3, 25, 38, .98) 0%, rgba(3, 25, 38, .92) 38%, rgba(3, 25, 38, .58) 58%, rgba(3, 25, 38, .16) 78%, rgba(3, 25, 38, .06) 100%),
        url('/img/drone/hero/hero_1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.drone-hero > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
    .drone-hero {
        min-height: 40rem;
        background-image:
            linear-gradient(180deg, rgba(3, 25, 38, .94) 0%, rgba(3, 25, 38, .88) 58%, rgba(3, 25, 38, .72) 100%),
            url('/img/drone/hero/hero_1.png');
        background-position: 62% center;
    }
}
