/*
 * WSC Man Behind The Curtain — Page Injector Front-end Styles
 * @package WSC_ManBehindTheCurtain
 * @version 0.01
 */

/* ── Injected block ─────────────────────────────────────────────────────── */
.wsc-mbtc-injected {
    box-sizing: border-box;
    width: 100%;
}

.wsc-mbtc-injected__title {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: .5em;
    color: inherit;
}

.wsc-mbtc-injected__content {
    line-height: 1.6;
}

/* ── Position variants ──────────────────────────────────────────────────── */
.wsc-mbtc-injected--top,
.wsc-mbtc-injected--before_content {
    margin-bottom: 2em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #e8e8e8;
}

.wsc-mbtc-injected--bottom,
.wsc-mbtc-injected--after_content {
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 1px solid #e8e8e8;
}

/* ── Sidebar layout ─────────────────────────────────────────────────────── */
.wsc-mbtc-injector-layout {
    display: flex;
    gap: 2em;
    align-items: flex-start;
    width: 100%;
}

.wsc-mbtc-injector-main {
    flex: 1;
    min-width: 0;
}

.wsc-mbtc-injector-left,
.wsc-mbtc-injector-right {
    flex: 0 0 260px;
    max-width: 260px;
}

.wsc-mbtc-injected--left,
.wsc-mbtc-injected--right {
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 1.25em;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .wsc-mbtc-injector-layout {
        flex-direction: column;
    }
    .wsc-mbtc-injector-left,
    .wsc-mbtc-injector-right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}
