/*
Theme Name: VERIDU Theme
Theme URI: https://thapgia.com/
Author: VERIDU Ecosystem Team
Author URI: https://thapgia.com/
Description: Theme cao cấp dành cho Hệ sinh thái Học Kinh Thánh Công Giáo VERIDU (VIA · VITA · VERITAS). Thiết kế Dark Mode Glassmorphism hiện đại, hỗ trợ E-learning, Quiz tương tác và Trình đọc Kinh Thánh SPA.
Version: 2.5.0
License: GNU General Public License v2 or later
Text Domain: veridu-theme
*/

/* ═══════════════════════════════════════════════════════════
   1. CORE DESIGN SYSTEM & TOKENS
═══════════════════════════════════════════════════════════ */
:root {
    /* Color Palette */
    --vd-gold: #F5C518;
    --vd-gold-bright: #FFD700;
    --vd-gold-glow: rgba(245, 197, 24, 0.35);
    --vd-gold-dark: #D4AF37;
    
    --vd-navy-dark: #080C17;
    --vd-navy-card: rgba(15, 23, 42, 0.75);
    --vd-navy-border: rgba(245, 197, 24, 0.18);
    --vd-navy-input: rgba(30, 41, 59, 0.8);

    --vd-text-main: #F8FAFC;
    --vd-text-muted: #94A3B8;
    --vd-text-accent: #E2E8F0;

    --vd-bg-light: #F8FAFC;
    --vd-card-light: #FFFFFF;
    --vd-text-light-main: #0F172A;
    --vd-text-light-muted: #64748B;

    /* Fonts */
    --vd-font-serif: 'Playfair Display', Georgia, serif;
    --vd-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --vd-font-display: 'Outfit', 'Inter', sans-serif;

    /* Transitions & Shadows */
    --vd-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --vd-transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --vd-shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 197, 24, 0.05);
    --vd-shadow-glow: 0 0 35px rgba(245, 197, 24, 0.25);
    --vd-radius-lg: 20px;
    --vd-radius-md: 14px;
    --vd-radius-sm: 8px;
}

/* Light Theme Overrides */
[data-theme="light"] {
    --vd-navy-dark: #F1F5F9;
    --vd-navy-card: rgba(255, 255, 255, 0.85);
    --vd-navy-border: rgba(212, 175, 55, 0.25);
    --vd-text-main: #0F172A;
    --vd-text-muted: #475569;
    --vd-text-accent: #1E293B;
    --vd-shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

/* Base Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--vd-font-sans);
    background-color: var(--vd-navy-dark);
    color: var(--vd-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--vd-font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--vd-text-main);
}

a {
    color: var(--vd-gold);
    text-decoration: none;
    transition: var(--vd-transition-fast);
}

a:hover {
    color: var(--vd-gold-bright);
}

/* ═══════════════════════════════════════════════════════════
   2. APP LAYOUT & SIDEBAR (Desktop)
═══════════════════════════════════════════════════════════ */
.vd-app-wrapper {
    display: flex;
    min-height: 100vh;
}

.vd-sidebar {
    width: 280px;
    background: var(--vd-navy-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--vd-navy-border);
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
}

.vd-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--vd-navy-border);
    margin-bottom: 18px;
}

.vd-sidebar-logo .brand-title,
.vd-mobile-logo .mobile-brand-title {
    font-family: var(--vd-font-serif);
    font-size: 22px;
    font-weight: 900;
    color: var(--vd-gold);
    letter-spacing: 2.5px;
    text-shadow: 0 0 15px rgba(245, 197, 24, 0.4);
}

.vd-sidebar-logo .logo-tagline {
    display: block;
    font-size: 9.5px;
    letter-spacing: 2px;
    color: var(--vd-text-muted);
    font-weight: 600;
}

.vd-sidebar-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.vd-icon-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--vd-navy-border);
    color: var(--vd-gold);
    width: 38px;
    height: 38px;
    border-radius: var(--vd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: var(--vd-transition-fast);
}

