/*
 * News & Updates Manager - Frontend Styles
 * Editorial Magazine Design with Bold Typography
 */

:root {
    --num-primary: #1a1a2e;
    --num-secondary: #e94560;
    --num-accent: #0f3460;
    --num-light: #f8f9fa;
    --num-dark: #16213e;
    --num-text: #2d3748;
    --num-border: #e2e8f0;
    --num-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --num-shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --num-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --num-spacing: clamp(1rem, 4vw, 2rem);
}

/* Google Fonts: Playfair Display for headlines, Source Serif for body */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Serif+4:wght@300;400;600;700&display=swap');

/* Base Styles */
.num-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--num-spacing);
}

/* Archive Header */
.num-archive-wrapper {
    background: var(--num-light);
    min-height: 100vh;
    padding-bottom: 80px;
}

.num-archive-header {
    background: linear-gradient(135deg, var(--num-primary) 0%, var(--num-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.num-archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.num-archive-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.num-archive-description {
    font-family: 'Source Serif 4', serif;
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Filter Bar */
.num-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: -40px 0 60px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--num-shadow);
    position: relative;
    z-index: 10;
}

.num-filter-btn {
    font-family: 'Source Serif 4', serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid var(--num-border);
    background: white;
    color: var(--num-text);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.num-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--num-secondary);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.num-filter-btn:hover::before,
.num-filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.num-filter-btn:hover,
.num-filter-btn.active {
    color: white;
    border-color: var(--num-secondary);
    transform: translateY(-2px);
}

/* News Grid */
.num-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.num-layout-list .num-news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

/* News Card */
.num-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--num-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.num-card:nth-child(1) { animation-delay: 0.1s; }
.num-card:nth-child(2) { animation-delay: 0.2s; }
.num-card:nth-child(3) { animation-delay: 0.3s; }
.num-card:nth-child(4) { animation-delay: 0.4s; }
.num-card:nth-child(5) { animation-delay: 0.5s; }
.num-card:nth-child(6) { animation-delay: 0.6s; }

.num-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--num-shadow-hover);
}

.num-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: block;
}

.num-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.num-card:hover .num-card-image img {
    transform: scale(1.08);
}

.num-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.num-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.num-category-badge {
    font-family: 'Source Serif 4', serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--num-secondary), #ff6b9d);
    color: white;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.num-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.num-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
}

.num-card-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    background-image: linear-gradient(to right, var(--num-secondary), var(--num-secondary));
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}

.num-card-title a:hover {
    background-size: 100% 2px;
    color: var(--num-secondary);
}

.num-event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
    margin-bottom: 16px;
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.num-date-day {
    font-size: 1.5rem;
    font-weight: 700;
}

.num-date-month,
.num-date-year {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.num-card-excerpt {
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--num-text);
    margin-bottom: 24px;
    flex: 1;
}

.num-read-more {
    font-family: 'Source Serif 4', serif;
    font-weight: 700;
    color: var(--num-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.num-read-more:hover {
    gap: 12px;
    color: var(--num-primary);
}

/* Latest News Section (Homepage) */
.num-latest-news {
    padding: 80px 0;
    background: var(--num-light);
}

.num-latest-header {
    text-align: center;
    margin-bottom: 60px;
}

.num-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--num-primary);
    margin: 0;
    position: relative;
    display: inline-block;
}

.num-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--num-gradient);
    border-radius: 2px;
}

.num-latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.num-featured-card {
    grid-column: span 2;
}

.num-latest-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--num-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.num-latest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--num-shadow-hover);
}

.num-latest-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.num-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.num-latest-card:hover .num-latest-image img {
    transform: scale(1.05);
}

.num-latest-content {
    padding: 28px;
}

.num-latest-date {
    font-family: 'Source Serif 4', serif;
    font-size: 0.9rem;
    color: var(--num-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.num-latest-category {
    font-family: 'Source Serif 4', serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--num-accent);
    display: inline-block;
    margin-bottom: 12px;
}

.num-latest-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.num-latest-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-latest-title a:hover {
    color: var(--num-secondary);
}

.num-featured-card .num-latest-title {
    font-size: 2.5rem;
}

.num-latest-excerpt {
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--num-text);
}

/* Vertical List Style (Exact Match to Image) */
.num-vertical-style {
    background: white;
    padding: 0;
}

.num-vertical-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.num-vertical-item {
    display: flex;
    gap: 40px;
    padding: 28px 0;
    border-top: 3px solid #f4a261;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
}

.num-vertical-item:nth-child(1) { animation-delay: 0.1s; }
.num-vertical-item:nth-child(2) { animation-delay: 0.2s; }
.num-vertical-item:nth-child(3) { animation-delay: 0.3s; }
.num-vertical-item:nth-child(4) { animation-delay: 0.4s; }
.num-vertical-item:nth-child(5) { animation-delay: 0.5s; }
.num-vertical-item:nth-child(6) { animation-delay: 0.6s; }
.num-vertical-item:nth-child(7) { animation-delay: 0.7s; }
.num-vertical-item:nth-child(8) { animation-delay: 0.8s; }
.num-vertical-item:nth-child(9) { animation-delay: 0.9s; }
.num-vertical-item:nth-child(10) { animation-delay: 1s; }

.num-vertical-item:hover {
    background: rgba(244, 162, 97, 0.05);
}

.num-vertical-date {
    flex-shrink: 0;
    width: 70px;
    text-align: left;
    padding-top: 2px;
}

.num-vdate-month {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.num-vdate-day {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #f4a261;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.num-vdate-year {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.3px;
}

.num-vertical-content {
    flex: 1;
    padding-top: 2px;
}

.num-vertical-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px;
    color: #1f2937;
}

