/* ══════════════════════════════════════════════════════════════════════════════
   PROS & CONS BLOCK (affiliate-booster/propsandcons)
   ══════════════════════════════════════════════════════════════════════════════ */

.wp-block-affiliate-booster-propsandcons {
    font-family: var(--ab-font);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
    overflow: hidden;
    margin: 28px 0;
    transition: box-shadow 0.25s ease;
}
.wp-block-affiliate-booster-propsandcons:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.05), 0 8px 28px rgba(0,0,0,0.06);
}

.affiliate-d-table.affiliate-procon-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* ── Pros column ─────────────────────────────────────────────────────── */
.affiliate-props-list {
    padding: 28px 32px;
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf6 100%);
    border-right: 1px solid #d1fae5;
}

/* ── Cons column ─────────────────────────────────────────────────────── */
.affiliate-cons-list {
    padding: 28px 32px;
    background: linear-gradient(180deg, #fef2f2 0%, #fff5f5 100%);
}

/* ── Column headings ─────────────────────────────────────────────────── */
.affiliate-propcon-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 20px;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

/* Heading icon circles */
.affiliate-propcon-title::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1;
}

.affiliate-props-title {
    color: #059669;
    border-bottom: 2px solid #a7f3d0;
}
.affiliate-props-title::before {
    content: "\2713";
    background: #059669;
    color: #fff;
    box-shadow: 0 2px 6px rgba(5,150,105,0.3);
}

.affiliate-const-title {
    color: #dc2626;
    border-bottom: 2px solid #fecaca;
}
.affiliate-const-title::before {
    content: "\2717";
    background: #dc2626;
    color: #fff;
    box-shadow: 0 2px 6px rgba(220,38,38,0.3);
}

/* ── List items ──────────────────────────────────────────────────────── */
.affiliate-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.affiliate-list li {
    position: relative;
    padding: 10px 0 10px 34px;
    font-size: 15px;
    line-height: 1.55;
    color: #1e293b;
    border-bottom: 1px solid transparent;
    transition: background 0.15s ease;
}

.affiliate-list li:last-child {
    padding-bottom: 0;
}

/* Icon circles on each item */
.affiliate-list li::before {
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.affiliate-list-bullet-check-circle li::before {
    content: "\2713";
    background: #d1fae5;
    color: #059669;
    border: 1.5px solid #a7f3d0;
}

.affiliate-list-bullet-times-circle li::before,
.affiliate-list-bullet-times li::before {
    content: "\2717";
    background: #fee2e2;
    color: #dc2626;
    border: 1.5px solid #fecaca;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .affiliate-d-table.affiliate-procon-inner {
        grid-template-columns: 1fr;
    }
    .affiliate-props-list {
        border-right: none;
        border-bottom: 1px solid #d1fae5;
        padding: 24px;
    }
    .affiliate-cons-list {
        padding: 24px;
    }
    .affiliate-propcon-title {
        font-size: 16px;
    }
    .affiliate-list li {
        font-size: 14px;
        padding: 8px 0 8px 30px;
    }
}

