/* =============================================================
   Simple Pros & Cons — Bullet-Proof Frontend Styles
   ============================================================= */

.spc-wrapper {
    margin: 32px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    clear: both;
}

.spc-inner {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

/* ── Columns ─────────────────────────────────────────────────── */
.spc-pros-col,
.spc-cons-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* ── Header ──────────────────────────────────────────────────── */
.spc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.spc-header-icon {
    font-size: 22px;
    line-height: 1;
}

/* ── List Area ───────────────────────────────────────────────── */
.spc-list {
    /* AGGRESSIVE RESET: Kill all default theme bullets */
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 24px 0 !important;
    flex: 1;
}

/* Background tints exactly as per image */
.spc-pros-list {
    background: #f4fff4 !important;
}

.spc-cons-list {
    background: #fff4f4 !important;
}

.spc-list li {
    /* FORCE BLOCK DISPLAY to hide bullets absolutely */
    display: block !important;
    list-style-type: none !important;
    position: relative !important;
    padding: 12px 24px 12px 64px !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.spc-list li:last-child {
    border-bottom: none !important;
}

/* ── The Circular Icons ─────────────────────────────────────── */
.spc-list li::before {
    position: absolute !important;
    left: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    border: 1.5px solid currentColor !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
}

/* Pros checkmark circle */
.spc-pros-list li::before {
    content: '\2713' !important;
    /* ✓ */
    color: var(--spc-check-color, #28a745) !important;
}

/* Cons cross circle */
.spc-cons-list li::before {
    content: '\2717' !important;
    /* ✗ */
    color: var(--spc-cross-color, #dc3545) !important;
}

/* ── Mobile Logic ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .spc-inner {
        flex-direction: column;
    }

    .spc-header {
        font-size: 18px;
        padding: 12px 20px;
    }

    .spc-list li {
        font-size: 15px !important;
        padding: 10px 20px 10px 58px !important;
    }

    .spc-list li::before {
        left: 18px !important;
        width: 24px !important;
        height: 24px !important;
    }
}