#top.hero {
    background-image: linear-gradient(180deg, rgba(15, 28, 46, 0.31), rgba(15, 28, 46, 0.51)),
        url("../assets/common/abstract-detoxhelden.webp");
    background-position: 40%;
    min-height: var(--hero-height-without-cta);
}
#top.hero .hero-grid {
    min-height: calc(var(--hero-height-without-cta) - 80px);
}
.not-found-lead {
    margin: 0 0 var(--space-3);
    color: var(--color-muted);
}
.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}
.not-found-actions .btn {
    width: auto;
}
@media (max-width: 720px) {
    #top.hero {
        background-position: 35% 40%;
        min-height: var(--hero-height-without-cta-mobile);
    }

    #top.hero .hero-grid {
        min-height: calc(var(--hero-height-without-cta-mobile) - 80px);
    }

}