.wise-pros-cons-container {
    width: var(--wise-pros-cons-width, 1200px);
    max-width: 100%;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

/* Headers */
.wise-pros-cons-headers {
    display: flex;
    text-align: center;
    color: #fff;
}

.wise-pros-header, .wise-cons-header {
    flex: 1;
    padding: 15px 20px;
}

.wise-pros-header {
    background: var(--wise-pros-bg, linear-gradient(90deg, #2ecc71 0%, #1abc9c 100%));
}

.wise-cons-header {
    background: var(--wise-cons-bg, linear-gradient(90deg, #ff7675 0%, #a29bfe 100%));
}

.wise-pros-header h3, .wise-cons-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

/* Lists */
.wise-pros-cons-lists {
    display: flex;
    padding: 30px 10px;
    gap: 20px;
}

.wise-pros-list, .wise-cons-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.wise-pro-item, .wise-con-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Icons */
.wise-pro-icon, .wise-con-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.wise-pro-icon {
    color: var(--wise-pros-accent, #2ecc71);
    border-color: var(--wise-pros-accent, #2ecc71);
}

.wise-con-icon {
    color: var(--wise-cons-accent, #ff7675);
    border-color: var(--wise-cons-accent, #ff7675);
}

/* Editor Tools */
.wise-list-tools {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.wise-pros-cons-container:hover .wise-list-tools {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .wise-pros-cons-headers, .wise-pros-cons-lists {
        flex-direction: column;
    }
    .wise-pros-cons-lists {
        padding: 20px;
    }
    .wise-pros-list, .wise-cons-list {
        padding: 0;
    }
}
