/* ================================================================
   NEWS-EVENTS.CSS — Premium News & Events Page Styles
   20 Microns | news-events.php
   Theme: #7FA69B Sage Green | Font: Exo 2
   Matches: company.php, investors.php, products.php design language
   ================================================================ */

html:has(body.page-news-events) { overflow-x: clip; }
body.page-news-events { overflow-x: clip; }

/* ================================================================
   HERO SECTION — 85vh, Dark Premium
   ================================================================ */
.ne-hero {
    min-height: 85vh;
    background: linear-gradient(145deg, #08121c 0%, #0f1923 42%, #142030 76%, #09131d 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 96px 0 24px;
}

.ne-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(8,18,28,0) 0%, rgba(8,18,28,0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Grid overlay */
.ne-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(127,166,155,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127,166,155,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: neGridDrift 24s linear infinite;
    z-index: 0;
}
@keyframes neGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-64px, -64px); }
}

/* Glow orbs */
.ne-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.ne-hero-glow.g1 {
    width: 700px; height: 700px;
    top: -240px; right: -120px;
    background: radial-gradient(circle, rgba(127,166,155,0.13) 0%, transparent 65%);
    filter: blur(60px);
    animation: neGlowPulse 8s ease-in-out infinite alternate;
}
.ne-hero-glow.g2 {
    width: 440px; height: 440px;
    bottom: -160px; left: -80px;
    background: radial-gradient(circle, rgba(127,166,155,0.09) 0%, transparent 65%);
    filter: blur(50px);
    animation: neGlowPulse 10s ease-in-out infinite alternate-reverse;
}
.ne-hero-glow.g3 {
    width: 320px; height: 320px;
    top: 40%; left: 40%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(127,166,155,0.06) 0%, transparent 70%);
    filter: blur(42px);
    animation: neGlowPulse 6s ease-in-out infinite alternate;
    animation-delay: -3s;
}
@keyframes neGlowPulse {
    0% { opacity: 0.55; transform: scale(0.94); }
    100% { opacity: 1; transform: scale(1.08); }
}

/* Floating particles */
.ne-hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.ne-hero-particles span {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(127,166,155,0.5);
    border-radius: 50%;
    animation: nePtFade 4s ease-in-out infinite;
}
.ne-hero-particles span:nth-child(1)  { top: 20%; left: 15%; animation-delay: 0s; }
.ne-hero-particles span:nth-child(2)  { top: 60%; left: 8%;  animation-delay: 0.6s; }
.ne-hero-particles span:nth-child(3)  { top: 35%; left: 55%; animation-delay: 1.2s; }
.ne-hero-particles span:nth-child(4)  { top: 75%; left: 38%; animation-delay: 1.8s; }
.ne-hero-particles span:nth-child(5)  { top: 15%; left: 72%; animation-delay: 0.4s; }
.ne-hero-particles span:nth-child(6)  { top: 50%; left: 88%; animation-delay: 2.4s; }
.ne-hero-particles span:nth-child(7)  { top: 82%; left: 65%; animation-delay: 1.0s; }
.ne-hero-particles span:nth-child(8)  { top: 28%; left: 92%; animation-delay: 3.0s; }
@keyframes nePtFade {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

.ne-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.ne-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 56px;
    align-items: center;
}

/* === Hero Copy === */
.ne-hero-copy { max-width: 640px; }

.ne-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(127,166,155,0.12);
    border: 1px solid rgba(127,166,155,0.25);
    border-radius: 50px;
    padding: 6px 16px;
    color: #7fa69b;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.ne-hero-badge-dot {
    width: 7px; height: 7px;
    background: #7fa69b;
    border-radius: 50%;
    animation: neDotPulse 2s ease-in-out infinite;
}
@keyframes neDotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(127,166,155,0.7); }
    50% { box-shadow: 0 0 0 6px rgba(127,166,155,0); }
}

.ne-hero-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.ne-hero-title .accent { color: #7fa69b; }

.ne-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 520px;
}

