/**
 * mn_producthighlights - Kiemelt előnyök stílus
 */

.product-highlights {
    margin: 1.25rem 0 1.5rem 0;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.product-highlights-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.product-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.product-highlight-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #dcfce7;
    color: #16a34a;
    margin-top: 2px;
}

.product-highlight-icon svg {
    display: block;
    width: 13px;
    height: 13px;
}

.product-highlight-content {
    flex: 1;
    min-width: 0;
}

.product-highlight-title {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.35;
}

.product-highlight-desc {
    margin: 0.2rem 0 0 0;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.45;
}

@media (max-width: 767px) {
    .product-highlights {
        margin: 1rem 0;
        padding: 0.85rem 1rem;
    }
    .product-highlight-title {
        font-size: 0.9rem;
    }
    .product-highlight-desc {
        font-size: 0.825rem;
    }
}
