/* ===== BlueprintRx: Editorial + Mission split layout ===== */
.bp-editorial-section {
    padding: 70px 20px;
    background: #f8fafc;
}

.bp-editorial-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

/* Left image */
.bp-editorial-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(10, 30, 70, 0.08);
    min-height: 320px;
}

    .bp-editorial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform-origin: center;
        transition: transform .6s ease;
    }

    .bp-editorial-image:hover img {
        transform: scale(1.03);
    }

/* Right content (text + mission) */
.bp-editorial-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Editorial text */
.bp-editorial-text .bp-title {
    margin: 0 0 12px;
    font-size: 30px;
    color: #0a2a66;
    text-align: left;
    font-weight: 700;
}

.bp-editorial-text p {
    margin: 0;
    color: #2f3a46;
    line-height: 1.75;
    font-size: 16.5px;
}

/* compact mission card / aside */
.bp-mission-mini {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(10, 30, 70, 0.06);
    border: 1px solid rgba(6, 40, 100, 0.04);
    max-width: 520px; /* keeps mission compact on wide screens */
}

.bp-mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0a2a66;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(10, 42, 102, 0.18);
    flex-shrink: 0;
}

.bp-mission-copy h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #0a2a66;
    font-weight: 700;
}

.bp-mission-copy p {
    margin: 0;
    color: #3b4650;
    font-size: 15px;
    line-height: 1.5;
}

/* small vertical accent on left edge (optional editorial accent) */
.bp-editorial-text::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 48px;
    margin-right: 14px;
    vertical-align: middle;
    background: linear-gradient(180deg,#0a2a66,#2a64d6);
    border-radius: 3px;
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
    .bp-editorial-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bp-editorial-image {
        min-height: 260px;
    }

    .bp-editorial-text, .bp-mission-mini {
        text-align: center;
    }

        .bp-editorial-text::before {
            display: none;
        }

    .bp-mission-mini {
        margin: 0 auto;
    }
}




/*test*/

/* ===== Restore: simple short left border (no dot) ===== */
.bp-editorial-text {
    position: relative; /* needed for the pseudo element */
    padding-left: 20px; /* space for the left bar */
    margin-bottom: 8px;
}

    /* short solid left bar */
    .bp-editorial-text::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px; /* adjust to align vertically with title top */
        width: 4px;
        height: 56px; /* length of the short bar */
        background: #0a2a66; /* solid BlueprintRx blue */
        border-radius: 3px;
        box-shadow: none;
    }

    /* make sure any previous dot/marker is disabled */
    .bp-editorial-text::after {
        display: none !important;
    }

/* small responsive tweak: hide the bar on smaller screens */
@media (max-width: 900px) {
    .bp-editorial-text {
        padding-left: 0;
        text-align: center;
    }

        .bp-editorial-text::before {
            display: none;
        }
}
.bp-editorial-image img {
   
    height: 400px;
}
.bp-mission-mini {
    background: #dff1ff;
    max-width: 100%;
}
/* subtle readability & depth for mission text */
.bp-mission-copy p {
    font-size: 15px;
    line-height: 1.5;
    color: #0a1e3f; /* keeps text dark but not jet black */
    font-weight: 500; /* balanced weight */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.bp-mission-copy p {
    color: #1a1a1a;
    text-shadow: 0 1px 3px rgba(10, 42, 102, 0.25);
}
.bp-mission-copy p {
    font-size: 15px;
    line-height: 1.5;
    color: #0a1e3f;
    text-shadow: 0 0.6px 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(10, 42, 102, 0.15);
}
