/* Add custom CSS here Created for YOOTHEME_WGM child theme */

/* Reduce margin on ZOO category heading */
.uk-hr, hr {
    overflow: hidden;
    text-align: inherit;
    margin: 0 0 10px 0; /* Change margin to 0 0 3px 0 */
    border: 0;
    border-top: 1px solid #ededed;
}

/* Add margin to elements following ZOO category heading */
*+.uk-hr, *+hr {
    margin-top: 3px;
    color: red;
}

/* Add red ">" before unordered list */
.uk-list ul li::marker {
    content: "> ";
    font-family: inherit;
    line-height: inherit;
    font-size: 1.125em;
    font-weight: 800;
    display: inline-block;
    color: #db0720;
    margin-right: 0.375rem;
    top: 1px;
    position: relative;
}

/* Applies basic styling to all elements with the uk-card class */
.uk-card {
    position: relative;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,.1); /* Add subtle box shadow */
    transition: transform .2s ease-out; /* Add transition effect */
}

/* Applies additional styling to elements with the uk-card class when they are hovered over */
.uk-card:hover {
    transform: scale(1.02); /* Add "POP effect" */
    box-shadow: 0 10px 20px rgba(0,0,0,.3); /* Add more prominent box shadow */
}

/* Applies default styling to elements with the uk-card-default class */
.uk-card-default {
    background-color: #fff;
    color: #444;
    box-shadow: 2px 5px 10px rgba(0,0,0,.02);
}

/* Applies padding to the content of elements with the uk-card-body class */
.uk-card-body {
    padding: 20px;
}