.num-vertical-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-vertical-title a:hover {
    color: #f4a261;
}

.num-vertical-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

.num-vertical-location,
.num-vertical-time {
    display: block;
}

.num-vertical-location::before,
.num-vertical-time::before {
    content: none;
}

/* Responsive for vertical list */
@media (max-width: 768px) {
    .num-vertical-item {
        gap: 24px;
        padding: 20px 0;
    }
    
    .num-vertical-date {
        width: 60px;
    }
    
    .num-vdate-day {
        font-size: 2rem;
    }
    
    .num-vertical-title {
        font-size: 1.1rem;
    }
    
    .num-vertical-meta {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .num-vertical-item {
        gap: 16px;
    }
    
    .num-vertical-date {
        width: 50px;
    }
    
    .num-vdate-month {
        font-size: 0.7rem;
    }
    
    .num-vdate-day {
        font-size: 1.75rem;
    }
}

/* Single Post */
.num-single-article {
    background: white;
}

.num-single-header {
    background: linear-gradient(to bottom, var(--num-primary), var(--num-dark));
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.num-single-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.num-single-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 auto 24px;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.num-single-meta {
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.num-meta-separator {
    opacity: 0.5;
}

.num-event-label {
    color: var(--num-secondary);
    font-weight: 600;
}

.num-single-image {
    margin: -60px 0 60px;
}

.num-single-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--num-shadow-hover);
}

.num-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    padding: 60px 0;
}

.num-main-content {
    font-family: 'Source Serif 4', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--num-text);
}

.num-main-content p {
    margin-bottom: 1.5em;
}

.num-main-content h2,
.num-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--num-primary);
    margin-top: 2em;
    margin-bottom: 0.8em;
}

.num-main-content h2 {
    font-size: 2.2rem;
}

.num-main-content h3 {
    font-size: 1.8rem;
}

.num-sidebar-content {
    position: sticky;
    top: 20px;
    align-self: start;
}

.num-event-info-box,
.num-related-news {
    background: var(--num-light);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border-left: 4px solid var(--num-secondary);
}

.num-event-info-box h3,
.num-related-news h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--num-primary);
}

.num-info-item {
    margin-bottom: 16px;
    font-family: 'Source Serif 4', serif;
    line-height: 1.6;
}

.num-info-item strong {
    display: block;
    color: var(--num-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.num-external-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--num-secondary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.num-external-link:hover {
    background: var(--num-primary);
    transform: translateX(4px);
}

.num-poster-preview {
    margin-top: 20px;
}

.num-poster-preview img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.num-related-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--num-border);
}

.num-related-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.num-related-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.num-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.num-related-item:hover .num-related-thumb img {
    transform: scale(1.1);
}

.num-related-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.num-related-content h4 a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-related-content h4 a:hover {
    color: var(--num-secondary);
}

.num-related-content time {
    font-family: 'Source Serif 4', serif;
    font-size: 0.85rem;
    color: #718096;
}

/* Pagination */
.num-pagination,
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    font-family: 'Source Serif 4', serif;
}

.num-pagination a,
.num-pagination span,
.pagination a,
.pagination span {
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--num-border);
    border-radius: 10px;
    color: var(--num-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.num-pagination a:hover,
.pagination a:hover {
    background: var(--num-secondary);
    color: white;
    border-color: var(--num-secondary);
    transform: translateY(-2px);
}

.num-pagination .current,
.pagination .current {
    background: var(--num-gradient);
    color: white;
    border-color: transparent;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Loading State */
.num-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.num-loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid var(--num-border);
    border-top-color: var(--num-secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* No Results */
.num-no-results {
    text-align: center;
    font-family: 'Source Serif 4', serif;
    font-size: 1.25rem;
    color: #718096;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

/* Timeline Style */
.num-timeline-style {
    background: white;
    padding: 40px 0;
}

.num-timeline-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.num-timeline-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #f4a261, transparent);
}

.num-timeline-item {
    position: relative;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.num-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.num-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.num-timeline-item:nth-child(4) { animation-delay: 0.4s; }
.num-timeline-item:nth-child(5) { animation-delay: 0.5s; }

.num-timeline-marker {
    position: absolute;
    left: -47px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f4a261;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #f4a261;
}

.num-timeline-content {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border-left: 3px solid #f4a261;
    transition: all 0.3s ease;
}

.num-timeline-content:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.num-timeline-date {
    font-size: 0.85rem;
    color: #f4a261;
    font-weight: 600;
    display: inline-block;
    margin-right: 12px;
}

.num-timeline-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    font-weight: 600;
}

.num-timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.3;
}

.num-timeline-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-timeline-title a:hover {
    color: #f4a261;
}

.num-timeline-excerpt {
    color: var(--num-text);
    line-height: 1.6;
    margin: 0;
}

/* Minimal Style */
.num-minimal-style {
    background: white;
    padding: 0;
}

.num-minimal-list {
    max-width: 700px;
    margin: 0 auto;
}

.num-minimal-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-minimal-item:nth-child(1) { animation-delay: 0.1s; }
.num-minimal-item:nth-child(2) { animation-delay: 0.2s; }
.num-minimal-item:nth-child(3) { animation-delay: 0.3s; }
.num-minimal-item:nth-child(4) { animation-delay: 0.4s; }
.num-minimal-item:nth-child(5) { animation-delay: 0.5s; }

.num-minimal-item:hover {
    padding-left: 12px;
    border-left: 3px solid #f4a261;
}

.num-minimal-date {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
    min-width: 60px;
}

.num-minimal-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.num-minimal-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-minimal-title a:hover {
    color: #f4a261;
}

/* Compact Cards Style */
.num-cards-style {
    background: var(--num-light);
    padding: 40px 0;
}

.num-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.num-card-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-card-item:nth-child(1) { animation-delay: 0.1s; }
.num-card-item:nth-child(2) { animation-delay: 0.2s; }
.num-card-item:nth-child(3) { animation-delay: 0.3s; }
.num-card-item:nth-child(4) { animation-delay: 0.4s; }
.num-card-item:nth-child(5) { animation-delay: 0.5s; }

.num-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.num-card-img {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.num-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.num-card-item:hover .num-card-img img {
    transform: scale(1.05);
}

.num-card-body {
    padding: 20px;
}

.num-card-date {
    font-size: 0.8rem;
    color: #f4a261;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.num-card-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.num-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.num-card-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-card-title a:hover {
    color: #f4a261;
}

/* Magazine Style */
.num-magazine-style {
    background: var(--num-light);
    padding: 40px 0;
}

.num-magazine-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.num-magazine-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-magazine-item:nth-child(1) { 
    grid-column: span 8;
    animation-delay: 0.1s;
}

.num-magazine-item:nth-child(2),
.num-magazine-item:nth-child(3) { 
    grid-column: span 4;
}

.num-magazine-item:nth-child(2) { animation-delay: 0.2s; }
.num-magazine-item:nth-child(3) { animation-delay: 0.3s; }
.num-magazine-item:nth-child(4) { animation-delay: 0.4s; }
.num-magazine-item:nth-child(5) { animation-delay: 0.5s; }

.num-magazine-item:nth-child(n+4) {
    grid-column: span 4;
}

.num-magazine-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.num-magazine-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.num-magazine-large .num-magazine-img {
    aspect-ratio: 16/9;
}

.num-magazine-item:not(.num-magazine-large) .num-magazine-img {
    aspect-ratio: 4/3;
}

.num-magazine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.num-magazine-item:hover .num-magazine-img img {
    transform: scale(1.08);
}

.num-magazine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
}

.num-magazine-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
    z-index: 2;
}

.num-magazine-cat {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 4px 12px;
    background: #f4a261;
    border-radius: 4px;
    margin-bottom: 12px;
}

.num-magazine-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
}

