.cn-blogs-section {
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.cn-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cn-blogs-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cn-blogs-nav-column {
    flex: 0 0 120px;
}

.cn-blogs-content-column {
    flex: 1;
    padding-left: 20px;
}

.cn-blogs-nav {
    color: #5e72e4;
    font-size: 16px;
}

.cn-blogs-title {
    font-size: 36px;
    font-weight: 500;
    color: #444;
    margin: 0 0 15px 0;
}

.cn-blogs-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 800px;
    color: #666;
}

@media (max-width: 768px) {
    .cn-blogs-header {
        flex-direction: column;
    }
    
    .cn-blogs-nav-column {
        margin-bottom: 10px;
    }
    
    .cn-blogs-content-column {
        padding-left: 0;
    }
}

/* Two column layout */
.cn-blog-content-area {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

/* Left column - Featured image */
.cn-blog-left-column {
    flex: 0 0 60%;
}

.cn-featured-image {
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
    position: relative;
    width: 100%;
}

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

/* Navigation buttons positioned at bottom of section */
.cn-navigation {
    text-align: center;
    margin-top: 20px;
}

.cn-nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin: 0 5px;
}

.cn-nav-button:hover {
    background-color: #f5f5f5;
}

/* Right column - Content and queue */
.cn-blog-right-column {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}

.cn-featured-content {
    margin-bottom: 25px;
}

.cn-featured-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #333;
}

.cn-featured-excerpt {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #666;
}

.cn-read-more {
    color: #5e72e4;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
}

.cn-read-more:hover {
    text-decoration: underline;
}

/* Upcoming posts */
.cn-blog-queue {
    display: flex;
    gap: 15px;
}

.cn-queue-item {
    flex: 1;
    max-width: calc(50% - 8px);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s;
    cursor: pointer;
    height: 130px;
}

.cn-queue-item:hover {
    opacity: 0.9;
}

.cn-queue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cn-blog-content-area {
        flex-direction: column;
    }
    
    .cn-blog-left-column,
    .cn-blog-right-column {
        flex: 0 0 100%;
    }
    
    .cn-featured-image {
        height: 300px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .cn-blogs-title {
        font-size: 28px;
    }
    
    .cn-featured-image {
        height: 220px;
    }
    
    .cn-blog-queue {
        flex-direction: column;
        gap: 10px;
    }
    
    .cn-queue-item {
        max-width: 100%;
        height: 150px;
    }
}