/* ── bsb-about — direct port from about.css ─────────────────────────────── */

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

/* ── Background image ────────────────────────────────────────────────────── */
.bsb-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width:  100%;
    height: 100%;
    z-index: 1;
}

.bsb-about-bg img {
    width:            100%;
    height:           100%;
    object-fit:       cover;
    object-position:  top center;
}
.wrote-book .bsb-about-bg img {
    object-position:  top right;
}
/* ── Container ───────────────────────────────────────────────────────────── */
.about-container {
    height:          100%;
    display:         flex;
    align-items:     center;
    z-index:         10;
    position:        relative;
    padding-top:     10rem;
    padding-bottom:  10rem;
}

/* Content side: right (default) */
.bsb-about--content-right .about-container {
    justify-content: flex-end;
}

/* Content side: left */
.bsb-about--content-left .about-container {
    justify-content: flex-start;
}

/* ── Text box ────────────────────────────────────────────────────────────── */
.bsb-about-content {
    width:       100%;
    max-width:   520px;
    color:       #000000;
    font-family: var(--bsb-font-primary);
}
.wrote-book .bsb-about-content{
    max-width: 800px;
}
.bsb-about--content-right .bsb-about-content { padding-right: 2rem; }
.bsb-about--content-left  .bsb-about-content { padding-left:  2rem; }

/* ── Word masking (set by JS) ────────────────────────────────────────────── */
.line-mask {
    display:        inline-block;
    vertical-align: top;
    overflow:       hidden;
    margin-right:   0.35em;
}

.line-inner {
    display:   block;
    transform: translateY(115%);
}


.bsb-about-heading {
    font-family:    var(--bsb-font-display);
    font-size:      clamp(1.375rem, 2.5vw, 2.25rem);
    font-weight:    700;
    text-transform: uppercase;
    color:          var(--bsb-color-text);
    margin-bottom:  1.5rem;
    line-height:    1.1;
    letter-spacing: -0.02em;
}

/* ── Paragraphs ──────────────────────────────────────────────────────────── */
.bsb-about-body p {
    font-family:   var(--bsb-font-primary);
    font-size:     clamp(1rem, 1.2vw, 1.125rem);
    line-height:   1.8;
    margin-bottom: 1.5rem;
    font-weight:   400;
}
.bsb-about-body p strong.bigcap{
    font-weight: 700;
    font-size: clamp(1.125rem, 1.4vw, 1.4rem);
    text-transform: uppercase;
}
.bsb-about-body p:last-child {
    margin-bottom: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media ( max-width: 1024px ) {
.bsb-about-heading {
        margin-bottom: 2rem;
    }
}
@media ( max-width: 991px ) {
    .bsb-about-wrapper {
        flex-direction: column;
    }

    .bsb-about-bg {
        position: relative;
        height:   auto;
    }

    .about-container {
        padding:         2rem 20px;
        justify-content: flex-start !important;
    }

    .bsb-about-content {
        max-width:    100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (max-width: 768px) {
    .bsb-about-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
}