/* yatproductfeatures — front (fiche produit) */

.yat-product-features {
    margin: 2rem 0;
}

.yat-product-features__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.yat-product-features__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
}

.yat-product-features__icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yat-product-features__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .yat-product-features__icon img {
        width: 32px;
        height: 32px;
    }
}

.yat-product-features__body {
    flex: 1 1 auto;
    min-width: 0;
}

.yat-product-features__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.yat-product-features__description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.yat-product-features__description p:last-child {
    margin-bottom: 0;
}
