/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
Text Domain: flatsome
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 16px;
    color: #ffed4a;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #ffed4a !important;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff !important;
}

/* Recent Posts Widget Styling */
.recent-posts li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.post-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.post-info {
    display: flex;
    align-items: center;
}

.post-info a {
    color: #ffed4a !important;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    text-decoration: none;
}

.post-info a:hover {
    color: #ffffff !important;
}



@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}