/* =====================================================================
 * BSH Text-Image Section
 * ===================================================================== */

.bsh-text-image {
    --ti-orange: #eb6a05;
    --ti-blue: #4283c4;
    --ti-blue-dark: #1b3a61;
    --ti-text: #000;

    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.bsh-text-image,
.bsh-text-image *,
.bsh-text-image *::before,
.bsh-text-image *::after {
    box-sizing: border-box;
}

.text-image-dot-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--ti-orange) 0.8px, transparent 0.8px);
    background-size: 8px 8px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.text-image-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-image-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-image__kicker {
    color: var(--ti-orange);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
}

.text-image__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ti-text);
    margin: 0;
    max-width: 90%;
}

.text-image__body {
    color: var(--ti-text);
    font-size: 16px;
    line-height: 1.75;
    max-width: 85%;
}

.text-image__body p {
    margin: 0 0 16px;
}

.text-image__body p:last-child {
    margin-bottom: 0;
}

.text-image__btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--ti-orange);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    margin-top: 10px;
    width: fit-content;
    border-radius: 50px 0 50px 0;
}

.text-image__btn:hover,
.text-image__btn:focus {
    background: var(--ti-blue-dark);
}

.text-image-image {
    position: relative;
    overflow: hidden;
    height: 450px;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.text-image-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blue variant
   ===================================================================== */
.bsh-text-image--blue {
    background: #f4f7fb;
}

@media (max-width: 900px) {
    .bsh-text-image {
        padding: 60px 0;
    }

    .text-image-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-image__title {
        max-width: 100%;
    }

    .text-image__body {
        max-width: 100%;
    }

    .text-image-image {
        height: 340px;
    }
}

@media (max-width: 600px) {
    .bsh-text-image {
        padding: 44px 0;
    }

    .text-image-container {
        padding: 0 18px;
        gap: 28px;
    }

    .text-image__title {
        font-size: 24px;
    }

    .text-image__body {
        font-size: 15px;
        line-height: 1.7;
    }

    .text-image-image {
        height: auto;
        aspect-ratio: 4 / 3;
        border-top-left-radius: 40%;
        border-bottom-right-radius: 40%;
    }

    .text-image__btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .text-image-content {
        gap: 16px;
    }
}
