/* TBC Book Section */

.bsb-tbc-book-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    background-color: #EEEEEE;
    overflow: hidden;
}

.bsb-tbc-book-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bsb-tbc-book-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.tbc-book-container {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.bsb-tbc-book-content {
    width: 100%;
    max-width: 850px;
    color: #000000;
    font-family: var(--bsb-font-primary);
    padding-left: 2rem;
}

/* ── Typography ── */

.bsb-tbc-book-content h2 {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.bsb-tbc-book-content p {
    font-size: clamp(1rem, 1.25vw, 1.375rem);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.bsb-tbc-book-content p strong {
    font-weight: 700;
}

.bsb-tbc-book-content h5 {
    font-size: clamp(1.25rem, 1.375vw, 1.55rem);
    line-height: 1.7;
    font-weight: 800;
}

/* ── Responsive ── */

@media (max-width: 991.98px) {
    .bsb-tbc-book-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .bsb-tbc-book-bg {
        position: relative;
        width: 100%;
        height: auto;
    }

    .tbc-book-container {
        padding: 2rem 20px;
    }

    .bsb-tbc-book-content {
        max-width: 100%;
        padding: 0;
    }
}