/*
Theme Name: LW Customize
Description: This is a child theme for Flatsome Theme Develop by Việt Lâm Coder
Author: Việt Lâm Coder
Template: flatsome
Version: 3.0
*/

.absolute-footer,
.page-header-excerpt,
.post_comments {
    display: none !important;
}

/* Breadcrumb Styles */
.post-breadcrumbs,
.archive-breadcrumbs {
    padding: 10px 0;
    font-size: 14px;
}

.post-breadcrumbs nav.breadcrumbs,
.archive-breadcrumbs nav.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.post-breadcrumbs nav.breadcrumbs a,
.archive-breadcrumbs nav.breadcrumbs a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-breadcrumbs nav.breadcrumbs a:hover,
.archive-breadcrumbs nav.breadcrumbs a:hover {
    color: #000;
}

.post-breadcrumbs nav.breadcrumbs .divider,
.archive-breadcrumbs nav.breadcrumbs .divider {
    margin: 0 5px;
    color: #ccc;
    font-size: 12px;
}

.post-breadcrumbs nav.breadcrumbs .current,
.archive-breadcrumbs nav.breadcrumbs .current {
    color: #333;
    font-weight: 500;
}

/* Category and Date Styles for Archive */
.entry-category {
    margin-bottom: 0.5em;
    opacity: 0.7;
}

.entry-category a {
    color: inherit;
    text-decoration: none;
}

.entry-category a:hover {
    opacity: 1;
}

.entry-meta {
    margin-top: 0.5em;
    opacity: 0.8;
}

/* Related Posts Section */
.related-posts-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.related-posts-section .section-title-container {
    margin-bottom: 30px;
}

.related-posts-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.related-posts-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #f39c12;
}

/* Related Posts Slider Styles */
.related-posts-section .flickity-button {
    display: none !important;
}

.related-posts-section .flickity-page-dots {
    bottom: -30px;
}

.related-posts-section .flickity-page-dots .dot {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: #ddd;
}

.related-posts-section .flickity-page-dots .dot.is-selected {
    background: #f39c12;
}

/* Related Posts Content Styles */
.related-posts-section .box {
    box-shadow: none !important;
}

.related-posts-section .box-text {
    padding: 15px 0 0 0;
}

.related-posts-section .cat-label {
    margin-bottom: 8px;
    font-size: 11px;
    color: #666;
}

.related-posts-section .post-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 600;
}

.related-posts-section .post-title a {
    color: #333;
    transition: color 0.3s ease;
}

.related-posts-section .post-title a:hover {
    color: #2c5aa0;
}

.related-posts-section .post-meta {
    margin-bottom: 10px;
    font-size: 12px;
    color: #999;
}

.related-posts-section .from_the_blog_excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.related-posts-section .box-image {
    overflow: hidden;
}

.related-posts-section .box-image img {
    transition: transform 0.3s ease;
}

.related-posts-section .box:hover .box-image img {
    transform: scale(1.05);
}

@media only screen and (max-width: 48em) {
    .related-posts-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .related-posts-section .section-title {
        font-size: 20px;
    }
    
    .related-posts-section .flickity-page-dots {
        bottom: -25px;
    }
}