/* 1. IMPORT BRAND FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

/* 2. SELECTIVE TYPOGRAPHY */
/* We target specific text elements to avoid breaking the "Font-Icons" */
body, p, li, td, input, textarea, select, 
.WaGadgetHtmlBlock, .WaGadgetContent, .WaGadgetRecentBlogPosts {
    font-family: 'Montserrat', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    color: #002147; 
}

/* 3. ICON PROTECTION */
/* This specifically tells the browser NOT to use Montserrat for social gadgets */
.WaGadgetSocialProfile *, 
[class^="icon-"], [class*=" icon-"], 
[class^="fa-"], [class*=" fa-"],
.u-social-icons * {
    font-family: inherit !important; 
}

/* 4. YOUR EXISTING BLOG FIXES */
.WaGadgetRecentBlogPosts .itemAuthor,
SPAN.postedByLink {
    display: none !important;
}

/* 5. EXECUTIVE CARDS */
.executive-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #C5B358;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.08); 
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.executive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 33, 71, 0.15);
}

/* 6. NAVIGATION MENU (FONT + OLD SIZE) */
.WaGadgetMenuHorizontal a, 
.WaGadgetMenuVertical a,
.menuItem a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important; /* Matches standard Wild Apricot link size */
    letter-spacing: 0.5px;
}