.latest-posts-section {
	padding-bottom: 80px;
}

.latest-posts-section .section-title {
    margin-bottom: 40px;
    font-size: 2rem;
}

.latest-posts-section .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.latest-posts-section .post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-posts-section .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.latest-posts-section .post-card:hover .post-card__image img {
    transform: scale(1.05);
}

.latest-posts-section .post-card__image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.latest-posts-section .post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-posts-section .post-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #e9ecef;
    text-decoration: none;
}

.latest-posts-section .placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6c757d;
    font-size: 14px;
}

.latest-posts-section .post-card__content {
    padding: 20px;
}

.latest-posts-section .post-card__title {
    margin: 5px 0 15px 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.latest-posts-section .post-card__title a {
    color: #1f1f1f;
    text-decoration: none;
    transition: .3s;
	font-size: 18px;
}

.latest-posts-section .post-card__title a:hover {
    opacity: .7;
}

.latest-posts-section .post-card__date {
    color: #1f1f1f;
    font-size: 0.875rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .latest-posts-section {
        padding: 40px 0;
    }
    
    .latest-posts-section .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .latest-posts-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .latest-posts-section .post-card__image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .latest-posts-section .post-card__content {
        padding: 15px;
    }
    
    .latest-posts-section .post-card__title {
        font-size: 1.1rem;
    }
    
    .latest-posts-section .post-card__image {
        height: 160px;
    }
}

@media (min-width: 1200px) {
    .latest-posts-section .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#breadcrumbs{
	display: block !important;
}

#breadcrumbs #wid_bc{
	margin-top: 80px;
	display: block !important;
}

@media only screen and (min-width:992px){
	#breadcrumbs #wid_bc{
	margin-top: 120px;
}
}

body:not(.home) main.main section::before{
    top: -40px;
} 

@media only screen and (min-width:992px){
	body:not(.home) main.main section::before{
	top: -60px;
} 
}


ul#wid_bc * {
    color: #626262;
}

body:not(.header-transparent):not(.home) .main {
    padding-top: 0;
}

@media only screen and (max-width: 828px){
    body.single-post:not(.home) main.main section::before {
        top: -68px
    }
}