/* NETA Insights articles slider (LinkedIn-style, smaller cards) */
.neta-articles-slider {
    margin: 1.75rem 0 0.5rem;
}

.neta-articles-slider__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.neta-articles-slider__count {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.neta-articles-slider__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.neta-articles-slider__btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.neta-articles-slider__btn:hover:not(.swiper-button-disabled) {
    background: #1a3c5e;
    border-color: #1a3c5e;
    color: #fff;
}

.neta-articles-slider__btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.neta-articles-slider__panel {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 16px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
    padding: 20px 18px 16px;
    overflow: hidden;
}

.neta-articles-slider__state {
    text-align: center;
    padding: 36px 12px;
    color: #888;
    font-size: 14px;
}

.neta-articles-slider__state--error {
    color: #b02a37;
}

.neta-articles-swiper {
    overflow: hidden;
    width: 100%;
}

.neta-articles-swiper .swiper-slide {
    height: auto;
}

.neta-articles-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8eaf0 !important;
    outline: none !important;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    background: #fff;
    height: 100%;
    min-height: 310px;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neta-articles-card:hover,
.neta-articles-card:focus,
.neta-articles-card:active,
.neta-articles-card:visited {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
    color: inherit !important;
    text-decoration: none !important;
    border: 1px solid #e8eaf0 !important;
    outline: none !important;
}

/* Override service-page dashed link underline on article cards */
.csi-service-reveal .service-details-left-area a.neta-articles-card,
.csi-service-reveal .service-details-left-area a.neta-articles-card:hover,
.csi-service-reveal .service-details-left-area a.neta-articles-card:focus,
.service-details-left-area a.neta-articles-card,
.neta-articles-slider a.neta-articles-card {
    border-bottom: 1px solid #e8eaf0 !important;
    text-decoration: none !important;
    background-image: none !important;
    color: inherit !important;
}

.neta-articles-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}

.neta-articles-card__body {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.neta-articles-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.neta-articles-card__tag {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    background: #eef3fb;
    color: #1a3c5e;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.neta-articles-card__title {
    font-weight: 700;
    color: #1a1f36;
    font-size: 1.28rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.neta-articles-card__footer {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.neta-articles-card__date {
    color: #999;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.neta-articles-card__more {
    font-weight: 600;
    font-size: 13px;
    color: #1a3c5e;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.neta-articles-pagination {
    text-align: center;
    margin-top: 14px;
    line-height: 1;
}

.neta-articles-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d1d5db;
    opacity: 1;
    margin: 0 3px;
    transition: background 0.2s, transform 0.2s, width 0.2s;
    cursor: pointer;
}

.neta-articles-pagination .swiper-pagination-bullet-active {
    background: #1a3c5e;
    transform: scale(1.2);
    width: 16px;
    border-radius: 4px;
}

@media (max-width: 575px) {
    .neta-articles-card {
        min-height: 280px;
    }

    .neta-articles-card__title {
        font-size: 1.15rem;
    }

    .neta-articles-slider__panel {
        padding: 14px 12px 12px;
        border-radius: 12px;
    }
}