.vd-icon-btn:hover {
    background: rgba(245, 197, 24, 0.15);
    border-color: var(--vd-gold);
    transform: translateY(-2px);
}

/* Sidebar Search Widget */
.vd-sidebar-search {
    margin-bottom: 20px;
}

.vd-sidebar-search .search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.vd-sidebar-search .search-icon {
    position: absolute;
    left: 12px;
    font-size: 13px;
    opacity: 0.7;
}

.vd-sidebar-search .search-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vd-navy-border);
    border-radius: var(--vd-radius-sm);
    padding: 8px 12px 8px 34px;
    color: var(--vd-text-main);
    font-size: 13px;
    outline: none;
    transition: var(--vd-transition-fast);
}

.vd-sidebar-search .search-field:focus {
    border-color: var(--vd-gold);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(245, 197, 24, 0.2);
}

/* Navigation Menu List */
.vd-sidebar-nav {
    flex: 1;
}

.vd-nav-label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vd-text-muted);
    font-weight: 700;
    margin: 18px 0 8px 6px;
}

.vd-sidebar-nav ul {
    list-style: none;
}

.vd-sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    border-radius: var(--vd-radius-sm);
    color: var(--vd-text-accent);
    font-size: 14px;
    font-weight: 500;
    transition: var(--vd-transition-fast);
}

.vd-sidebar-nav li a:hover,
.vd-sidebar-nav li.current_page_item a {
    background: rgba(245, 197, 24, 0.12);
    color: var(--vd-gold);
    border-left: 3px solid var(--vd-gold);
}

.vd-sidebar-quote {
    background: rgba(245, 197, 24, 0.05);
    border: 1px dashed var(--vd-navy-border);
    padding: 12px;
    border-radius: var(--vd-radius-sm);
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--vd-gold-dark);
}

.vd-sidebar-quote p {
    font-style: italic;
    font-family: var(--vd-font-serif);
}

.vd-sidebar-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--vd-navy-border);
    font-size: 11px;
    color: var(--vd-text-muted);
    text-align: center;
}

/* Main Content Container */
.vd-main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ═══════════════════════════════════════════════════════════
   3. HERO SECTION — Radiant + Particles + Bento Grid
═══════════════════════════════════════════════════════════ */
.vd-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: radial-gradient(circle at 50% 30%, rgba(245, 197, 24, 0.12) 0%, rgba(8, 12, 23, 0.95) 70%);
    overflow: hidden;
    text-align: center;
}

#vd-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.vd-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.vd-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid var(--vd-gold-glow);
    border-radius: 50px;
    color: var(--vd-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--vd-shadow-glow);
}

.vd-hero-logo-wrapper {
    margin-bottom: 16px;
}

.vd-hero-logo-img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.5));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.vd-hero-title h1, .vd-hero-title span {
    font-family: var(--vd-font-serif);
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 900;
    color: var(--vd-gold);
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(245, 197, 24, 0.35);
    margin-bottom: 10px;
}

.vd-hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--vd-text-muted);
    max-width: 680px;
    margin: 0 auto 20px auto;
    font-weight: 400;
}

.vd-hero-tagline {
    font-family: var(--vd-font-serif);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--vd-gold-dark);
    margin-bottom: 32px;
    font-weight: 700;
}

/* Quick Search Box in Hero */
.vd-hero-search-box {
    max-width: 620px;
    margin: 0 auto 36px auto;
}

.vd-hero-search-inner {
    display: flex;
    align-items: center;
    background: var(--vd-navy-card);
    border: 1.5px solid var(--vd-navy-border);
    border-radius: 50px;
    padding: 6px 8px 6px 20px;
    backdrop-filter: blur(16px);
    box-shadow: var(--vd-shadow-card);
    transition: var(--vd-transition-smooth);
}

.vd-hero-search-inner:focus-within {
    border-color: var(--vd-gold);
    box-shadow: 0 0 25px rgba(245, 197, 24, 0.3);
}

.vd-hero-search-inner .search-icon {
    font-size: 18px;
    margin-right: 12px;
    opacity: 0.8;
}

