.hmf-product-icon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem 2.5rem;
    align-items: start;
    margin-top: 2rem;
}

.hmf-product-icon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
}

.hmf-product-icon-img,
.hmf-product-icon-dashicon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.hmf-product-icon-img {
    object-fit: contain;
}

.hmf-product-icon-dashicon {
    font-size: 32px;
    line-height: 1;
}

.hmf-product-icon-label {
    font-size: 17px;
}

@media (min-width: 1025px) {
    .hmf-product-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1024px)  {
    .hmf-product-icon-label {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
	.hmf-product-icon-label {
		font-size: 15px;
	}
}
