.elementor-159 .elementor-element.elementor-element-b1cd592{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-82473c7 *//* --- 5 Column Grid Configuration (Desktop) --- */
.auntmia-cat-grid {
    display: grid !important;
    /* Uses 300px where possible, but switches to fluid columns to fix footer issues */
    grid-template-columns: repeat(5, minmax(300px, 400px)); 
    gap: 5px;
    justify-content: center;
    padding: 20px 0;
    height: auto !important;
    clear: both !important;
   
}

/* Clickable Card Wrapper */
.auntmia-link-wrapper {
    text-decoration: none;
    display: block;
    height: 450px;
    width: 300px;
   
}

/* The Square Image Card */
.auntmia-item {
    width: 100%;
    height: 450px;
       border-radius: 10px;
    border: 1px solid black;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 0px !important;
    overflow: hidden;
    transition: transform 0.3s ease, filter 0.3s ease;
    background-color: #eee;
}

.auntmia-item:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Skeleton Loading (Top to Bottom Shimmer) */
.skeleton {
    background-color: #eee;
    background-image: linear-gradient(
        #eee 0%,
        #fafafa 50%,
        #eee 100%
    );
    background-size: 100% 200%;
    animation: auntmiaShimmer 1.5s infinite linear;
}

@keyframes auntmiaShimmer {
    0% { background-position: 50% 100%; }
    100% { background-position: 50% 0%; }
}

/* Category Tag (Top Right) */
.auntmia-tag {
    position: absolute;
    top: 1px;
    right: 1px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0px;
    letter-spacing: 1px;
}

/* --- Responsive Handling --- */

/* Laptops / Smaller Desktops */
@media (max-width: 1600px) {
    .auntmia-cat-grid { grid-template-columns: repeat(4, 1fr); padding: 0px; }
}

@media (max-width: 1280px) {
    .auntmia-cat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile: 2 Columns Fix */
@media (max-width: 767px) {
    .auntmia-cat-grid { 
        grid-template-columns: repeat(2, 1fr) !important; /* Forces 2 columns */
        gap: 10px;
        padding: 10px;
    }

    .auntmia-link-wrapper, .auntmia-item {
        height: 250px; /* Reduced height for mobile screens to look better */
        width: 100% !important;
    }

    /* Pushes footer to the bottom */
    footer, .site-footer, .elementor-location-footer {
        position: relative !important;
        clear: both !important;
        display: block !important;
    }
}/* End custom CSS */