.vd-hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--vd-text-main);
    font-size: 15px;
    outline: none;
}

.vd-hero-search-btn {
    background: linear-gradient(135deg, var(--vd-gold) 0%, var(--vd-gold-dark) 100%);
    color: #080C17;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--vd-transition-fast);
}

.vd-hero-search-btn:hover {
    box-shadow: 0 0 15px rgba(245, 197, 24, 0.5);
    transform: scale(1.02);
}

/* Hero CTA Buttons */
.vd-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.vd-btn-primary, .vd-btn-outline, .vd-btn-gold {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--vd-transition-smooth);
}

.vd-btn-primary {
    background: linear-gradient(135deg, var(--vd-gold) 0%, #D4AF37 100%);
    color: #080C17;
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}

.vd-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.5);
    color: #080C17;
}

.vd-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vd-navy-border);
    color: var(--vd-text-main);
    backdrop-filter: blur(10px);
}

.vd-btn-outline:hover {
    border-color: var(--vd-gold);
    background: rgba(245, 197, 24, 0.1);
    color: var(--vd-gold);
    transform: translateY(-3px);
}

.vd-btn-gold {
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid var(--vd-gold);
    color: var(--vd-gold);
}

.vd-btn-gold:hover {
    background: var(--vd-gold);
    color: #080C17;
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════
   4. BENTO GRID FEATURES SYSTEM
═══════════════════════════════════════════════════════════ */
.vd-section {
    padding: 80px 0;
    position: relative;
}

.vd-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.vd-section-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--vd-gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.vd-section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
}

.vd-divider {
    width: 60px;
    height: 3px;
    background: var(--vd-gold);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.vd-section-desc {
    text-align: center;
    color: var(--vd-text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 16px;
}

/* Bento Grid */
.vd-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vd-bento-card {
    background: var(--vd-navy-card);
    border: 1px solid var(--vd-navy-border);
    border-radius: var(--vd-radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--vd-transition-smooth);
    box-shadow: var(--vd-shadow-card);
    position: relative;
    overflow: hidden;
}

.vd-bento-card:hover {
    border-color: var(--vd-gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 197, 24, 0.2);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(245, 197, 24, 0.08) 100%);
}

.bento-wide {
    grid-column: span 3;
}

.bento-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: rgba(245, 197, 24, 0.1);
    color: var(--vd-gold);
    border-radius: 20px;
    margin-bottom: 20px;
}

.bento-icon {
    font-size: 38px;
    margin-bottom: 16px;
}

.vd-bento-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--vd-text-main);
}

