/* ── General Setup ─────────────────────────────────────── */
.ne-wrapper-9feabeec {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    min-width: 0;
}

/* ── Nav arrows (left column) ──────────────────────────── */
.ne-nav-wrapper-9feabeec {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.ne-nav-btn-9feabeec {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #2b3f4c;
    background-color: transparent;
    color: #2b3f4c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    padding: 0;
    line-height: 1;
}

.ne-nav-btn-9feabeec svg {
    stroke: currentColor;
    display: block;
}

.ne-nav-btn-9feabeec:hover {
    background-color: #2b3f4c;
    color: #fff;
}

.ne-nav-btn-9feabeec:hover svg {
    stroke: #fff;
}

.ne-nav-btn-9feabeec.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ── Swiper area (right column) ────────────────────────── */
.ne-swiper-area-9feabeec {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    position: relative; /* Ensure containment */
}

/* CRITICAL: Force horizontal layout for frontend */
.ne-swiper-area-9feabeec .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    box-sizing: content-box;
}

.ne-swiper-9feabeec {
    width: 100%;
    overflow: hidden;
    padding: 10px 10px 30px 10px; /* space for card shadow */
    margin: -10px -10px -30px -10px; /* negative margin to pull swiper container back */
    list-style: none; /* remove any default list styling */
}

/* Force Swiper slide styles to prevent stacking */
.ne-swiper-9feabeec .swiper-slide {
    flex-shrink: 0;
    height: auto;
    position: relative;
    transition-property: transform;
}

/* ── Scrollbar ─────────────────────────────────────────── */
.ne-scrollbar-9feabeec.swiper-scrollbar {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 4px;
    border-radius: 2px;
    background-color: #e0e0e0;
    cursor: pointer;
    margin-top: 40px; /* spacing between cards and scrollbar */
}

.ne-scrollbar-9feabeec .swiper-scrollbar-drag {
    background-color: #f29c38;
    border-radius: 2px;
    height: 100%;
}

/* ── Card ──────────────────────────────────────────────── */
.ne-card-9feabeec {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.ne-card-9feabeec:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.ne-img-wrap-9feabeec {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.ne-img-wrap-9feabeec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.ne-card-9feabeec:hover .ne-img-wrap-9feabeec img {
    transform: scale(1.05);
}

.ne-content-wrap-9feabeec {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    gap: 12px;
}

.ne-text-9feabeec {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.ne-meta-9feabeec {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f29c38;
}

.ne-title-9feabeec {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2b3f4c;
    line-height: 1.3;
}

.ne-icon-9feabeec {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b3f4c;
    flex-shrink: 0;
}

.ne-icon-9feabeec svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 767px) {
    .ne-wrapper-9feabeec {
        flex-direction: column;
        align-items: stretch;
    }
    .ne-nav-wrapper-9feabeec {
        flex-direction: row;
        justify-content: flex-start;
    }
}
