/* ========================================
   BLOG / ARCHIVE / PAGE / SEARCH
   Dramatic Dark/Light Theme
   ======================================== */

/* ========================================
   ARCHIVE HERO — DARK
   ======================================== */

.nv-archive-page,
.nv-page { background: #f0f9fc; }

.nv-arc-hero,
.nv-page-hero {
    position: relative;
    padding: 120px 24px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #0a2f3f 0%, #0c3547 30%, #154d62 60%, #0c3547 100%);
}

.nv-arc-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.nv-arc-hero-orb-1 { width: 400px; height: 400px; background: rgba(127,199,217,0.12); top: -100px; right: -80px; animation: orbFloat 12s ease-in-out infinite; }
.nv-arc-hero-orb-2 { width: 300px; height: 300px; background: rgba(58,155,181,0.1); bottom: -60px; left: -60px; animation: orbFloat 16s ease-in-out infinite reverse; }

.nv-arc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

/* Breadcrumb */
.nv-arc-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    font-size: 13px;
    flex-wrap: wrap;
}

.nv-arc-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.nv-arc-breadcrumb a:hover { color: #7FC7D9; }
.nv-arc-breadcrumb svg { width: 14px; height: 14px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.nv-arc-breadcrumb span { color: rgba(255,255,255,0.8); }

/* Badge */
.nv-arc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(127,199,217,0.12);
    border: 1px solid rgba(127,199,217,0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #7FC7D9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.nv-arc-badge-dot {
    width: 7px; height: 7px;
    background: #7FC7D9;
    border-radius: 50%;
    animation: heroPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(127,199,217,0.5);
}

/* Title */
.nv-arc-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.nv-arc-hero-title span {
    background: linear-gradient(135deg, #7FC7D9 0%, #a8e0eb 50%, #7FC7D9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradient 4s ease-in-out infinite;
}

.nv-arc-hero-icon {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 10px;
}

.nv-arc-hero-icon svg {
    width: 40px;
    height: 40px;
    color: #7FC7D9;
}

.nv-arc-hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.nv-arc-hero-count {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

/* Search in hero */
.nv-search-title { font-size: clamp(24px, 4vw, 40px); }

.nv-search-hero-form {
    max-width: 500px;
    margin: 24px auto 0;
}

.nv-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 6px;
    transition: all 0.3s;
}

.nv-search-input-wrap:focus-within {
    border-color: rgba(127,199,217,0.5);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 4px rgba(127,199,217,0.1);
}

.nv-search-input-wrap > svg {
    width: 20px; height: 20px;
    color: rgba(255,255,255,0.4);
    margin-left: 14px;
    flex-shrink: 0;
}

.nv-search-input-wrap input {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

.nv-search-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }

.nv-search-input-wrap button {
    padding: 10px 24px;
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a2f3f;
    cursor: pointer;
    transition: all 0.3s;
}

.nv-search-input-wrap button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(127,199,217,0.4);
}

/* ========================================
   POSTS CONTENT — LIGHT
   ======================================== */

.nv-arc-content {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f0f9fc 0%, #e6f4f9 50%, #dceef5 100%);
}

.nv-arc-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #7FC7D9 30%, #3A9BB5 50%, #7FC7D9 70%, transparent 90%);
    opacity: 0.5;
}

.nv-arc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ========================================
   POST CARDS
   ======================================== */

.nv-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.nv-post-card {
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    position: relative;
}

.nv-post-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7FC7D9, #3A9BB5);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.nv-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(127,199,217,0.12);
    border-color: rgba(127,199,217,0.25);
}

.nv-post-card:hover::before { transform: scaleX(1); }

/* Card Image */
.nv-post-card-img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #e6f4f9, #dceef5);
}

.nv-post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.nv-post-card:hover .nv-post-card-img img {
    transform: scale(1.06);
}

.nv-post-card-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-post-card-noimg svg {
    width: 48px;
    height: 48px;
    color: rgba(127,199,217,0.4);
}

/* Card Body */
.nv-post-card-body {
    padding: 24px;
}

.nv-post-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
}

.nv-post-cat,
.nv-post-type {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(127,199,217,0.1);
    border: 1px solid rgba(127,199,217,0.2);
    border-radius: 50px;
    font-weight: 600;
    color: #3A9BB5;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nv-post-card-meta time {
    color: #9CA3AF;
    font-size: 13px;
}

.nv-post-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.nv-post-card-title a {
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s;
}

.nv-post-card-title a:hover { color: #3A9BB5; }

.nv-post-card-excerpt {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 16px;
}

.nv-post-card-excerpt p { margin: 0; }

.nv-post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #3A9BB5;
    text-decoration: none;
    transition: all 0.3s;
}