.vd-bento-card p {
    color: var(--vd-text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.bento-link {
    color: var(--vd-gold);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════════════════════════════════════════════════════
   5. SCRIPTURE REFLECTION CARD (Lời Chúa)
═══════════════════════════════════════════════════════════ */
.vd-votd-section {
    background: linear-gradient(180deg, rgba(8, 12, 23, 1) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.vd-votd-card-wrapper {
    background: var(--vd-navy-card);
    border: 1px solid var(--vd-navy-border);
    border-radius: var(--vd-radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: var(--vd-shadow-card);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.vd-votd-quote-mark {
    font-family: var(--vd-font-serif);
    font-size: 80px;
    color: var(--vd-gold-glow);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

.vd-votd-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.vd-votd-date {
    font-size: 13px;
    color: var(--vd-text-muted);
    font-weight: 500;
}

.vd-votd-content p {
    font-family: var(--vd-font-serif);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.6;
    color: var(--vd-gold-bright);
    margin-bottom: 16px;
}

.vd-votd-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--vd-navy-border);
}

.vd-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vd-navy-border);
    color: var(--vd-text-main);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--vd-transition-fast);
}

.vd-action-btn:hover {
    border-color: var(--vd-gold);
    color: var(--vd-gold);
}

.vd-action-btn.primary {
    background: rgba(245, 197, 24, 0.15);
    border-color: var(--vd-gold);
    color: var(--vd-gold);
}

/* ═══════════════════════════════════════════════════════════
   6. THREE PILLARS (VIA · VITA · VERITAS)
═══════════════════════════════════════════════════════════ */
.vd-vvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vd-vvv-card {
    background: var(--vd-navy-card);
    border: 1px solid var(--vd-navy-border);
    border-radius: var(--vd-radius-lg);
    padding: 32px 24px;
    backdrop-filter: blur(16px);
    transition: var(--vd-transition-smooth);
}

.vd-vvv-card.highlighted {
    border-color: var(--vd-gold);
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.15);
}

.vd-vvv-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.vd-vvv-latin {
    font-family: var(--vd-font-serif);
    font-size: 28px;
    font-weight: 900;
    color: var(--vd-gold);
}

.vd-vvv-vi {
    font-size: 13px;
    color: var(--vd-text-muted);
    font-weight: 600;
}

.vd-vvv-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.vd-vvv-verse {
    font-style: italic;
    font-size: 13px;
    color: var(--vd-gold-dark);
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   7. MISSION & FOOTER
═══════════════════════════════════════════════════════════ */
.vd-mission-cta {
    padding: 60px 0;
}

.vd-mission-card {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.15) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid var(--vd-gold);
    border-radius: var(--vd-radius-lg);
    padding: 48px 36px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.vd-mission-badge {
    font-family: var(--vd-font-serif);
    color: var(--vd-gold);
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vd-mission-card h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 16px;
}

.vd-mission-card p {
    color: var(--vd-text-muted);
    max-width: 640px;
    margin: 0 auto 30px auto;
    font-size: 16px;
}

.vd-mission-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.vd-footer {
    background: rgba(4, 7, 14, 0.95);
    border-top: 1px solid var(--vd-navy-border);
    padding: 60px 0 30px 0;
}

.vd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.vd-footer-brand .brand-title {
    font-family: var(--vd-font-serif);
    font-size: 24px;
    font-weight: 900;
    color: var(--vd-gold);
    letter-spacing: 2px;
}

.vd-footer-brand p {
    color: var(--vd-text-muted);
    font-size: 14px;
    margin: 14px 0 20px 0;
    max-width: 380px;
}

.vd-footer-social {
    display: flex;
    gap: 10px;
}

.vd-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vd-navy-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vd-gold);
}

.vd-footer-col h4 {
    color: var(--vd-text-main);
    font-size: 16px;
    margin-bottom: 18px;
}

.vd-footer-col ul {
    list-style: none;
}

.vd-footer-col li {
    margin-bottom: 10px;
}

.vd-footer-col a {
    color: var(--vd-text-muted);
    font-size: 14px;
}

.vd-footer-col a:hover {
    color: var(--vd-gold);
}

.vd-footer-bottom {
    border-top: 1px solid var(--vd-navy-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--vd-text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

/* ═══════════════════════════════════════════════════════════
   8. MOBILE BOTTOM APP BAR & RESPONSIVE
═══════════════════════════════════════════════════════════ */
.vd-mobile-bar {
    display: none;
}

.vd-mobile-bottom-nav {
    display: none;
}

@media (max-width: 1024px) {
    .vd-sidebar {
        display: none;
    }
    
    .vd-main-content {
        margin-left: 0;
    }

    .vd-mobile-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        background: var(--vd-navy-card);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--vd-navy-border);
        position: sticky;
        top: 0;
        z-index: 90;
    }

    .vd-mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--vd-navy-border);
        padding: 8px 0;
        z-index: 100;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--vd-text-muted);
        font-size: 11px;
        gap: 3px;
    }

    .bottom-nav-item.active, .bottom-nav-item:hover {
        color: var(--vd-gold);
    }

    .bottom-nav-item .nav-icon {
        font-size: 18px;
    }

    .vd-footer {
        padding-bottom: 80px; /* Space for mobile bottom bar */
    }

    .vd-bento-grid, .vd-vvv-grid {
        grid-template-columns: 1fr;
    }

    .bento-large, .bento-wide {
        grid-column: span 1;
    }

    .vd-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
