/* Block Line Button Text — Figma 37:1791 (text+btn) / 37:1806 ≈ BAS 3040:2451 (dual btns) */

.block-line-button-text.lbt-block {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 30px 0;
    background: linear-gradient(90deg, #dadada 0%, #d9d9d9 100%);
    color: #373737;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.block-line-button-text.lbt-block *,
.block-line-button-text.lbt-block *::before,
.block-line-button-text.lbt-block *::after {
    box-sizing: border-box;
}

.lbt-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lbt-block--dual_buttons .lbt-inner {
    max-width: none;
    padding: 0 20px;
}

.lbt-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 53px;
}

.lbt-bar--text {
    justify-content: center;
}

.lbt-bar--dual {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.lbt-text {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    line-height: 1.33;
    color: #373737;
}

.lbt-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 53px;
    padding: 16px 32px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lbt-btn--primary {
    background: #d12023;
    color: #ffffff;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    border: 1px solid #d12023;
}

.lbt-btn--primary:hover,
.lbt-btn--primary:focus-visible {
    background: #b81c1f;
    border-color: #b81c1f;
    color: #ffffff;
}

.lbt-bar--text .lbt-btn--primary {
    white-space: nowrap;
}

.lbt-bar--dual .lbt-btn--primary {
    white-space: nowrap;
}

.lbt-btn--secondary {
    width: 350px;
    max-width: 100%;
    background: #ffffff;
    color: #373737;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.lbt-btn--secondary:hover,
.lbt-btn--secondary:focus-visible {
    color: #d12023;
    border-color: #d12023;
}

@media (max-width: 900px) {
    .lbt-bar--text {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        min-height: 0;
    }

    .lbt-bar--text .lbt-text {
        text-align: center;
    }

    .lbt-bar--text .lbt-btn--primary {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .lbt-bar--dual {
        flex-direction: column;
        align-items: stretch;
    }

    .lbt-btn--secondary {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .lbt-bar--dual .lbt-btn--primary {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .block-line-button-text.lbt-block {
        padding: 24px 0;
    }

    .lbt-inner {
        padding: 0 16px;
    }

    .lbt-text {
        font-size: 18px;
    }

    .lbt-btn {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .block-line-button-text.lbt-block * {
        transition: none !important;
    }
}
