/* ============================================
   GLOBAL
============================================ */
:root {
    --ntse-primary: #1b325d;
    --ntse-secondary: #28a34a;
    --ntse-dark: #0f1b34;
    --ntse-light: #fafbfd;
}

.lv-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
============================================ */
.lv-archive-hero {
    padding: 110px 0 130px;
    background: linear-gradient(145deg, #0f1b34 0%, #1b325d 60%, #12203c 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.lv-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.lv-hero-mini {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: var(--ntse-secondary);
    font-weight: 700;
}

.lv-hero-title {
    color: white;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    margin: 15px 0;
}

.lv-hero-title span {
    color: var(--ntse-secondary);
}

.lv-hero-desc {
    max-width: 440px;
    font-size: 17px;
    line-height: 1.65;
    opacity: 0.9;
}

/* RIGHT */
.hero-art {
    width: 380px;
    height: 380px;
    position: relative;
}

.hero-art .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(2px);
}

.hero-art .c1 { width: 260px; height: 260px; top: 40px; left: 40px; }
.hero-art .c2 { width: 140px; height: 140px; top: 0; right: 60px; }
.hero-art .c3 { width: 80px; height: 80px; bottom: 30px; right: 110px; }

/* ============================================
   SECTION HEADER
============================================ */
.lv-archive-section {
    padding: 90px 0;
}

.lv-archive-heading {
    text-align: center;
    margin-bottom: 60px;
}

.lv-section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--ntse-primary);
}

.lv-section-sub {
    max-width: 680px;
    margin: 10px auto 0;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

/* ============================================
   GRID
============================================ */
.lv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lv-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #fff;
    height: 100%;
    transition: 0.35s ease;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.lv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.lv-card-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.lv-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.lv-card:hover .lv-card-thumb img {
    transform: scale(1.08);
}

.lv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: 0.35s ease;
}

.lv-card:hover .lv-card-overlay {
    opacity: 1;
}

/* BODY */
.lv-card-content {
    padding: 22px 22px 26px;
}

.lv-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ntse-primary);
    margin: 0 0 10px;
}

.lv-card-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.55;
    min-height: 48px;
}

/* CTA */
.lv-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 600;
    color: var(--ntse-secondary);
    transition: 0.25s ease;
}

.lv-card-more svg {
    transition: 0.25s ease;
}

.lv-card:hover .lv-card-more svg {
    transform: translateX(4px);
}

/* ============================================
   PAGINATION
============================================ */
.lv-archive-pagination {
    margin-top: 50px;
    text-align: center;
}

.page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--ntse-primary);
    border: 1px solid #cfd6e2;
}

.page-numbers.current {
    background: var(--ntse-primary);
    color: #fff;
    border-color: var(--ntse-primary);
}

.page-numbers:hover {
    background: var(--ntse-secondary);
    color: #fff;
    border-color: var(--ntse-secondary);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .lv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-art {
        display: none;
    }
}

@media (max-width: 600px) {
    .lv-grid {
        grid-template-columns: 1fr;
    }

    .lv-hero-title {
        font-size: 34px;
    }

    .lv-card-thumb {
        height: 190px;
    }
}
