/* ================================================================
   TerraFloor — features.css
   ================================================================ */

   .features-section {
    padding-block: 100px;
}

.features-section__head {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 50px;
}

.features-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-brown);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.features-section__eyebrow-line {
    display: block;
    width: 19px;
    height: 0;
    border-top: 2px solid var(--color-brown);
    flex-shrink: 0;
}

.features-section__title {
    color: var(--color-black);
    font-size: 45px;
    line-height: 51px;
    font-weight: 600;
    margin: 0;
}

/* ---- Сетка 2×2 ---- */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.features-card {
    background: linear-gradient(180deg, #fdf9f6 0%, #f8f8f8 100%);
    border-radius: 20px;
    padding: 30px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    flex: 1 1 calc(50% - 15px);
    min-width: 0;
}

.features-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f6f0eb;
    border-radius: 100px;
    padding: 10px;
    flex-shrink: 0;
}
.features-card__icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.features-card__title {
    color: var(--color-black);
    font-size: 21px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}

.features-card__text {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 21px;
    margin: 0;
}





/* ================================================================
   Адаптив
   ================================================================ */
@media (max-width: 1280px) {
    .features-section__title { font-size: 34px; line-height: 40px; }
}

@media (max-width: 768px) {
    .features-section { padding-block: 50px; }
    .features-section__title { font-size: 28px; line-height: 32px; }
    .features-section__head { gap: 22px; margin-bottom: 22px; }
    .features-card { flex: 1 1 100%; padding: 20px; margin-bottom: 20px; }

.features-section__eyebrow {
    font-size: 14px;  
}
.features-card__title {
    font-size: 16px;
    line-height: 20px;
}
.features-card__text {
    font-size: 14px;
    line-height: 20px;
}

}