.nv-post-card-link svg {
    width: 16px; height: 16px;
    transition: transform 0.3s;
}

.nv-post-card-link:hover { gap: 12px; color: #2a7f95; }
.nv-post-card-link:hover svg { transform: translateX(4px); }

/* ========================================
   PAGINATION
   ======================================== */

.nv-arc-content .navigation.pagination {
    margin-top: 60px;
}

.nv-arc-content .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nv-arc-content .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.15);
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
    color: #1F2937;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nv-arc-content .page-numbers:hover {
    background: rgba(127,199,217,0.1);
    border-color: rgba(127,199,217,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(127,199,217,0.12);
}

.nv-arc-content .page-numbers.current {
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(127,199,217,0.35);
}

.nv-arc-content .page-numbers.dots {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #9CA3AF;
}

/* ========================================
   NO RESULTS
   ======================================== */

.nv-no-results {
    text-align: center;
    padding: 80px 24px;
}

.nv-no-results-icon {
    width: 90px; height: 90px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(127,199,217,0.1);
    border-radius: 24px;
    margin: 0 auto 24px;
}

.nv-no-results-icon svg {
    width: 44px; height: 44px;
    color: #7FC7D9;
}

.nv-no-results h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.nv-no-results p {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 28px;
}

/* Search again widget */
.nv-search-again {
    max-width: 480px;
    margin: 0 auto;
}

.nv-search-again .search-form-wrapper .search-form {
    display: flex;
    gap: 0;
}