.num-magazine-large .num-magazine-title {
    font-size: 2.2rem;
}

.num-magazine-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.num-magazine-title a:hover {
    opacity: 0.9;
}

.num-magazine-excerpt {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
    margin: 8px 0;
}

.num-magazine-date {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Glassmorphism Style */
.num-glass-style {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.num-glass-style::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.num-glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.num-glass-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-glass-item:nth-child(1) { animation-delay: 0.1s; }
.num-glass-item:nth-child(2) { animation-delay: 0.2s; }
.num-glass-item:nth-child(3) { animation-delay: 0.3s; }
.num-glass-item:nth-child(4) { animation-delay: 0.4s; }

.num-glass-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.num-glass-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    filter: blur(5px);
}

.num-glass-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.num-glass-content {
    position: relative;
    padding: 30px;
    color: white;
    z-index: 2;
}

.num-glass-date {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 12px;
}

.num-glass-cat {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 6px 14px;
    background: rgba(244, 162, 97, 0.9);
    border-radius: 20px;
    margin-left: 8px;
}

.num-glass-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 16px 0;
}

.num-glass-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.num-glass-title a:hover {
    opacity: 0.8;
}

.num-glass-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 20px;
}

.num-glass-btn {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.num-glass-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(5px);
}

/* Neon Style */
.num-neon-style {
    background: #0a0a0f;
    padding: 60px 0;
    position: relative;
}

.num-neon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.num-neon-item {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-neon-item:nth-child(1) { animation-delay: 0.1s; }
.num-neon-item:nth-child(2) { animation-delay: 0.2s; }
.num-neon-item:nth-child(3) { animation-delay: 0.3s; }
.num-neon-item:nth-child(4) { animation-delay: 0.4s; }

.num-neon-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00, #ffff00);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.num-neon-item:hover::before {
    opacity: 1;
    animation: neonPulse 2s linear infinite;
}

@keyframes neonPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.num-neon-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        0 0 40px rgba(255, 0, 255, 0.2),
        0 0 60px rgba(0, 255, 0, 0.1);
}

.num-neon-img {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.num-neon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.num-neon-item:hover .num-neon-img img {
    transform: scale(1.1);
    filter: saturate(1.3) brightness(1.1);
}

.num-neon-content {
    padding: 24px;
}

.num-neon-cat {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    margin-bottom: 12px;
}

.num-neon-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.num-neon-title a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.num-neon-item:hover .num-neon-title a {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.num-neon-date {
    font-size: 0.85rem;
    color: #ff00ff;
    font-weight: 600;
    text-shadow: 0 0 8px #ff00ff;
}

/* Masonry Style */
.num-masonry-style {
    background: var(--num-light);
    padding: 60px 0;
}

.num-masonry-grid {
    column-count: 3;
    column-gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.num-masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-masonry-item:nth-child(1) { animation-delay: 0.1s; }
.num-masonry-item:nth-child(2) { animation-delay: 0.2s; }
.num-masonry-item:nth-child(3) { animation-delay: 0.3s; }
.num-masonry-item:nth-child(4) { animation-delay: 0.4s; }
.num-masonry-item:nth-child(5) { animation-delay: 0.5s; }
.num-masonry-item:nth-child(6) { animation-delay: 0.6s; }

.num-masonry-tall .num-masonry-img { aspect-ratio: 3/4; }
.num-masonry-medium .num-masonry-img { aspect-ratio: 4/3; }
.num-masonry-short .num-masonry-img { aspect-ratio: 16/9; }

.num-masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.num-masonry-img {
    display: block;
    position: relative;
    overflow: hidden;
}

.num-masonry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.num-masonry-item:hover .num-masonry-img img {
    transform: scale(1.08) rotate(2deg);
}

.num-masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
}

.num-masonry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
    z-index: 2;
}

.num-masonry-cat {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 4px 10px;
    background: #f4a261;
    border-radius: 4px;
    margin-bottom: 10px;
}

.num-masonry-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
}

