/* ==========================================================================
   ICON BAR SECTION - KHỚP 100% ẢNH MẪU
   ========================================================================== */

.sec-icon-bar {
    background-color: #456967 !important; /* Màu xanh rêu đậm theo theme Living Hope */
    color: #ffffff;
    padding: 24px 0;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-body, 'Nunito Sans', sans-serif);
}

.icon-bar-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.icon-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.bar-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.2px; /* Nét svg mảnh chuẩn mẫu */
}

.bar-title {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* RESPONSIVE TABLET & MOBILE */
@media (max-width: 991px) {
    .icon-bar-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 20px;
    }
    
    .bar-title {
        font-size: 16px;
        white-space: normal;
    }
}