.pros-cons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.pros, .cons {
    flex: 1;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pros h3, .cons h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid;
}

.pros h3 {
    color: #28a745;
    border-color: #28a745;
}

.cons h3 {
    color: #dc3545;
    border-color: #dc3545;
}

.pros ul, .cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pros li, .cons li {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.pros-cons-wrapper ul.wp-block-list>li:before,
.pros-cons-wrapper ul:not([class])>li:before {
    content: none !important;
}

.pros li::after {
    content: '✔';
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

/* Іконки мінусів */
.cons li::after {
    content: '✖';
    color: #dc3545;
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
}
