.frontpage-start-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(1vh * 65);

    padding-inline: 3rem;
    overflow: hidden;
    position: relative;
}

.frontpage-start-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none; 
}

.start-header__content {
    width: 100%;
    max-width: calc(var(--inner-max-width) - 12rem);
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem; 
}

.start-header__content h1 {
    font-size: 5rem;
    line-height: 1;
    color: #fff;
}

.start-header__content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: oklch(from var(--accent) calc(l * 2) c h);
}

.start-header__content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: #fff;
}


@media (max-width: 992px) {
    .frontpage-start-section {
        padding-inline: 1rem;
    }

    .start-header__content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .start-header__content h2 {
        font-size: 1.3rem;
    }

    .start-header__content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .frontpage-start-section {
        height: calc(1vh * 50);
        min-height: 300px;
    }

    .start-header__content h1 {
        font-size: 2.5rem;
    }

    .start-header__content h2 {
        font-size: 1.1rem;
    }

    .start-header__content p {
        font-size: 1rem;
    }
}