/* PRIORITY FIX: Force H3 visibility with multiple fallback methods */

/* Method 1: Direct targeting with highest specificity */
.glass-morphism h3,
.glass-morphism h3.text-3xl,
.glass-morphism h3.text-3xl.font-bold,
.glass-morphism h3.text-3xl.font-bold.mb-4 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.875rem !important; /* 30px equivalent to text-3xl */
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Method 2: Fix gradient text implementation */
.glass-morphism h3.text-transparent {
    /* Ensure the element itself is visible */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    
    /* Proper gradient text setup */
    background: linear-gradient(90deg, rgb(196, 125, 230), rgb(244, 114, 182)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    
    /* Fallback for browsers that don't support gradient text */
    background-color: #c084f5 !important;
}

/* Method 3: Specific color fixes for each card */
/* Purple card - WTEC1 LMS */
.glass-morphism:nth-child(1) h3,
.glass-morphism:has(a[href*="wtec1.xyz"]) h3 {
    background: linear-gradient(90deg, rgb(196, 125, 230), rgb(244, 114, 182)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    /* Solid color fallback */
    background-color: #c084f5 !important;
}

/* Blue card - JCE MSCE LESSONS */
.glass-morphism:nth-child(2) h3,
.glass-morphism:has(a[href*="wtec1.com"]) h3 {
    background: linear-gradient(90deg, rgb(96, 165, 250), rgb(34, 211, 238)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    /* Solid color fallback */
    background-color: #60a5fa !important;
}

/* Yellow card - W-Tech Learning Center */
.glass-morphism:nth-child(3) h3,
.glass-morphism:has(a[href*="foundlinkdigital.com"]) h3 {
    background: linear-gradient(90deg, rgb(251, 191, 36), rgb(251, 146, 60)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    /* Solid color fallback */
    background-color: #fbbf24 !important;
}

/* Method 4: Fallback solid colors if gradients fail */
@supports not (-webkit-background-clip: text) {
    .glass-morphism h3.text-transparent {
        color: #c084f5 !important;
        -webkit-text-fill-color: initial !important;
        background: none !important;
    }
    
    .glass-morphism:nth-child(1) h3 {
        color: #c084f5 !important; /* Purple */
    }
    
    .glass-morphism:nth-child(2) h3 {
        color: #60a5fa !important; /* Blue */
    }
    
    .glass-morphism:nth-child(3) h3 {
        color: #fbbf24 !important; /* Yellow */
    }
}

/* Method 5: Override any WordPress theme hiding styles */
.wtec1-page .glass-morphism h3 {
    text-indent: 0 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: visible !important;
    height: auto !important;
    width: auto !important;
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
}

/* Method 6: Force visibility on all gradient text classes */
.bg-gradient-to-r.from-purple-400.to-pink-400,
.bg-gradient-to-r.from-blue-400.to-cyan-400,
.bg-gradient-to-r.from-yellow-400.to-orange-400 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Method 7: Ensure bg-clip-text works properly */
.bg-clip-text {
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    background-attachment: scroll !important;
}

/* Method 8: Alternative approach - use data attributes for targeting */
.glass-morphism[data-card="purple"] h3 {
    color: #c084f5 !important;
    background: linear-gradient(90deg, #c47de6, #f472b6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.glass-morphism[data-card="blue"] h3 {
    color: #60a5fa !important;
    background: linear-gradient(90deg, #60a5fa, #22d3ee) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.glass-morphism[data-card="yellow"] h3 {
    color: #fbbf24 !important;
    background: linear-gradient(90deg, #fbbf24, #fb923c) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Method 9: Remove any potential hiding pseudo-elements */
.glass-morphism h3:before,
.glass-morphism h3:after {
    display: none !important;
    content: none !important;
}

/* Method 10: Emergency fallback - make all H3s visible with solid colors */
.wtec1-page h3 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
    font-size: 1.875rem !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
}

/* Method 11: Debug styles - remove these after testing */
.glass-morphism h3 {
    /* Temporary debug background - remove after confirming visibility */
    /* background-color: rgba(255, 0, 0, 0.1) !important; */
    /* border: 1px solid red !important; */
    min-height: 40px !important;
    padding: 5px !important;
}

/* Additional WordPress theme overrides */
.wtec1-page a h3,
.wtec1-page a:hover h3,
.wtec1-page a:visited h3,
.wtec1-page a:focus h3,
.wtec1-page a:active h3 {
    color: inherit !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}




/* Overiding the wp css */

/* Fix WordPress theme link styles interfering with cards */

/* Remove underlines and ensure proper text display for card links */
.glass-morphism a,
.glass-morphism a:hover,
.glass-morphism a:visited,
.glass-morphism a:focus,
.glass-morphism a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    color: inherit !important;
}

/* Ensure card titles are visible - More specific targeting */
.glass-morphism h3,
.glass-morphism .text-transparent,
.glass-morphism h3.text-transparent {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    margin: inherit !important;
}

/* Force H3 titles to show with gradient backgrounds */
.glass-morphism h3.text-3xl {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(90deg, rgb(196, 125, 230), rgb(244, 114, 182)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Fix gradient text that might be hidden */
.glass-morphism .bg-clip-text {
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    background-image: inherit !important;
}

/* Ensure purple gradient text shows */
.bg-gradient-to-r.from-purple-400.to-pink-400 {
    background: linear-gradient(90deg, rgb(196, 125, 230), rgb(244, 114, 182)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* Ensure blue gradient text shows */
.bg-gradient-to-r.from-blue-400.to-cyan-400 {
    background: linear-gradient(90deg, rgb(96, 165, 250), rgb(34, 211, 238)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* Ensure yellow gradient text shows */
.bg-gradient-to-r.from-yellow-400.to-orange-400 {
    background: linear-gradient(90deg, rgb(251, 191, 36), rgb(251, 146, 60)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* Override any WordPress theme styles that might hide content */
.wtec1-page a {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

/* Ensure all text within cards is visible */
.glass-morphism * {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix any theme-specific link hover effects */
.wtec1-page a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Fallback: If gradient text still doesn't work, show solid colors */
.glass-morphism h3:nth-of-type(1) {
    color: #c084f5 !important; /* Purple fallback */
}

.glass-morphism h3:nth-of-type(2) {
    color: #60a5fa !important; /* Blue fallback */
}

.glass-morphism h3:nth-of-type(3) {
    color: #fbbf24 !important; /* Yellow fallback */
}

/* Additional safety measures for common WordPress theme issues */
.glass-morphism h3.text-3xl.font-bold.mb-4 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
}

/* Purple card title - WTEC1 LMS */
.glass-morphism:has(a[href*="wtec1.xyz"]) h3 {
    background: linear-gradient(90deg, rgb(196, 125, 230), rgb(244, 114, 182)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Blue card title - JCE MSCE LESSONS */
.glass-morphism:has(a[href*="wtec1.com"]) h3 {
    background: linear-gradient(90deg, rgb(96, 165, 250), rgb(34, 211, 238)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Yellow card title - W-Tech Learning Center */
.glass-morphism:has(a[href*="foundlinkdigital.com"]) h3 {
    background: linear-gradient(90deg, rgb(251, 191, 36), rgb(251, 146, 60)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
.glass-morphism a:before,
.glass-morphism a:after {
    display: none !important;
}

/* Ensure proper z-index stacking */
.glass-morphism {
    position: relative;
    z-index: 1;
}

.glass-morphism > a {
    position: relative;
    z-index: 2;
}




/* add new css */

/* Add this CSS to fix the missing colors in your WordPress Additional CSS */

/* Fix border colors with proper opacity */
.border-purple-500/30,
.border-purple-500/30 {
    border-color: rgba(168, 85, 247, 0.3) !important;
}

.border-blue-500/30,
.border-blue-500/30 {
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.border-yellow-500/30,
.border-yellow-500/30 {
    border-color: rgba(234, 179, 8, 0.3) !important;
}

/* Fix background gradients with opacity */
.from-purple-600/10,
.from-purple-600/10 {
    --tw-gradient-from: rgba(147, 51, 234, 0.1) !important;
}

.to-indigo-600/10,
.to-indigo-600/10 {
    --tw-gradient-to: rgba(79, 70, 229, 0.1) !important;
}

.group:hover .group-hover:from-purple-600/20,
.group:hover .group-hover:from-purple-600/20 {
    --tw-gradient-from: rgba(147, 51, 234, 0.2) !important;
}

.group:hover .group-hover:to-indigo-600/20,
.group:hover .group-hover:to-indigo-600/20 {
    --tw-gradient-to: rgba(79, 70, 229, 0.2) !important;
}

.from-blue-600/10,
.from-blue-600/10 {
    --tw-gradient-from: rgba(37, 99, 235, 0.1) !important;
}

.to-cyan-600/10,
.to-cyan-600/10 {
    --tw-gradient-to: rgba(8, 145, 178, 0.1) !important;
}

.group:hover .group-hover:from-blue-600/20,
.group:hover .group-hover:from-blue-600/20 {
    --tw-gradient-from: rgba(37, 99, 235, 0.2) !important;
}

.group:hover .group-hover:to-cyan-600/20,
.group:hover .group-hover:to-cyan-600/20 {
    --tw-gradient-to: rgba(8, 145, 178, 0.2) !important;
}

.from-yellow-600/10,
.from-yellow-600/10 {
    --tw-gradient-from: rgba(202, 138, 4, 0.1) !important;
}

.to-orange-600/10,
.to-orange-600/10 {
    --tw-gradient-to: rgba(234, 88, 12, 0.1) !important;
}

.group:hover .group-hover:from-yellow-600/20,
.group:hover .group-hover:from-yellow-600/20 {
    --tw-gradient-from: rgba(202, 138, 4, 0.2) !important;
}

.group:hover .group-hover:to-orange-600/20,
.group:hover .group-hover:to-orange-600/20 {
    --tw-gradient-to: rgba(234, 88, 12, 0.2) !important;
}

/* Alternative approach - direct styling for the cards */
.glass-morphism.border-2 {
    border-width: 2px !important;
}

/* Purple card specific styles */
.glass-morphism:has(a[href*="wtec1.xyz"]) {
    border-color: rgba(168, 85, 247, 0.3) !important;
}

.glass-morphism:has(a[href*="wtec1.xyz"]) .absolute.inset-0 {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(79, 70, 229, 0.1)) !important;
}

.glass-morphism:has(a[href*="wtec1.xyz"]):hover .absolute.inset-0 {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(79, 70, 229, 0.2)) !important;
}

/* Blue card specific styles */
.glass-morphism:has(a[href*="wtec1.com"]) {
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.glass-morphism:has(a[href*="wtec1.com"]) .absolute.inset-0 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(8, 145, 178, 0.1)) !important;
}

.glass-morphism:has(a[href*="wtec1.com"]):hover .absolute.inset-0 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(8, 145, 178, 0.2)) !important;
}

/* Yellow card specific styles */
.glass-morphism:has(a[href*="foundlinkdigital.com"]) {
    border-color: rgba(234, 179, 8, 0.3) !important;
}

.glass-morphism:has(a[href*="foundlinkdigital.com"]) .absolute.inset-0 {
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.1), rgba(234, 88, 12, 0.1)) !important;
}

.glass-morphism:has(a[href*="foundlinkdigital.com"]):hover .absolute.inset-0 {
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.2), rgba(234, 88, 12, 0.2)) !important;
}

/* Ensure text gradients work */
.text-transparent.bg-clip-text {
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Purple text gradient */
.bg-gradient-to-r.from-purple-400.to-pink-400 {
    background: linear-gradient(90deg, rgb(196, 125, 230), rgb(244, 114, 182)) !important;
}

/* Blue text gradient */
.bg-gradient-to-r.from-blue-400.to-cyan-400 {
    background: linear-gradient(90deg, rgb(96, 165, 250), rgb(34, 211, 238)) !important;
}

/* Yellow text gradient */
.bg-gradient-to-r.from-yellow-400.to-orange-400 {
    background: linear-gradient(90deg, rgb(251, 191, 36), rgb(251, 146, 60)) !important;
}

/* Custom animations for Tailwind */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(147, 51, 234, 0.5); }
    100% { box-shadow: 0 0 40px rgba(147, 51, 234, 0.8); }
}

/* Custom classes */
.bg-mesh {
    background: radial-gradient(circle at 25% 25%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.glass-morphism {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 6s;
}

/* Custom animation classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce-gentle {
    animation: bounce-gentle 2s infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Ensure page takes full width */
.wtec1-page {
    background: #111827;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override WordPress theme styles if needed */
.wtec1-page * {
    box-sizing: border-box;
}.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
.wp-block-uagb-marketing-button{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin-bottom:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1;display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__link.wp-block-button__link{width:auto}.wp-block-uagb-marketing-button svg{fill:currentColor;width:20px;height:20px;z-index:1;vertical-align:middle}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button svg{display:inline;vertical-align:middle}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__link{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__link{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after svg{order:2}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__wrap{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:self-end;-ms-flex-align:self-end;align-items:self-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__icon-wrap{order:2}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none;display:inline-block}
.uagb-block-4b1448e0 .uagb-marketing-btn__prefix{font-size: 14px;line-height: 2em;margin-top: 0px;}.uagb-block-4b1448e0.uagb-marketing-btn__icon-after .uagb-marketing-btn__link svg{margin-left: 10px;}.uagb-block-4b1448e0.uagb-marketing-btn__icon-before .uagb-marketing-btn__link svg{margin-right: 10px;}.uagb-block-4b1448e0.uagb-marketing-btn__icon-after .uagb-marketing-btn__icon-wrap svg{margin-left: 10px;}.uagb-block-4b1448e0.uagb-marketing-btn__icon-before .uagb-marketing-btn__icon-wrap svg{margin-right: 10px;}.uagb-block-4b1448e0 .uagb-marketing-btn__title-wrap{align-items: center;}.uagb-block-4b1448e0 .uagb-marketing-btn__title-wrap .uagb-marketing-btn__icon-wrap svg{vertical-align: sub;}.uagb-block-4b1448e0 svg{width: 20px;height: 20px;}.uagb-block-4b1448e0 .uagb-marketing-btn__link.wp-block-button__link{border-top-width: 1px;border-left-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-color: #333;border-style: solid;}.uagb-block-4b1448e0 .uagb-marketing-btn__wrap .uagb-marketing-btn__link{padding-left: 20px;padding-right: 20px;padding-top: 8px;padding-bottom: 8px;border-top-width: 1px;border-left-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-color: #333;border-style: solid;}.uagb-block-4b1448e0 .uagb-marketing-btn__title{font-size: 20px;}@media only screen and (max-width: 976px) {.uagb-block-4b1448e0 .uagb-marketing-btn__prefix{font-size: 14px;}.uagb-block-4b1448e0 .uagb-marketing-btn__link.wp-block-button__link{border-style: solid;border-color: #333;}.uagb-block-4b1448e0 .uagb-marketing-btn__wrap .uagb-marketing-btn__link{padding-left: 20px;padding-right: 20px;padding-top: 8px;padding-bottom: 8px;border-style: solid;border-color: #333;}.uagb-block-4b1448e0 .uagb-marketing-btn__title{font-size: 20px;}}@media only screen and (max-width: 767px) {.uagb-block-4b1448e0 .uagb-marketing-btn__prefix{font-size: 14px;}.uagb-block-4b1448e0.wp-block-uagb-marketing-button.wp-block-button .uagb-marketing-btn__link{border-style: solid;border-color: #333;}.uagb-block-4b1448e0 .uagb-marketing-btn__wrap .uagb-marketing-btn__link{padding-left: 20px;padding-right: 20px;padding-top: 8px;padding-bottom: 8px;border-style: solid;border-color: #333;}.uagb-block-4b1448e0 .uagb-marketing-btn__title{font-size: 20px;}}