.ne-hero-line {
    display: block;
    width: 56px; height: 3px;
    background: linear-gradient(90deg, #7fa69b, transparent);
    margin-bottom: 36px;
    border-radius: 2px;
}

.ne-hero-stats {
    display: flex;
    gap: 0;
    align-items: stretch;
}
.ne-hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(127,166,155,0.14);
    border-right: none;
}
.ne-hero-stat:first-child { border-radius: 12px 0 0 12px; }
.ne-hero-stat:last-child { border-radius: 0 12px 12px 0; border-right: 1px solid rgba(127,166,155,0.14); }

.ne-hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ne-hero-stat-num span { font-size: 1.2rem; color: #7fa69b; }
.ne-hero-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 5px;
}

/* === Hero Visual (Orbit) === */
.ne-hero-visual-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ne-hero-visual {
    position: relative;
    width: 380px; height: 380px;
}

/* Orbit rings */
.ne-visual-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(127,166,155,0.18);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.ne-visual-orbit.o1 {
    width: 280px; height: 280px;
    border-style: dashed;
    animation: neOrbitSpin 28s linear infinite;
}
.ne-visual-orbit.o2 {
    width: 190px; height: 190px;
    border-color: rgba(127,166,155,0.25);
    animation: neOrbitSpin 18s linear infinite reverse;
}
.ne-visual-orbit.o3 {
    width: 360px; height: 360px;
    border-color: rgba(127,166,155,0.08);
    animation: neOrbitSpin 42s linear infinite;
}
@keyframes neOrbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center core */
.ne-visual-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    background: linear-gradient(135deg, rgba(127,166,155,0.2), rgba(127,166,155,0.08));
    border-radius: 50%;
    border: 2px solid rgba(127,166,155,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(127,166,155,0.2), inset 0 0 30px rgba(127,166,155,0.1);
    animation: neCoreGlow 4s ease-in-out infinite alternate;
}
.ne-visual-core i {
    font-size: 2.2rem;
    color: #7fa69b;
}
@keyframes neCoreGlow {
    0% { box-shadow: 0 0 30px rgba(127,166,155,0.15), inset 0 0 20px rgba(127,166,155,0.08); }
    100% { box-shadow: 0 0 60px rgba(127,166,155,0.35), inset 0 0 40px rgba(127,166,155,0.15); }
}

/* Orbit nodes */
.ne-visual-node {
    position: absolute;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13,24,40,0.95) 0%, rgba(20,36,56,0.90) 100%);
    border: 1px solid rgba(127,166,155,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7fa69b;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    top: 50%; left: 50%;
}
.ne-visual-node.n1 { transform: translate(-50%, -50%) translate(0, -140px); }
.ne-visual-node.n2 { transform: translate(-50%, -50%) translate(140px, 0); }
.ne-visual-node.n3 { transform: translate(-50%, -50%) translate(0, 140px); }
.ne-visual-node.n4 { transform: translate(-50%, -50%) translate(-140px, 0); }

