/* Общие стили для списков */
.list-style-green,
.list-style-red {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-style-green li,
.list-style-red li {
    position: relative;
    padding-left: 1.6rem; /* отступ под иконку */
    margin-bottom: 0.6rem;
    color: #60676b;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- ЗЕЛЁНЫЕ ГАЛОЧКИ --- */
.list-style-green li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.6rem;
    height: 0.3rem;
    border-left: 2px solid #2ecc71; /* зелёная */
    border-bottom: 2px solid #2ecc71;
    transform: rotate(-45deg);
}

/* --- КРАСНЫЕ КРЕСТИКИ --- */
.list-style-red li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 0.7rem;
    height: 0.7rem;
}

.list-style-red li::before {
    background:
        linear-gradient(45deg, transparent 46%, #e74c3c 46%, #e74c3c 54%, transparent 54%),
        linear-gradient(-45deg, transparent 46%, #e74c3c 46%, #e74c3c 54%, transparent 54%);
}
