/* --- 1. СЕКЦИЯ И ТЕМЫ --- */
.preim-section {
    padding: 60px 0 80px;
    width: 100%;
}

/* Темы фона из файла сборки */
.preim-section.theme-grey {
    background-color: #eaeaea;
}

.preim-section.theme-white {
    background-color: #ffffff;
}

.preim_h2 {
    display: block;
    width: 100%;
    color: #1a1a1a;
    margin-bottom: 40px;
}

/* --- 2. СЕТКА --- */
.preim_advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* --- 3. КАРТОЧКА --- */
.preim_advantages_item {
    display: flex;
    flex-direction: column;
    width: 49.5%;
    padding: 19px 25px 19px 35px; 
    margin-bottom: 12px;
    background: #fff;
    /* Тень оставляем универсальную, она хорошо ложится и на белый, и на серый */
    box-shadow: 0 -2px 16px rgba(0,0,0,.12), 0 2px 16px rgba(0,0,0,.12);
    box-sizing: border-box;
}

/* Специфика для белого фона: если секция белая, можно добавить карточкам легкую рамку или изменить тень */
.preim-section.theme-white .preim_advantages_item {
    border: 1px solid #f0f0f0;
}

.preim_advantages_item_name {
    position: relative;
    margin-bottom: 10px;
}

/* Зеленый маркер */
.preim_advantages_item_name:before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #1f9036;
    position: absolute;
    left: -20px;
    top: 6px;
}

/* Заголовок карточки */
.preim_advantages_item_title {
    font-weight: 800; 
    color: #282e6a;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.preim_advantages_item_title:after {
    content: "";
    height: 2px;
    width: 95%;
    background: #1f9036;
    position: absolute;
    left: 0;
    bottom: -2px;
    display: block;
}

.preim_advantages_item_text {
    margin: 0;
    color: #1a1a1a;
}

/* --- 4. АДАПТИВНОСТЬ --- */
@media (max-width: 846px) {
    .preim_advantages_item { 
        width: 100%; 
        padding-left: 30px;
        margin-bottom: 15px;
    }
}
