/**
 * HyperDAF Core — Homepage Featured Items Styles
 * Location: /wp-content/themes/hyperdaf-core/assets/css/home-featured-items.css
 *
 * Purpose:
 * - Styles the homepage featured items section.
 * - Keeps the section compact, premium, and screenshot-aligned.
 * - Uses the official theme-owned product card loop inside a tight marketplace grid.
 */

.hdaf-home-featured-items{padding-top:10px}
.hdaf-home-featured-items .hdaf-home-section__head{margin-bottom:16px}
.hdaf-home-featured-items__grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:18px;
}

@media (max-width:1199px){
.hdaf-home-featured-items__grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width:991px){
.hdaf-home-featured-items__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
}

@media (max-width:575px){
.hdaf-home-featured-items{padding-top:6px}
.hdaf-home-featured-items__grid{grid-template-columns:1fr;gap:14px}
}