/* Pros Cons Auto Styler - pros-cons-styler.css */

.pcs-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 1.5rem 0;
    font-family: inherit;
}

.pcs-box {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    box-sizing: border-box;
}

.pcs-pros {
    background-color: #eaf3de;
    border: 1.5px solid #97c459;
}

.pcs-cons {
    background-color: #fcebeb;
    border: 1.5px solid #f09595;
}

.pcs-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pcs-pros .pcs-heading {
    color: #3b6d11;
}

.pcs-cons .pcs-heading {
    color: #a32d2d;
}

.pcs-pros .pcs-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #639922;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.pcs-cons .pcs-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #e24b4a;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.pcs-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.pcs-list li {
    font-size: 14px;
    padding: 6px 0 6px 24px !important;
    position: relative;
    line-height: 1.55;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.07);
    margin: 0 !important;
}

.pcs-list li:last-child {
    border-bottom: none;
}

.pcs-pros .pcs-list li {
    color: #27500a;
}

.pcs-cons .pcs-list li {
    color: #791f1f;
}

.pcs-pros .pcs-list li::before {
    content: "✓";
    position: absolute;
    left: 4px;
    color: #639922;
    font-weight: 700;
    font-size: 14px;
}

.pcs-cons .pcs-list li::before {
    content: "✗";
    position: absolute;
    left: 4px;
    color: #e24b4a;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 600px) {
    .pcs-wrap {
        grid-template-columns: 1fr;
    }
}