/* Orbit float cards */
.ne-visual-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(10,22,40,0.96), rgba(17,34,56,0.92));
    border: 1px solid rgba(127,166,155,0.25);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    white-space: nowrap;
    animation: neCardFloat 5s ease-in-out infinite alternate;
}
.ne-visual-card.c1 { top: 12%; right: 0; animation-delay: 0s; }
.ne-visual-card.c2 { bottom: 18%; left: 0; animation-delay: -2.5s; }
@keyframes neCardFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
.ne-visual-card-label { font-size: 0.68rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
.ne-visual-card-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.ne-visual-card-value span { color: #7fa69b; font-size: 1rem; }

/* Scroll indicator */
.ne-hero-scroll {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.3);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 3;
}
.ne-hero-scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(180deg, rgba(127,166,155,0.6), transparent);
    animation: neScrollAnim 2s ease-in-out infinite;
}
@keyframes neScrollAnim {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

/* ================================================================
   EVENTS BODY
   ================================================================ */
.ne-body {
    padding: 80px 0 0;
    background: #f8fafc;
}
.ne-body .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Section header */
.ne-section-header {
    text-align: center;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.ne-section-header.visible { opacity: 1; transform: translateY(0); }

.ne-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(127,166,155,0.1);
    border: 1px solid rgba(127,166,155,0.3);
    border-radius: 50px;
    padding: 5px 15px;
    color: #5a8a7f;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ne-section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.ne-section-title .accent { color: #7fa69b; }
.ne-section-subtitle {
    font-size: 1rem;
    color: #6b7a8d;
    line-height: 1.6;
}

/* ================================================================
   TAB SWITCHER
   ================================================================ */
.ne-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 52px;
}
.ne-tabs {
    display: inline-flex;
    background: #fff;
    border: 1px solid rgba(127,166,155,0.2);
    border-radius: 14px;
    padding: 5px;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(10,22,40,0.08);
}
.ne-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #6b7a8d;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}
.ne-tab-btn i { font-size: 1rem; }
.ne-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px; height: 22px;
    padding: 0 7px;
    background: rgba(127,166,155,0.15);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #7fa69b;
    transition: all 0.3s;
}
.ne-tab-btn.active {
    background: linear-gradient(135deg, #0a1628, #142030);
    color: #fff;
    box-shadow: 0 8px 24px rgba(10,22,40,0.22);
}
.ne-tab-btn.active .ne-tab-count {
    background: rgba(127,166,155,0.25);
    color: #7fa69b;
}
.ne-tab-btn.active.upcoming-btn { background: linear-gradient(135deg, #0a1628, #1a2e4a); }
.ne-tab-btn.active.past-btn { background: linear-gradient(135deg, #1a1a2a, #0f1520); }

/* ================================================================
   EVENTS PANEL
   ================================================================ */
.ne-events-panel { display: none; }
.ne-events-panel.active { display: block; }

/* ================================================================
   EVENT CARDS GRID
   ================================================================ */
.ne-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.ne-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,22,40,0.07);
    border: 1px solid rgba(127,166,155,0.1);
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    opacity: 0;
    transform: translateY(28px);
}
.ne-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.ne-card:hover {
    box-shadow: 0 20px 56px rgba(10,22,40,0.14);
    transform: translateY(-6px);
    border-color: rgba(127,166,155,0.3);
}

/* Upcoming card glow */
.ne-card.is-upcoming {
    border-color: rgba(127,166,155,0.35);
}
.ne-card.is-upcoming::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 2px rgba(127,166,155,0.15);
    pointer-events: none;
    z-index: 10;
    animation: neUpcomingGlow 3s ease-in-out infinite alternate;
}
@keyframes neUpcomingGlow {
    0% { box-shadow: 0 0 0 2px rgba(127,166,155,0.12); }
    100% { box-shadow: 0 0 20px 2px rgba(127,166,155,0.28); }
}

/* Card image area */
.ne-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.ne-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ne-card:hover .ne-card-img-wrap img { transform: scale(1.06); }
.ne-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2e50 100%);
}
.ne-card-img-placeholder i { font-size: 3rem; color: rgba(127,166,155,0.3); }

/* Image overlay */
.ne-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,18,28,0.1) 0%, rgba(8,18,28,0.6) 100%);
    pointer-events: none;
}

/* Status badge */
.ne-card-status {
    position: absolute;
    top: 14px; left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    z-index: 5;
}
.ne-card-status.upcoming {
    background: rgba(127,166,155,0.88);
    color: #0a1628;
}
.ne-card-status.upcoming .dot {
    width: 6px; height: 6px;
    background: #0a1628;
    border-radius: 50%;
    animation: neDotBlink 1.5s ease-in-out infinite;
}
@keyframes neDotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.ne-card-status.past {
    background: rgba(10,22,40,0.75);
    color: rgba(255,255,255,0.85);
}

