.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: 40px;
}

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

.cn-blogs-title {
    font-size: 38px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.cn-blogs-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
}

.cn-featured-blog {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.cn-featured-image {
    flex: 0 0 60%;
    border-radius: 10px;
    overflow: hidden;
    height: 380px;
}

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

.cn-featured-content {
    flex: 0 0 40%;
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cn-featured-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cn-featured-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

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

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

.cn-blog-queue {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

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

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

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

.cn-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    transform: translateY(-50%);
    pointer-events: none;
}

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

.cn-prev {
    margin-left: 10px;
}

.cn-next {
    margin-right: 10px;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cn-featured-blog {
        flex-direction: column;
    }
    
    .cn-featured-image, 
    .cn-featured-content {
        flex: 0 0 100%;
    }
    
    .cn-featured-content {
        padding: 20px 0;
    }
    
    .cn-navigation {
        position: relative;
        transform: none;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 15px;
    }
    
    .cn-prev {
        margin-left: 0;
    }
    
    .cn-next {
        margin-right: 0;
    }
}

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