.lp_fv_select_section {
    padding: var(--sec-between) 20px;
}

.lp_fv_select_inner {
    max-width: 1280px;
    margin: 0 auto;
}

.lp_fv_select_title {
    margin: 0;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
}

.lp_fv_select_arrow {
    width: 120px;
    height: 24px;
    margin: 14px auto 22px;
}

.lp_fv_select_buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp_fv_select_button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 16px 20px;
    text-decoration: none;
    font-size: var(--big-txt);
    font-weight: 700;
    line-height: 1.4;
    transition: opacity 0.2s ease;
}

.lp_fv_select_button:hover {
    opacity: 0.9;
}

.lp_fv_select_buttonPrimary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.lp_fv_select_buttonSecondary {
    background: #fff;
    color: var(--brand);
    border: 1px solid var(--brand);
}



@media (min-width: 768px) {
    .lp_fv_select_section {
        /* padding: 48px 20px 28px; */
    }

    .lp_fv_select_title {
        font-size: 30px;
    }

    .lp_fv_select_arrow {
        width: 140px;
        height: 28px;
        margin: 16px auto 40px;
    }

    .lp_fv_select_buttons {
        flex-direction: row;
        gap: 22px;
    }

    .lp_fv_select_button {
        flex: 1;
        min-height: 84px;
        font-size: var(--big-txt);
    }
}