.num-masonry-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.num-masonry-title a:hover {
    opacity: 0.9;
}

.num-masonry-date {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Hero Slider Style */
.num-hero-style {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.num-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.num-hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

.num-hero-bg {
    position: absolute;
    inset: 0;
}

.num-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 10s ease-out forwards;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.num-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.num-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 80px 60px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.num-hero-cat {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: #f4a261;
    margin-bottom: 20px;
}

.num-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.num-hero-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-hero-title a:hover {
    color: #f4a261;
}

.num-hero-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.num-hero-date {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.num-hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #f4a261;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out 0.4s both;
    align-self: flex-start;
}

.num-hero-btn:hover {
    background: #e94560;
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.4);
}

.num-hero-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    display: flex;
    gap: 12px;
}

.num-hero-prev,
.num-hero-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.num-hero-prev:hover,
.num-hero-next:hover {
    background: rgba(244, 162, 97, 0.9);
    border-color: #f4a261;
    transform: scale(1.1);
}

/* List Modern Style */
.num-list-modern-style {
    background: white;
    padding: 40px 0;
}

.num-list-modern-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.num-list-modern-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    margin-bottom: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-list-modern-item:nth-child(1) { animation-delay: 0.1s; }
.num-list-modern-item:nth-child(2) { animation-delay: 0.2s; }
.num-list-modern-item:nth-child(3) { animation-delay: 0.3s; }
.num-list-modern-item:nth-child(4) { animation-delay: 0.4s; }
.num-list-modern-item:nth-child(5) { animation-delay: 0.5s; }

.num-list-modern-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.num-list-modern-img {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.num-list-modern-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.num-list-modern-item:hover .num-list-modern-img img {
    transform: scale(1.1);
}

.num-list-modern-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.num-list-modern-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.num-list-modern-date {
    font-size: 0.85rem;
    color: #f4a261;
    font-weight: 600;
}

.num-list-modern-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    font-weight: 700;
}

.num-list-modern-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.num-list-modern-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-list-modern-title a:hover {
    color: #f4a261;
}

.num-list-modern-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.num-list-modern-btn {
    display: inline-block;
    color: #f4a261;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.num-list-modern-btn:hover {
    color: var(--num-primary);
    transform: translateX(5px);
}

/* List Minimal Style */
.num-list-minimal-style {
    background: white;
    padding: 0;
}

.num-list-minimal-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.num-list-minimal-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-list-minimal-item:nth-child(1) { animation-delay: 0.1s; }
.num-list-minimal-item:nth-child(2) { animation-delay: 0.2s; }
.num-list-minimal-item:nth-child(3) { animation-delay: 0.3s; }
.num-list-minimal-item:nth-child(4) { animation-delay: 0.4s; }
.num-list-minimal-item:nth-child(5) { animation-delay: 0.5s; }

.num-list-minimal-item:hover {
    background: #f9fafb;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
}

.num-list-minimal-date {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #f4a261;
    line-height: 1;
}

.num-list-minimal-date span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 600;
}

.num-list-minimal-content {
    flex: 1;
}

.num-list-minimal-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.num-list-minimal-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-list-minimal-title a:hover {
    color: #f4a261;
}

.num-list-minimal-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4a261;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.num-list-minimal-item:hover .num-list-minimal-arrow {
    background: #f4a261;
    color: white;
    transform: translateX(5px);
}

/* List Featured Style */
.num-list-featured-style {
    background: var(--num-light);
    padding: 40px 0;
}

.num-list-featured-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.num-list-featured-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    margin-bottom: 32px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-list-featured-item:nth-child(1) { animation-delay: 0.1s; }
.num-list-featured-item:nth-child(2) { animation-delay: 0.2s; }
.num-list-featured-item:nth-child(3) { animation-delay: 0.3s; }
.num-list-featured-item:nth-child(4) { animation-delay: 0.4s; }
.num-list-featured-item:nth-child(5) { animation-delay: 0.5s; }

.num-list-featured-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.num-list-featured-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.num-list-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.num-list-featured-item:hover .num-list-featured-img img {
    transform: scale(1.1);
}

.num-list-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.num-list-featured-item:hover .num-list-featured-overlay {
    opacity: 1;
}

.num-list-featured-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.num-list-featured-cat {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #f4a261;
    margin-bottom: 12px;
}

.num-list-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
}

.num-list-featured-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-list-featured-title a:hover {
    color: #f4a261;
}

.num-list-featured-excerpt {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.num-list-featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.num-list-featured-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #f4a261;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.num-list-featured-btn:hover {
    background: var(--num-primary);
    transform: translateY(-2px);
}

/* List Compact Style */
.num-list-compact-style {
    background: white;
    padding: 20px 0;
}

.num-list-compact-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.num-list-compact-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-list-compact-item:nth-child(1) { animation-delay: 0.1s; }
.num-list-compact-item:nth-child(2) { animation-delay: 0.2s; }
.num-list-compact-item:nth-child(3) { animation-delay: 0.3s; }
.num-list-compact-item:nth-child(4) { animation-delay: 0.4s; }
.num-list-compact-item:nth-child(5) { animation-delay: 0.5s; }

