.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.featured-post {
    display: flex;
    flex-direction: row-reverse;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    height: 300px;
    transition: all 0.3s ease;
}

.featured-post-link:hover .featured-post {
    border-color: #eb610e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.featured-post-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

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

.featured-post-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-post-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #333333;
    margin: 0 0 16px 0;
}

.featured-post-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.featured-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999999;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2F4269;
    transition: color 0.3s ease;
}

.read-more svg {
    transition: transform 0.3s ease;
}

.featured-post-link:hover .read-more {
    color: #eb610e;
}

.featured-post-link:hover .read-more svg {
    transform: translateX(4px);
}

.small-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.small-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.small-post {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.small-post-link:hover .small-post {
    border-color: #eb610e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.small-post-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.small-post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.small-post-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #333333;
    margin: 0 0 12px 0;
}

.small-post-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.small-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.small-post-link:hover .read-more {
    color: #eb610e;
}

.small-post-link:hover .read-more svg {
    transform: translateX(4px);
}

.placeholder {
    pointer-events: none;
    opacity: 0.7;
}

.placeholder .small-post {
    border-color: #f0f0f0;
}

.placeholder .small-post-title,
.placeholder .small-post-excerpt,
.placeholder .post-date {
    color: #cccccc;
}

.placeholder .read-more {
    color: #cccccc;
}

@media (max-width: 1024px) {
    .blog-container {
        max-width: 900px;
        padding: 0 16px;
    }
    
    .featured-post {
        height: 280px;
    }
    
    .featured-post-content {
        padding: 32px;
    }
    
    .featured-post-title {
        font-size: 22px;
    }
    
    .small-posts-grid {
        gap: 24px;
    }
    
    .small-post {
        height: 380px;
    }
    
    .small-post-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-container {
        gap: 24px;
    }
    
    .featured-post {
        flex-direction: column;
        height: auto;
    }
    
    .featured-post-image {
        height: 200px;
        order: 1;
    }
    
    .featured-post-content {
        order: 2;
    }
    
    .featured-post-content {
        padding: 24px;
    }
    
    .featured-post-title {
        font-size: 20px;
    }
    
    .featured-post-excerpt {
        font-size: 15px;
    }
    
    .small-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .small-post {
        height: 360px;
    }
    
    .small-post-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-container {
        padding: 0 12px;
        gap: 20px;
    }
    
    .featured-post-content {
        padding: 20px;
    }
    
    .featured-post-title {
        font-size: 18px;
    }
    
    .featured-post-excerpt {
        font-size: 14px;
    }
    
    .small-posts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .small-post {
        height: 340px;
    }
    
    .small-post-content {
        padding: 16px;
    }
    
    .small-post-title {
        font-size: 16px;
    }
    
    .small-post-excerpt {
        font-size: 13px;
    }
    
    .featured-post-meta,
    .small-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}