


/* Main Container */
.csd-sections-container55 {
    padding: 30px 0;
    font-family: 'Arial', sans-serif;
}

/* Section Styling */
.csd-section {
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
 
}

.csd-gray-bg {
    background-color: #f8f9fa;
}

/* Headings */
.csd-heading {
    color: #083b5c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #083b5c;
}

/* Posts Container */
.csd-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Post Items */
.csd-post {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.csd-post-featured {
    display: flex;
/*     flex-direction: column; */
    gap: 20px;
}

/* Image Left Layout */
.csd-post.csd-image-left {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.csd-post.csd-image-left .csd-post-img {
    flex: 0 0 40%;
    max-width: 40%;
}

.csd-post.csd-image-left .csd-post-content {
    flex: 1;
}

/* Post Image */
.csd-post-img {
    overflow: hidden;
    border-radius: 6px;
}

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

.csd-post:hover .csd-post-img img {
    transform: scale(1.03);
}

/* Post Content */
.csd-post-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.csd-post-content h3 a {
    color: #083b5c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.csd-post-content h3 a:hover {
    color: #0a4b75;
    text-decoration: underline;
}

.csd-post-date {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.csd-post-content p {
    color: #495057;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Featured Blog Specific Styles */
.csd-featured-blog .csd-post-content h3 {
    font-size: 22px;
}

.csd-featured-blog .csd-post-content p {
    font-size: 16px;
}

/* See More Link */
.csd-see-more {
    margin-top: 20px;
    text-align: right;
}

.csd-see-more a {
    color: #083b5c;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.csd-see-more a:hover {
    color: #0a4b75;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .csd-post.csd-image-left {
        flex-direction: column;
    }
    
    .csd-post.csd-image-left .csd-post-img {
        flex: 1;
        max-width: 100%;
    }
    
    .csd-section {
        padding: 20px 15px;
    }
    
    .csd-heading {
        font-size: 20px;
    }
}






