.hero.section-wrapper {
    min-height: 50svh;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .hero.section-wrapper {
        min-height: 420px;
    }
}

.hero .gradient-overlay {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 22%, rgba(0, 0, 0, 0.51) 44%, rgba(0, 0, 0, 0.11) 75%, rgba(0, 0, 0, 0) 100%);
}

.fp-hero-wrapper {
    padding: 0 var(--spacing-small);
}

.fp-hero-wrapper .hero {
    border-radius: var(--border-radius-default);
    overflow: hidden;
}

.hero .section-content {
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

.hero .column-1 {
    max-width: 42rem;
    margin-bottom: var(--spacing-medium);
}