/* Date badge */
.ne-card-date-badge {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(10,22,40,0.88);
    border: 1px solid rgba(127,166,155,0.35);
    border-radius: 12px;
    padding: 8px 14px;
    text-align: center;
    backdrop-filter: blur(8px);
    z-index: 5;
    min-width: 60px;
}
.ne-card-date-badge .day {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ne-card-date-badge .mon {
    font-size: 0.68rem;
    font-weight: 700;
    color: #7fa69b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ne-card-date-badge .yr {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.45);
}

/* Card body */
.ne-card-body {
    padding: 22px 22px 24px;
}

.ne-card-type {
    display: inline-block;
    background: rgba(127,166,155,0.1);
    color: #5a8a7f;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.ne-card-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.06rem;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.4;
    margin-bottom: 14px;
}

.ne-card-meta { display: flex; flex-direction: column; gap: 7px; }

.ne-card-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.82rem;
    color: #6b7a8d;
    line-height: 1.4;
}
.ne-card-meta-row i {
    color: #7fa69b;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
    width: 14px;
    text-align: center;
}

.ne-card-divider {
    height: 1px;
    background: rgba(127,166,155,0.15);
    margin: 14px 0;
}

/* Upcoming card action button */
.ne-card-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #0a1628, #142030);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 14px;
}
.ne-card-action:hover {
    background: linear-gradient(135deg, #7fa69b, #5a8a7f);
    color: #0a1628;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(127,166,155,0.3);
}

/* Featured card (first upcoming spans 2 columns) */
.ne-card.featured-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}
.ne-card.featured-card .ne-card-img-wrap {
    height: 100%;
    min-height: 280px;
    border-radius: 0;
}
.ne-card.featured-card .ne-card-title { font-size: 1.3rem; }
.ne-card.featured-card .ne-card-body { padding: 30px 28px; display: flex; flex-direction: column; justify-content: center; }

/* Empty state */
.ne-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    color: #6b7a8d;
}
.ne-empty-state i {
    font-size: 3.5rem;
    color: rgba(127,166,155,0.35);
    display: block;
    margin-bottom: 18px;
}
.ne-empty-state h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 8px;
}
.ne-empty-state p {
    font-size: 0.92rem;
    color: #6b7a8d;
    max-width: 360px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Body end spacing */
.ne-body-end { height: 72px; background: #f8fafc; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .ne-hero-visual-wrap { display: none; }
    .ne-hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .ne-hero-copy { max-width: 100%; }

    .ne-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .ne-card.featured-card {
        grid-column: span 2;
        grid-template-columns: 1.1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ne-hero { min-height: 70vh; padding: 100px 0 48px; }

    .ne-hero-stats { flex-wrap: wrap; justify-content: center; }
    .ne-hero-stat { min-width: 120px; flex: 0 0 calc(33% - 2px); }
    .ne-hero-stat:first-child  { border-radius: 12px 0 0 0; }
    .ne-hero-stat:last-child   { border-radius: 0 12px 0 0; }
    .ne-hero-stat:nth-child(2) { border-radius: 0; }

    .ne-tabs { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .ne-tabs-wrap { padding: 0 20px; }
    .ne-tab-btn { justify-content: center; padding: 12px 20px; }

    .ne-cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .ne-card.featured-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .ne-card.featured-card .ne-card-img-wrap { min-height: 220px; height: 220px; }

    .ne-section-title { font-size: 1.5rem; }
    .ne-body { padding: 60px 0 0; }
    .ne-body .container { padding: 0 16px; }
}

@media (max-width: 480px) {
    .ne-hero-title { font-size: 2rem; }
    .ne-hero-badge { font-size: 0.7rem; }
    .ne-hero-subtitle { font-size: 0.95rem; }
    .ne-hero { padding: 90px 0 36px; }

    .ne-section-title { font-size: 1.6rem; }
    .ne-body { padding: 56px 0 0; }

    .ne-card-img-wrap { height: 190px; }
    .ne-tab-btn { padding: 11px 20px; font-size: 0.85rem; }
}

