/* 1. SECTION SPACING & ALIGNMENT */
.uagb-container-inner-blocks-wrap {
    gap: 30px !important;
    padding: 40px 0;
}

/* 2. CARD DESIGN (Targeting the child containers) */
.wp-block-uagb-container[class*="uagb-container-inner-blocks-wrap"] {
    background: #ffffff;
    border-radius: 24px !important; /* Soft rounded corners */
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* 3. HOVER EFFECTS - Dribbble Style Lift */
.wp-block-uagb-container[class*="uagb-container-inner-blocks-wrap"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(115, 165, 202, 0.15); /* Soft brand-blue shadow */
    border-color: #73A5CA; /* Your brand blue */
}

/* 4. TYPOGRAPHY - Titles */
.uagb-ifb-title {
    font-family: inherit; /* Uses your previous fonts */
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
    margin-bottom: 10px !important;
    color: #1a1a1a !important;
}

.uagb-ifb-title a {
    text-decoration: none;
    color: inherit;
}

/* 5. TYPOGRAPHY - Description */
.uagb-ifb-desc {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6;
    margin-bottom: 25px !important;
}

/* 6. BUTTON MODIFICATION - High End Pill Shape */
.uagb-infobox-cta-link.wp-block-button__link {
    background-color: transparent !important;
    color: #73A5CA !important; /* Brand Blue */
    border: 2px solid #73A5CA !important;
    border-radius: 100px !important;
    padding: 10px 25px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.uagb-infobox-cta-link.wp-block-button__link:hover {
    background-color: #73A5CA !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(115, 165, 202, 0.3);
}

/* 7. ICON/GRAPHIC SPACING */
.uagb-ifb-icon-wrap {
    margin-bottom: 20px !important;
    color: #73A5CA;
}

/* 8. GRID REFINEMENT FOR MOBILE */
@media (max-width: 767px) {
    .wp-block-uagb-container[class*="uagb-container-inner-blocks-wrap"] {
        padding: 20px !important;
        margin-bottom: 20px;
    }
}