.num-list-compact-item:hover {
    background: #f9fafb;
}

.num-list-compact-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.num-list-compact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.num-list-compact-item:hover .num-list-compact-img img {
    transform: scale(1.1);
}

.num-list-compact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.num-list-compact-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f4a261;
    font-weight: 700;
    margin-bottom: 6px;
}

.num-list-compact-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 6px;
}

.num-list-compact-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-list-compact-title a:hover {
    color: #f4a261;
}

.num-list-compact-date {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* List Elegant Style */
.num-list-elegant-style {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 40px 0;
}

.num-list-elegant-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.num-list-elegant-item {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 32px;
    margin-bottom: 24px;
    background: white;
    border-radius: 20px;
    border-left: 4px solid #f4a261;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-list-elegant-item:nth-child(1) { animation-delay: 0.1s; }
.num-list-elegant-item:nth-child(2) { animation-delay: 0.2s; }
.num-list-elegant-item:nth-child(3) { animation-delay: 0.3s; }
.num-list-elegant-item:nth-child(4) { animation-delay: 0.4s; }
.num-list-elegant-item:nth-child(5) { animation-delay: 0.5s; }

.num-list-elegant-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-left-color: var(--num-primary);
}

.num-list-elegant-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4a261, #e94560);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
    transition: all 0.3s ease;
}

.num-list-elegant-item:hover .num-list-elegant-number {
    transform: scale(1.1) rotate(5deg);
}

.num-list-elegant-num-inner {
    text-align: center;
    color: white;
}

.num-list-elegant-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.num-list-elegant-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 4px;
}

.num-list-elegant-content {
    flex: 1;
}

.num-list-elegant-cat {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #f4a261;
    margin-bottom: 8px;
}

.num-list-elegant-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.num-list-elegant-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-list-elegant-title a:hover {
    color: #f4a261;
}

.num-list-elegant-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 10px;
}

