/*
 Theme Name:       UW WordPress Theme - Child Theme
 Theme URI:        https://github.com/uweb/uw_wp_theme_child
 GitHub Theme URI: https://github.com/uweb/uw_wp_theme_child
 Primary Branch:   main
 Author:           UW Web Team
 Author URI:       https://github.com/uweb
 Description:      A child theme based on the UW WordPress Theme
 Template:         uw_wp_theme
 Version:          1.1
 License:          GNU General Public License v2 or later
 License URI:      http://www.gnu.org/licenses/gpl-2.0.html
 Tags:             two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:      uw_wp_theme_child
*/


.navbar.white-bar .navbar-nav.classic-menu-nav .nav-item.dropdown .dropdown-menu .nav-item{
       display:block;
}
.navbar.white-bar .navbar-nav.classic-menu-nav .nav-item.dropdown .dropdown-menu .nav-item .menu-item-has-children{
	display:inline-block;
}

/*card layout*/

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:20px
}

.card {
    flex: 1 1 33.333%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
    min-height: 300px;
}
#icbCards-1 .card:hover img{
    transform:scale(1);
    transform:none;
} 
.card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.5);
    z-index: 1;
}

.card h2 {
    background-color: #f0f0f0;
    margin: 0;
    padding: 10px;
    font-size: 1.2em;
}
.page-id-299 figure {
	float: right;
	padding: 12px 0 12px 25px;
	width: 200px;
	height: auto;
	clear: both;
}

/* 📱 Responsive: Full width under 720px */
@media (max-width: 720px) {
    .card {
        flex: 0 0 100%;
    }
}
