/* Featured Posts Section */
.featured-posts-section {
    margin-bottom: 32px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    margin-top: 10px;
    z-index: 5;
}

/* .heading-title:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 100px;*/
/*    height: 3px;*/
/*    background-color: #ffd54f;*/
/*} */

.heading-title {
    font-family: var(--font-fz-poppins);
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.heading-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #FFD600;
    border-radius: 2px;
    transform: scaleX(1);
    transform-origin: center;
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.heading-title:hover:after {
    background: #FFC400;
    height: 6px;
}
.section-subtitle {
    font-family: var(--font-fz-poppins);
    font-size: 24px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 0;
}

/* .section-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f6c945;
} */

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.view-more {
    display: flex;
    align-items: center;
    color: #362921;
    font-family: var(--font-fz-poppins);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.view-more:hover {
    color: #e6b935;
}

.view-more:hover i {
    transform: translateX(3px);
}

.featured-posts-row {
    display: flex;
    flex-wrap: wrap;
}

.featured-posts-row > div {
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.featured-posts-row .featured-post-large {
    height: 100%;
}

.post-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.post-link:hover {
    color: inherit;
    text-decoration: none;
}

.post-link:hover .post-content h3, 
.post-link:hover .post-title-overlay h3 {
    color: #f6c945;
}

.featured-post-large {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.featured-post-large:hover {
    transform: translateY(-5px);
}

.featured-post-large .post-image {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.featured-post-large .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-large .post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}

.featured-post-large .post-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.featured-post-large .post-title-overlay h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.featured-post-small {
    display: flex;
    background: #fff;
    margin-bottom: 15px;
    padding: 0;
    transition: all 0.3s ease;
    height: auto;
    max-height: 110px;
    overflow: hidden;
}

.featured-post-small:hover {
    transform: translateY(-3px);
}

.featured-post-small .post-link {
    display: flex;
    width: 100%;
    padding: 0;
}

.featured-post-small .post-image {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    flex-basis: 110px;
    border-radius: 0;
    overflow: hidden;
    margin-right: 0;
}

.featured-post-small .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-small .post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 5px 15px;
}

.featured-post-small .post-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.featured-post-small .post-content p {
    font-size: 13px;
    margin-bottom: 5px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-post-small .post-meta {
    color: #888;
    font-size: 12px;
    margin-top: auto;
}

.post-date {
    color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-posts-section {
        margin-top: 30px;
    }
    
    .section-heading .heading-title {
        font-size: 28px;
    }
    
    .featured-posts-row > div {
        padding: 0 10px;
    }
    
    .featured-post-large {
        height: 450px;
    }
    
    .section-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .featured-posts-section {
        margin-top: 20px;
    }
    
    .section-heading .heading-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .featured-post-large {
        margin-bottom: 20px;
        height: 400px;
    }
    
    .featured-post-small {
        height: auto;
    }
    
    .featured-posts-row > div {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .section-heading .heading-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .featured-post-small .post-image {
        width: 70px;
        height: 70px;
    }
    .featured-post-small .post-content h3 {
        font-size: 12px;
    }
    .featured-post-small .post-content p{
        font-size: 8px;
    }
    .featured-posts-section{
        font-size: 12px;
        margin-top: 15px;
    }
    .featured-posts-row > div {
        min-height: auto;
        padding: 0 15px 15px 15px !important;
    }
    .featured-post-large .post-title-overlay h3 {
        font-size: 18px;
    }
} 