.num-list-elegant-time {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.num-list-elegant-img {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.num-list-elegant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.num-list-elegant-item:hover .num-list-elegant-img img {
    transform: scale(1.1) rotate(2deg);
}

/* Gradient List Style */
.num-gradient-list-style {
    background: var(--num-light);
    padding: 60px 0;
}

.num-gradient-list {
    max-width: 900px;
    margin: 0 auto;
}

.num-gradient-list-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    margin-bottom: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-gradient-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.num-gradient-list-item[data-gradient="0"]::before { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.num-gradient-list-item[data-gradient="1"]::before { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.num-gradient-list-item[data-gradient="2"]::before { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.num-gradient-list-item[data-gradient="3"]::before { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.num-gradient-list-item[data-gradient="4"]::before { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.num-gradient-list-item:nth-child(1) { animation-delay: 0.1s; }
.num-gradient-list-item:nth-child(2) { animation-delay: 0.2s; }
.num-gradient-list-item:nth-child(3) { animation-delay: 0.3s; }
.num-gradient-list-item:nth-child(4) { animation-delay: 0.4s; }
.num-gradient-list-item:nth-child(5) { animation-delay: 0.5s; }

.num-gradient-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.num-gradient-list-item:hover::before {
    opacity: 1;
}

.num-gradient-list-number {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.num-gradient-list-content {
    flex: 1;
}

.num-gradient-list-cat {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 8px;
}

.num-gradient-list-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}

.num-gradient-list-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-gradient-list-title a:hover {
    color: #667eea;
}

.num-gradient-list-date {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

.num-gradient-list-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.num-gradient-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.num-gradient-list-item:hover .num-gradient-list-img img {
    transform: scale(1.1) rotate(3deg);
}

/* Hover Cards Style */
.num-hover-cards-style {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    padding: 60px 0;
}

.num-hover-cards-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.num-hover-card-item {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-hover-card-item:nth-child(1) { animation-delay: 0.1s; }
.num-hover-card-item:nth-child(2) { animation-delay: 0.2s; }
.num-hover-card-item:nth-child(3) { animation-delay: 0.3s; }
.num-hover-card-item:nth-child(4) { animation-delay: 0.4s; }
.num-hover-card-item:nth-child(5) { animation-delay: 0.5s; }

.num-hover-card-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transform: translateY(-8px) scale(1.02);
}

.num-hover-card-img-wrap {
    width: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.num-hover-card-img {
    display: block;
    height: 100%;
}

.num-hover-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.num-hover-card-item:hover .num-hover-card-img img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.num-hover-card-content {
    flex: 1;
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.num-hover-card-date {
    font-size: 0.85rem;
    color: #f4a261;
    font-weight: 600;
    margin-bottom: 12px;
}

.num-hover-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.num-hover-card-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-hover-card-title a:hover {
    color: #f4a261;
}

.num-hover-card-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 16px;
}

.num-hover-card-arrow {
    font-size: 2rem;
    color: #f4a261;
    text-decoration: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244, 162, 97, 0.1);
    transition: all 0.3s ease;
}

.num-hover-card-item:hover .num-hover-card-arrow {
    background: #f4a261;
    color: white;
    transform: scale(1.1) rotate(45deg);
}

/* Split List Style */
.num-split-list-style {
    background: white;
    padding: 60px 0;
}

.num-split-list {
    max-width: 1200px;
    margin: 0 auto;
}

.num-split-list-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-split-list-item:nth-child(1) { animation-delay: 0.1s; }
.num-split-list-item:nth-child(2) { animation-delay: 0.2s; }
.num-split-list-item:nth-child(3) { animation-delay: 0.3s; }
.num-split-list-item:nth-child(4) { animation-delay: 0.4s; }
.num-split-list-item:nth-child(5) { animation-delay: 0.5s; }

.num-split-reverse {
    direction: rtl;
}

.num-split-reverse .num-split-text {
    direction: ltr;
}

.num-split-text {
    padding: 40px;
}

.num-split-date {
    display: inline-block;
    font-size: 0.9rem;
    color: #f4a261;
    font-weight: 600;
    margin-bottom: 12px;
}

.num-split-cat {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    margin-left: 12px;
}

.num-split-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 20px 0;
}

.num-split-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-split-title a:hover {
    color: #667eea;
}

.num-split-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
}

.num-split-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.num-split-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.num-split-img {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.num-split-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.num-split-list-item:hover .num-split-img {
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.num-split-list-item:hover .num-split-img img {
    transform: scale(1.05);
}

/* Iconic List Style */
.num-iconic-style {
    background: var(--num-light);
    padding: 60px 0;
}

.num-iconic-list {
    max-width: 900px;
    margin: 0 auto;
}

.num-iconic-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    margin-bottom: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-iconic-item:nth-child(1) { animation-delay: 0.1s; }
.num-iconic-item:nth-child(2) { animation-delay: 0.2s; }
.num-iconic-item:nth-child(3) { animation-delay: 0.3s; }
.num-iconic-item:nth-child(4) { animation-delay: 0.4s; }
.num-iconic-item:nth-child(5) { animation-delay: 0.5s; }

.num-iconic-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.num-iconic-left {
    flex-shrink: 0;
}

.num-iconic-date-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4a261, #e94560);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3);
}

.num-iconic-month {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.num-iconic-day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.num-iconic-content {
    flex: 1;
}

.num-iconic-cat {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 8px;
}

.num-iconic-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.num-iconic-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-iconic-title a:hover {
    color: #f4a261;
}

.num-iconic-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.num-iconic-meta-item {
    font-size: 0.9rem;
    color: #6b7280;
}

.num-iconic-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.num-iconic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.num-iconic-item:hover .num-iconic-img img {
    transform: scale(1.15) rotate(5deg);
}

/* Wave List Style */
.num-wave-style {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    position: relative;
}

.num-wave-list {
    max-width: 900px;
    margin: 0 auto;
}

.num-wave-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 30px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: waveIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes waveIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.num-wave-item:hover {
    transform: translateX(10px) scale(1.02);
    background: white;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.num-wave-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4a261, #e94560);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

.num-wave-content {
    flex: 1;
}

.num-wave-cat {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 6px;
}

.num-wave-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
}

.num-wave-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-wave-title a:hover {
    color: #667eea;
}

.num-wave-date {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.num-wave-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.num-wave-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.num-wave-item:hover .num-wave-img img {
    transform: scale(1.2) rotate(-5deg);
}

/* Spotlight List Style */
.num-spotlight-style {
    background: #0a0a0f;
    padding: 80px 0;
    position: relative;
}

.num-spotlight-list {
    max-width: 1000px;
    margin: 0 auto;
}

.num-spotlight-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-spotlight-item:nth-child(1) { animation-delay: 0.1s; }
.num-spotlight-item:nth-child(2) { animation-delay: 0.2s; }
.num-spotlight-item:nth-child(3) { animation-delay: 0.3s; }
.num-spotlight-item:nth-child(4) { animation-delay: 0.4s; }
.num-spotlight-item:nth-child(5) { animation-delay: 0.5s; }

.num-spotlight-beam {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        #f4a261 20%,
        #e94560 50%,
        #f4a261 80%,
        transparent 100%
    );
    box-shadow: 0 0 20px #f4a261, 0 0 40px #e94560;
    animation: beamPulse 3s ease-in-out infinite;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

.num-spotlight-img {
    width: 300px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.3);
}

.num-spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.num-spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(244, 162, 97, 0.2), rgba(233, 69, 96, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.num-spotlight-item:hover .num-spotlight-img img {
    transform: scale(1.1);
}

.num-spotlight-item:hover .num-spotlight-overlay {
    opacity: 1;
}

.num-spotlight-content {
    flex: 1;
    padding: 20px 0;
    color: white;
}

.num-spotlight-cat {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #f4a261;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(244, 162, 97, 0.5);
}

.num-spotlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 16px;
}

.num-spotlight-title a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.num-spotlight-title a:hover {
    color: #f4a261;
    text-shadow: 0 0 20px rgba(244, 162, 97, 0.6);
}

.num-spotlight-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.num-spotlight-date {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Ribbon List Style */
.num-ribbon-style {
    background: var(--num-light);
    padding: 60px 0;
}

.num-ribbon-list {
    max-width: 900px;
    margin: 0 auto;
}

.num-ribbon-item {
    position: relative;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-ribbon-item:nth-child(1) { animation-delay: 0.1s; }
.num-ribbon-item:nth-child(2) { animation-delay: 0.2s; }
.num-ribbon-item:nth-child(3) { animation-delay: 0.3s; }
.num-ribbon-item:nth-child(4) { animation-delay: 0.4s; }
.num-ribbon-item:nth-child(5) { animation-delay: 0.5s; }

.num-ribbon-tag {
    position: absolute;
    left: -15px;
    top: 20px;
    z-index: 2;
}

.num-ribbon-number {
    display: block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94560, #f4a261);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    position: relative;
}

.num-ribbon-number::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 10px;
    border-color: transparent transparent transparent #e94560;
}

.num-ribbon-body {
    display: flex;
    gap: 24px;
    background: white;
    padding: 24px 24px 24px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.num-ribbon-item:hover .num-ribbon-body {
    transform: translateX(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.num-ribbon-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.num-ribbon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.num-ribbon-item:hover .num-ribbon-img img {
    transform: scale(1.1) rotate(3deg);
}

.num-ribbon-text {
    flex: 1;
}

.num-ribbon-cat {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
    display: block;
}

.num-ribbon-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}

.num-ribbon-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-ribbon-title a:hover {
    color: #e94560;
}

.num-ribbon-date {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Parallax List Style */
.num-parallax-style {
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    padding: 80px 0;
    overflow: hidden;
}

.num-parallax-list {
    max-width: 1200px;
    margin: 0 auto;
}

.num-parallax-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.num-parallax-item:nth-child(1) { animation-delay: 0.1s; }
.num-parallax-item:nth-child(2) { animation-delay: 0.2s; }
.num-parallax-item:nth-child(3) { animation-delay: 0.3s; }
.num-parallax-item:nth-child(4) { animation-delay: 0.4s; }
.num-parallax-item:nth-child(5) { animation-delay: 0.5s; }

.num-parallax-reverse {
    direction: rtl;
}

.num-parallax-reverse .num-parallax-content {
    direction: ltr;
}

.num-parallax-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.num-parallax-item:hover .num-parallax-img-wrap {
    transform: scale(1.05) translateY(-10px);
}

.num-parallax-img {
    display: block;
    position: relative;
}

.num-parallax-img img {
    width: 100%;
    height: auto;
    display: block;
}

.num-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.num-parallax-item:hover .num-parallax-overlay {
    opacity: 1;
}

.num-parallax-content {
    padding: 40px;
}

.num-parallax-date {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 12px;
}

.num-parallax-cat {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    margin-left: 12px;
}

.num-parallax-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 20px 0;
}

.num-parallax-title a {
    color: var(--num-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-parallax-title a:hover {
    color: #667eea;
}

.num-parallax-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
}

.num-parallax-link {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.num-parallax-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Metro Tiles Style */
.num-metro-style {
    background: #f2f2f2;
    padding: 60px 0;
}

.num-metro-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.num-metro-item {
    aspect-ratio: 1;
    border-radius: 0;
    border: 4px solid;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.num-metro-item:nth-child(1) { animation-delay: 0.05s; }
.num-metro-item:nth-child(2) { animation-delay: 0.1s; }
.num-metro-item:nth-child(3) { animation-delay: 0.15s; }
.num-metro-item:nth-child(4) { animation-delay: 0.2s; }
.num-metro-item:nth-child(5) { animation-delay: 0.25s; }

.num-metro-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.num-metro-link {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.num-metro-date {
    margin-bottom: auto;
}

.num-metro-day {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.num-metro-month {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

.num-metro-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 16px 0;
}

.num-metro-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
}

.num-metro-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.num-metro-item:hover .num-metro-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Cards Style */
.num-floating-style {
    background: radial-gradient(circle at top, #667eea 0%, #1a1a2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.num-floating-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(244, 162, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: floatingBg 20s ease-in-out infinite;
}

@keyframes floatingBg {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.num-floating-list {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.num-floating-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.num-floating-item[data-float="0"] { animation-delay: 0.1s; }
.num-floating-item[data-float="1"] { animation-delay: 0.2s; }
.num-floating-item[data-float="2"] { animation-delay: 0.3s; }
.num-floating-item[data-float="3"] { animation-delay: 0.4s; }
.num-floating-item[data-float="4"] { animation-delay: 0.5s; }

.num-floating-left { align-self: flex-start; margin-right: 10%; }
.num-floating-right { align-self: flex-end; margin-left: 10%; }
.num-floating-center { align-self: center; }

.num-floating-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.num-floating-img-wrap {
    position: relative;
    width: 200px;
    flex-shrink: 0;
}

.num-floating-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: block;
}

.num-floating-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.num-floating-item:hover .num-floating-img img {
    transform: scale(1.1) rotate(3deg);
}

.num-floating-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.4), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50%;
    filter: blur(20px);
}

.num-floating-item:hover .num-floating-glow {
    opacity: 1;
}

.num-floating-content {
    flex: 1;
    color: white;
}

.num-floating-cat {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 6px 14px;
    background: rgba(244, 162, 97, 0.3);
    border-radius: 20px;
    margin-bottom: 12px;
}

.num-floating-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 12px;
}

.num-floating-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-floating-title a:hover {
    color: #f4a261;
}

.num-floating-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 12px;
    display: block;
}

.num-floating-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Professional Corporate Style (Like Image) */
.num-professional-style {
    background: transparent;
    padding: 40px 0;
}

.num-professional-list {
    max-width: 800px;
    margin: 0 auto;
}

.num-professional-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    border-left: 4px solid transparent;
}

.num-professional-item:nth-child(1) { animation-delay: 0.05s; }
.num-professional-item:nth-child(2) { animation-delay: 0.1s; }
.num-professional-item:nth-child(3) { animation-delay: 0.15s; }
.num-professional-item:nth-child(4) { animation-delay: 0.2s; }
.num-professional-item:nth-child(5) { animation-delay: 0.25s; }
.num-professional-item:nth-child(6) { animation-delay: 0.3s; }
.num-professional-item:nth-child(7) { animation-delay: 0.35s; }
.num-professional-item:nth-child(8) { animation-delay: 0.4s; }
.num-professional-item:nth-child(9) { animation-delay: 0.45s; }
.num-professional-item:nth-child(10) { animation-delay: 0.5s; }

.num-professional-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-left-color: #d32f2f;
    transform: translateX(4px);
}

.num-professional-date-box {
    width: 90px;
    min-height: 90px;
    background: #d32f2f;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
}

.num-prof-day {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.num-prof-month {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.num-prof-year {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 2px;
}

.num-professional-content {
    flex: 1;
    min-width: 0;
}

.num-prof-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #333;
}

.num-prof-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-prof-title a:hover {
    color: #d32f2f;
}

.num-prof-category {
    font-size: 0.85rem;
    color: #d32f2f;
    font-weight: 600;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.num-prof-location {
    font-size: 0.9rem;
    color: #757575;
    margin: 0;
    line-height: 1.4;
}

.num-professional-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    flex-shrink: 0;
    color: #9e9e9e;
    transition: all 0.3s ease;
}

.num-professional-icon:hover {
    background: #d32f2f;
    color: white;
}

.num-professional-icon svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .num-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .num-sidebar-content {
        position: static;
    }
    
    .num-featured-card {
        grid-column: span 1;
    }
    
    .num-magazine-item:nth-child(1) {
        grid-column: span 12;
    }
    
    .num-magazine-item:nth-child(n+2) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .num-news-grid {
        grid-template-columns: 1fr;
    }
    
    .num-filter-bar {
        margin: -20px 0 40px;
    }
    
    .num-archive-header {
        padding: 80px 0 60px;
    }
    
    .num-card-content {
        padding: 24px;
    }
    
    .num-latest-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline responsive */
    .num-timeline-list {
        padding-left: 40px;
    }
    
    .num-timeline-list::before {
        left: 10px;
    }
    
    .num-timeline-marker {
        left: -37px;
        width: 12px;
        height: 12px;
    }
    
    .num-timeline-content {
        padding: 18px;
    }
    
    .num-timeline-title {
        font-size: 1.15rem;
    }
    
    /* Cards responsive */
    .num-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Magazine responsive */
    .num-magazine-item:nth-child(n+1) {
        grid-column: span 12 !important;
    }
    
    .num-magazine-title {
        font-size: 1.3rem !important;
    }
    
    /* Minimal responsive */
    .num-minimal-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .num-minimal-date {
        font-size: 0.8rem;
    }
    
    /* Advanced styles responsive */
    .num-glass-grid {
        grid-template-columns: 1fr;
    }
    
    .num-neon-grid {
        grid-template-columns: 1fr;
    }
    
    .num-masonry-grid {
        column-count: 1;
    }
    
    .num-hero-style {
        height: 500px;
    }
    
    .num-hero-content {
        padding: 40px 30px;
    }
    
    .num-hero-nav {
        bottom: 20px;
        right: 20px;
    }
    
    .num-hero-prev,
    .num-hero-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* List styles responsive */
    .num-list-modern-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .num-list-modern-img {
        width: 100%;
        height: 200px;
    }
    
    .num-list-featured-item {
        grid-template-columns: 1fr;
    }
    
    .num-list-featured-content {
        padding: 24px;
    }
    
    .num-list-elegant-item {
        flex-direction: column;
        text-align: center;
    }
    
    .num-list-elegant-img {
        width: 100%;
        height: 200px;
    }
    
    .num-list-compact-item {
        gap: 12px;
    }
    
    .num-list-compact-img {
        width: 60px;
        height: 60px;
    }
}

/* Responsive for new advanced list styles */
@media (max-width: 768px) {
    .num-gradient-list-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .num-hover-card-item {
        flex-direction: column;
    }
    
    .num-hover-card-img-wrap {
        width: 100%;
        height: 200px;
    }
    
    .num-hover-card-content {
        padding: 24px;
    }
    
    .num-hover-card-arrow {
        position: static;
        margin-top: 16px;
    }
    
    .num-split-list-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .num-split-reverse {
        direction: ltr;
    }
    
    .num-split-text {
        padding: 0;
    }
    
    .num-split-title {
        font-size: 1.8rem;
    }
    
    .num-iconic-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .num-wave-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    /* New list styles responsive */
    .num-spotlight-item {
        flex-direction: column;
    }
    
    .num-spotlight-img {
        width: 100%;
        aspect-ratio: 16/9;
    }
    
    .num-ribbon-tag {
        position: static;
        margin-bottom: 16px;
    }
    
    .num-ribbon-number::after {
        display: none;
    }
    
    .num-ribbon-body {
        padding: 24px;
    }
    
    .num-ribbon-item {
        text-align: center;
    }
    
    .num-parallax-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .num-parallax-reverse {
        direction: ltr;
    }
    
    .num-parallax-content {
        padding: 0;
    }
    
    .num-parallax-title {
        font-size: 1.8rem;
    }
    
    .num-metro-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .num-floating-item {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .num-floating-img-wrap {
        width: 100%;
    }
    
    /* Professional style responsive */
    .num-professional-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .num-professional-date-box {
        width: 80px;
        min-height: 80px;
        padding: 10px 6px;
    }
    
    .num-prof-day {
        font-size: 2rem;
    }
    
    .num-prof-month {
        font-size: 0.75rem;
    }
    
    .num-prof-year {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .num-metro-list {
        grid-template-columns: 1fr;
    }
    
    .num-professional-date-box {
        width: 70px;
        min-height: 70px;
        padding: 8px 6px;
    }
    
    .num-prof-day {
        font-size: 1.75rem;
    }
    
    .num-prof-month {
        font-size: 0.7rem;
    }
    
    .num-prof-year {
        font-size: 0.65rem;
    }
}

/* Print Styles */
@media print {
    .num-filter-bar,
    .num-pagination {
        display: none;
    }
}
