/**
 * Product ACF Features Styling
 * Extracted from inline styles for better performance
 * 
 * @package Eastpresso_Child
 * @version 1.0.0
 */

/* Main Container */
.prodaucts_acf_featureall {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

/* Individual Feature Box */
.featured_boxall {
    width: 33.33%;
    float: right;
    padding: 0 0 20px;
    box-sizing: border-box;
}

/* Feature Label */
.label_fb_box {
    display: block;
    color: #1F2936;
    font-size: 18px;
    padding-bottom: 6px;
    font-weight: 600;
}

/* Feature Content Images */
.content_fb_box img {
    width: 17px;
    height: auto;
    float: right;
    margin-left: 6px;
}

/* Responsive Design */
@media (max-width: 770px) {
    .content_fb_box img {
        width: 11px;
    }
    
    .featured_boxall {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .featured_boxall {
        width: 100%;
    }
}
