/* =============================================
   CETAF WORKING GROUPS — spacing tweaks
   Adds top breathing room to the text column so the
   heading isn't flush to the top of the card.
   Desktop: padding-top 20px. Mobile: tighten to 10px.
   Targets the md-74 text column (not the icon column).
   Loads after style.css via cetaf_enqueue_split_css,
   so it can be removed from inline styles in VC.
   ============================================= */

.cetaf-working-groups [class*="vce-col--md-74"] .vce-col-content {
    padding-top: 20px !important;
}

@media (max-width: 767px) {
    .cetaf-working-groups [class*="vce-col--md-74"] .vce-col-content {
        padding: 10px !important;
    }
}
