.cs-other-articles {
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
}
.cs-other-articles__grid {
    overflow: hidden;
}
.cs-other-articles__card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #00B1E1;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
    height: 100%;
}
.cs-other-articles__card:hover {
    box-shadow: 0 8px 24px rgba(0, 100, 127, 0.15);
}
.cs-other-articles__image {
    width: 100%;
    max-height: 332px;
    overflow: hidden;
}
.cs-other-articles__image img {
    width: 100%;
    height: 332px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.cs-other-articles__card:hover .cs-other-articles__image img {
    transform: scale(1.05);
}
.cs-other-articles__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cs-other-articles__category {
    display: inline-block;
    align-self: flex-start;
    background: #E5F7FC;
    color: #005269;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.cs-other-articles__heading {
    color: #00647F;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
    flex: 1;
}
.cs-other-articles__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
	flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
}
.cs-other-articles__author,
.cs-other-articles__date {
    color: #005269;
    font-size: 18px;
    font-weight: 400;
}
.cs-other-articles__author-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cs-other-articles__author-wrap picture,
.cs-other-articles__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.cs-other-articles__author-wrap picture {
    display: flex;
    flex-shrink: 0;
    overflow: hidden;
}
.cs-other-articles__avatar {
    display: block;
    object-position: center center;
    object-fit: cover;
}
/* Swiper pagination */
.cs-other-articles__pagination {
    display: none;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 0 4px;
}
.cs-other-articles__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00B1E1;
    opacity: 0.3;
    transition: all 0.3s;
    flex-shrink: 0;
}
.cs-other-articles__pagination .swiper-pagination-bullet-active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: #00B1E1;
    opacity: 1;
}

@media (min-width: 769px) {
	.cs-other-articles__grid.swiper {
        overflow: visible;
    }
    .cs-other-articles__grid .swiper-wrapper {
        display: flex;
        gap: 24px;
        transform: none !important;
    }
    .cs-other-articles__grid .swiper-slide {
        flex: 1;
        width: auto !important;
    }
}

@media (max-width: 1024px) {
    .cs-other-articles__content {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .cs-other-articles__grid {
        overflow: hidden;
    }
    .cs-other-articles__category {
        margin-bottom: 6px;
    }
    .cs-other-articles__meta {
        gap: 8px;
    }
    .cs-other-articles__pagination {
        display: flex;
    }
}
