.gsf-pros-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    margin: 16px 0;
}

.gsf-pros-cons__title {
    font-weight: 600;
    margin-bottom: 8px;
}

.gsf-pros-cons__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gsf-pros-cons__item {
    padding: 8px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Column sizing similar to provided CSS */
.gsf-pros-cons__col {
    flex: 1 1 0;
    min-width: 280px;
}

/* Backgrounds
   Pros: #e8f9f2
   Cons: #fbedf1 */
.gsf-pros-cons__item--pro {
    background-color: #e8f9f2;
}

.gsf-pros-cons__item--con {
    background-color: #fbedf1;
}

/* Icons before items */
.gsf-pros-cons__item--pro::before,
.gsf-pros-cons__item--con::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
}

.gsf-pros-cons__item--pro::before {
    content: "✅";
    background-image: none;
    padding-top: 3px;
}

.gsf-pros-cons__item--con::before {
    content: "❌";
    background-image: none;
}