.nv-search-again .search-input-wrapper {
    display: flex;
    width: 100%;
    background: #ffffff;
    border: 2px solid rgba(127,199,217,0.2);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.nv-search-again .search-input-wrapper:focus-within {
    border-color: #7FC7D9;
    box-shadow: 0 0 0 4px rgba(127,199,217,0.1);
}

.nv-search-again .search-field {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: #1F2937;
    background: transparent;
}

.nv-search-again .search-submit {
    padding: 14px 24px;
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.nv-search-again .search-submit:hover {
    background: linear-gradient(135deg, #3A9BB5, #2a7f95);
}

/* ========================================
   PAGE CONTENT — LIGHT
   ======================================== */

.nv-page-hero {
    padding: 110px 24px 60px;
}

.nv-page-content {
    position: relative;
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #f0f9fc 0%, #e6f4f9 50%, #dceef5 100%);
}

.nv-page-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #7FC7D9 30%, #3A9BB5 50%, #7FC7D9 70%, transparent 90%);
    opacity: 0.5;
}

.nv-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

.nv-page-article {
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.nv-page-featured {
    width: 100%;
    overflow: hidden;
}

.nv-page-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.nv-page-body {
    padding: 48px;
}

.nv-page-body h1,
.nv-page-body h2,
.nv-page-body h3,
.nv-page-body h4 {
    font-family: 'Sora', sans-serif;
    color: #1F2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.nv-page-body h2 { font-size: 28px; margin-top: 40px; }
.nv-page-body h3 { font-size: 22px; margin-top: 32px; }

.nv-page-body p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.nv-page-body a {
    color: #3A9BB5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.nv-page-body a:hover { color: #2a7f95; text-decoration: underline; }

.nv-page-body ul,
.nv-page-body ol {
    margin: 0 0 20px 24px;
    color: #4B5563;
    line-height: 1.8;
}

.nv-page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
}

.nv-page-body blockquote {
    border-left: 4px solid #7FC7D9;
    padding: 20px 24px;
    margin: 24px 0;
    background: rgba(127,199,217,0.06);
    border-radius: 0 16px 16px 0;
    color: #374151;
    font-style: italic;
}

.nv-page-links {
    margin-top: 32px;
    padding: 16px 0;
    border-top: 1px solid rgba(127,199,217,0.15);
    font-size: 14px;
    color: #6B7280;
}

/* ========================================
   SINGLE POST
   ======================================== */

.nv-single-page { background: #f0f9fc; }

.nv-single-hero {
    position: relative;
    padding: 120px 24px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #0a2f3f 0%, #0c3547 30%, #154d62 60%, #0c3547 100%);
}

.nv-single-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

/* Meta pills */
.nv-single-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.nv-single-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(127,199,217,0.15);
    border: 1px solid rgba(127,199,217,0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #7FC7D9;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s;
}

.nv-single-cat-pill:hover {
    background: rgba(127,199,217,0.25);
    border-color: rgba(127,199,217,0.5);
    color: #a8e0eb;
}

.nv-single-cat-pill svg { width: 14px; height: 14px; }

.nv-single-date-pill,
.nv-single-read-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.nv-single-date-pill svg,
.nv-single-read-pill svg { width: 14px; height: 14px; }

.nv-single-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Content */
.nv-single-content {
    position: relative;
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #f0f9fc 0%, #e6f4f9 50%, #dceef5 100%);
}

.nv-single-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #7FC7D9 30%, #3A9BB5 50%, #7FC7D9 70%, transparent 90%);
    opacity: 0.5;
}

.nv-single-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

.nv-single-article {
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

/* Featured image */
.nv-single-featured {
    width: 100%;
    overflow: hidden;
}

.nv-single-featured img {
    width: 100%;
    height: auto;
    display: block;
}

/* Body */
.nv-single-body {
    padding: 48px;
}

.nv-single-body h1,
.nv-single-body h2,
.nv-single-body h3,
.nv-single-body h4 {
    font-family: 'Sora', sans-serif;
    color: #1F2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.nv-single-body h2 { font-size: 28px; margin-top: 40px; }
.nv-single-body h3 { font-size: 22px; margin-top: 32px; }
.nv-single-body h4 { font-size: 18px; margin-top: 24px; }

.nv-single-body p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.nv-single-body a {
    color: #3A9BB5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.nv-single-body a:hover { color: #2a7f95; text-decoration: underline; }

.nv-single-body ul,
.nv-single-body ol {
    margin: 0 0 20px 24px;
    color: #4B5563;
    line-height: 1.8;
}

.nv-single-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
}

.nv-single-body blockquote {
    border-left: 4px solid #7FC7D9;
    padding: 20px 24px;
    margin: 24px 0;
    background: rgba(127,199,217,0.06);
    border-radius: 0 16px 16px 0;
    color: #374151;
    font-style: italic;
}

.nv-single-body pre,
.nv-single-body code {
    background: #F3F4F6;
    border-radius: 8px;
    font-size: 14px;
}

.nv-single-body pre {
    padding: 20px;
    overflow-x: auto;
    margin: 24px 0;
}

.nv-single-body code {
    padding: 2px 6px;
}

/* Tags footer */
.nv-single-footer {
    padding: 24px 48px 32px;
    border-top: 1px solid rgba(127,199,217,0.1);
}

.nv-single-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nv-single-tags-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
}

.nv-single-tags-label svg { width: 16px; height: 16px; }

.nv-single-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(127,199,217,0.08);
    border: 1px solid rgba(127,199,217,0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #3A9BB5;
    text-decoration: none;
    transition: all 0.3s;
}

.nv-single-tag:hover {
    background: rgba(127,199,217,0.18);
    border-color: rgba(127,199,217,0.4);
    transform: translateY(-2px);
}

/* Post Navigation */
.nv-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.nv-post-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.1);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

.nv-post-nav-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(127,199,217,0.12);
    border-color: rgba(127,199,217,0.25);
}

.nv-post-nav-arrow {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(127,199,217,0.1);
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.nv-post-nav-arrow svg { width: 20px; height: 20px; color: #3A9BB5; }

.nv-post-nav-item:hover .nv-post-nav-arrow {
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
}

.nv-post-nav-item:hover .nv-post-nav-arrow svg { color: white; }

.nv-post-nav-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.nv-post-nav-title {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.4;
}

.nv-post-nav-next { justify-content: flex-end; }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .nv-arc-hero,
    .nv-page-hero,
    .nv-single-hero { padding: 100px 20px 50px; }
    
    .nv-arc-content,
    .nv-single-content { padding: 60px 0 80px; }
    .nv-arc-container,
    .nv-page-container,
    .nv-single-container { padding: 0 24px; }
    
    .nv-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nv-page-body,
    .nv-single-body { padding: 28px; }
    .nv-page-body h2,
    .nv-single-body h2 { font-size: 22px; }
    .nv-page-body p,
    .nv-single-body p { font-size: 15px; }
    
    .nv-single-footer { padding: 20px 28px 24px; }
    
    .nv-post-nav {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .nv-post-nav-item { padding: 18px; }
    
    .nv-search-hero-form { margin-top: 16px; }
    
    .nv-no-results { padding: 48px 20px; }
}

@media (max-width: 480px) {
    .nv-arc-hero,
    .nv-page-hero,
    .nv-single-hero { padding: 90px 16px 40px; }
    
    .nv-post-card-body { padding: 20px; }
    .nv-post-card-title { font-size: 17px; }
    
    .nv-page-body,
    .nv-single-body { padding: 20px; }
    
    .nv-single-footer { padding: 16px 20px 20px; }
    
    .nv-single-meta-row { gap: 6px; }
}