.faq-bridge-section {
    position: relative;
    overflow: hidden;
    background: #f3f4f5;
    color: #111111;
    text-align: center;
    isolation: isolate;
}

.faq-bridge-section::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    color: #111111;
    content: "?";
    font-family: var(--font-heading);
    font-size: clamp(260px, 36vw, 540px);
    font-weight: 700;
    line-height: .8;
    opacity: .025;
    transform: translate(-50%, -48%);
    pointer-events: none;
}

.faq-bridge-content {
    width: min(720px, 100%);
    margin: 0 auto;
}

.faq-bridge-section .home-section-title {
    margin-bottom: 26px;
    color: #111111;
}

.faq-bridge-desc {
    margin: 0 auto;
    color: #696969;
    font-size: 15px;
    line-height: 1.9;
    word-break: keep-all;
}

.faq-bridge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 52px;
    margin-top: 36px;
    padding: 14px 34px;
    border: 1px solid #000000;
    border-radius: 4px;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.faq-bridge-link:hover {
    border-color: #222222;
    background: #222222;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    transform: translateY(-2px);
}

.faq-bridge-link:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 5px;
}

@media (max-width: 767px) {
    .faq-bridge-section .home-section-title {
        margin-bottom: 22px;
    }

    .faq-bridge-desc {
        font-size: 14px;
        line-height: 1.8;
    }

    .faq-bridge-desc br {
        display: none;
    }

    .faq-bridge-link {
        width: min(100%, 320px);
        margin-top: 30px;
    }
}
