/* ============================================================
   ginger-ninja-theme — Main Stylesheet
   CSS-Prefix: vm-
   ============================================================ */

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
    --vm-primary: #1A2744;
    --vm-secondary: #00BFA6;
    --vm-accent: #FFB020;
    --vm-bg: #F7F9FC;
    --vm-text: #2D3436;
    --vm-white: #FFFFFF;
    --vm-light-gray: #E8ECF1;
    --vm-muted: #636E72;
    --vm-max-width: 1040px;
    --vm-narrow: 720px;
    --vm-font-heading: 'Manrope', sans-serif;
    --vm-font-body: 'Inter', sans-serif;
    --vm-radius: 12px;
    --vm-radius-sm: 8px;
    --vm-shadow: 0 2px 12px rgba(26, 39, 68, 0.06);
    --vm-shadow-hover: 0 8px 24px rgba(26, 39, 68, 0.1);
    --vm-transition: 0.2s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--vm-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--vm-text);
    background-color: var(--vm-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--vm-font-heading);
    color: var(--vm-primary);
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 1.75rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

a {
    color: var(--vm-secondary);
    text-decoration: none;
    transition: color var(--vm-transition);
}
a:hover { color: #009e89; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.5em; }
li { margin-bottom: 0.4em; }

.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%); height: 1px; margin: -1px;
    overflow: hidden; padding: 0; position: absolute;
    width: 1px; word-wrap: normal;
}

/* ============================================================
   Layout / Container
   ============================================================ */
.vm-container {
    max-width: var(--vm-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.vm-container-narrow {
    max-width: var(--vm-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.vm-container-legal {
    max-width: var(--vm-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.vm-main {
    min-height: 60vh;
}

/* ============================================================
   Header
   ============================================================ */
.vm-header {
    background: var(--vm-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.vm-header-inner {
    max-width: var(--vm-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.vm-header-brand {
    flex-shrink: 0;
}

.vm-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.vm-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.vm-logo-text {
    font-family: var(--vm-font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--vm-white);
    letter-spacing: -0.02em;
}

.vm-logo-accent {
    color: var(--vm-secondary);
}

/* Logo groesser auf Frontpage */
.home .vm-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
}
.home .vm-logo-text {
    font-size: 26px;
}

/* Navigation */
.vm-nav .vm-nav-list {
    list-style: none;
    display: flex;
    gap: 28px;
    padding: 0;
    margin: 0;
}

.vm-nav .vm-nav-list li {
    margin: 0;
}

.vm-nav .vm-nav-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--vm-transition);
    white-space: nowrap;
}

.vm-nav .vm-nav-list a:hover,
.vm-nav .vm-nav-list .current-menu-item a {
    color: var(--vm-secondary);
}

/* Hamburger */
.vm-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.vm-hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--vm-white);
    border-radius: 2px;
    transition: transform var(--vm-transition), opacity var(--vm-transition);
}

.vm-hamburger[aria-expanded="true"] .vm-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.vm-hamburger[aria-expanded="true"] .vm-hamburger-line:nth-child(2) {
    opacity: 0;
}
.vm-hamburger[aria-expanded="true"] .vm-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   Hero Section
   ============================================================ */
.vm-hero {
    background: linear-gradient(135deg, var(--vm-primary) 0%, #0D3B66 50%, #00BFA6 100%);
    padding: 72px 24px;
}

.vm-hero-inner {
    max-width: var(--vm-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.vm-hero-title {
    font-family: var(--vm-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vm-white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.vm-hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.vm-hero-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-hero-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vm-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--vm-primary);
    font-family: var(--vm-font-heading);
    flex-shrink: 0;
}

.vm-hero-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.vm-hero-meta strong {
    color: var(--vm-white);
    font-weight: 600;
}

/* Hero Card (Glassmorphism) */
.vm-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vm-hero-card-title {
    font-family: var(--vm-font-heading);
    font-size: 17px;
    color: var(--vm-accent);
    margin-bottom: 16px;
    font-weight: 700;
}

.vm-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-hero-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.vm-hero-list li:last-child {
    border-bottom: none;
}

.vm-hero-rating {
    color: var(--vm-accent);
    font-size: 13px;
    letter-spacing: 1px;
}

/* ============================================================
   Trust Bar
   ============================================================ */
.vm-trust-bar {
    background: var(--vm-white);
    border-bottom: 1px solid var(--vm-light-gray);
    padding: 16px 24px;
}

.vm-trust-inner {
    max-width: var(--vm-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    color: var(--vm-muted);
}

.vm-trust-inner strong {
    color: var(--vm-primary);
    font-weight: 700;
}

/* ============================================================
   Sections
   ============================================================ */
.vm-section {
    padding: 48px 0;
}

.vm-section-alt {
    background: var(--vm-white);
    border-top: 1px solid var(--vm-light-gray);
    border-bottom: 1px solid var(--vm-light-gray);
}

.vm-section-title {
    font-family: var(--vm-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vm-primary);
    margin-bottom: 8px;
}

.vm-section-sub {
    color: var(--vm-muted);
    font-size: 15px;
    margin-bottom: 32px;
}

/* ============================================================
   Card Grid
   ============================================================ */
.vm-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.vm-card {
    background: var(--vm-white);
    border-radius: var(--vm-radius);
    overflow: hidden;
    border: 1px solid var(--vm-light-gray);
    transition: transform var(--vm-transition), box-shadow var(--vm-transition);
}

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

.vm-card-img {
    height: 160px;
    overflow: hidden;
}

.vm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-card-img-placeholder {
    background: linear-gradient(135deg, var(--vm-primary), #0D3B66);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-card-img-placeholder a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.vm-card-icon {
    font-size: 48px;
    color: var(--vm-secondary);
}

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

.vm-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--vm-secondary);
    margin-bottom: 8px;
}

.vm-card-title {
    font-family: var(--vm-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--vm-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.vm-card-title a {
    color: inherit;
    text-decoration: none;
}

.vm-card-title a:hover {
    color: var(--vm-secondary);
}

.vm-card-excerpt {
    font-size: 14px;
    color: var(--vm-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CTA Link
   ============================================================ */
.vm-cta-link {
    display: inline-block;
    font-family: var(--vm-font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--vm-secondary);
    transition: color var(--vm-transition);
}

.vm-cta-link:hover {
    color: var(--vm-primary);
}

/* ============================================================
   Article / Single Post
   ============================================================ */
.vm-article {
    max-width: var(--vm-narrow);
    margin: 0 auto;
    padding: 48px 0;
}

.vm-article-header {
    margin-bottom: 32px;
}

.vm-article-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 191, 166, 0.1);
    color: var(--vm-secondary);
    margin-bottom: 12px;
}

.vm-article-badge:hover {
    background: rgba(0, 191, 166, 0.2);
    color: var(--vm-secondary);
}

.vm-article-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.vm-article-meta {
    font-size: 13px;
    color: var(--vm-muted);
}

.vm-article-meta-sep {
    margin: 0 8px;
}

.vm-article-thumbnail {
    margin-bottom: 32px;
    border-radius: var(--vm-radius);
    overflow: hidden;
}

.vm-article-thumbnail img {
    width: 100%;
    height: auto;
}

.vm-article-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.vm-article-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.vm-article-content h3 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.vm-article-content p {
    margin-bottom: 1rem;
}

.vm-article-content ul,
.vm-article-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5em;
}

.vm-article-content li {
    margin-bottom: 0.5em;
}

.vm-article-content blockquote {
    border-left: 3px solid var(--vm-secondary);
    padding: 16px 20px;
    margin: 1.5rem 0;
    background: rgba(0, 191, 166, 0.04);
    border-radius: 0 var(--vm-radius-sm) var(--vm-radius-sm) 0;
    font-style: italic;
    color: var(--vm-muted);
}

.vm-article-content a {
    color: var(--vm-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vm-article-content a:hover {
    color: var(--vm-primary);
}

.vm-article-content img {
    border-radius: var(--vm-radius-sm);
    margin: 1.5rem 0;
}

/* ── Tables (shared across all content areas) ── */
.vm-article-content table,
.vm-page-content table,
.vm-page-intro table,
.vm-legal-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    background: var(--vm-white);
    border-radius: var(--vm-radius);
    overflow: hidden;
    border: 1px solid var(--vm-light-gray);
    box-shadow: var(--vm-shadow);
}

.vm-article-content thead,
.vm-page-content thead,
.vm-page-intro thead,
.vm-legal-content thead {
    position: sticky;
    top: 0;
}

.vm-article-content th,
.vm-page-content th,
.vm-page-intro th,
.vm-legal-content th {
    background: var(--vm-primary);
    color: var(--vm-white);
    padding: 14px 18px;
    text-align: left;
    font-family: var(--vm-font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.vm-article-content th:first-child,
.vm-page-content th:first-child,
.vm-page-intro th:first-child,
.vm-legal-content th:first-child {
    border-radius: var(--vm-radius) 0 0 0;
}

.vm-article-content th:last-child,
.vm-page-content th:last-child,
.vm-page-intro th:last-child,
.vm-legal-content th:last-child {
    border-radius: 0 var(--vm-radius) 0 0;
}

.vm-article-content td,
.vm-page-content td,
.vm-page-intro td,
.vm-legal-content td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--vm-light-gray);
    font-size: 14px;
    line-height: 1.5;
    vertical-align: top;
}

.vm-article-content tr:last-child td,
.vm-page-content tr:last-child td,
.vm-page-intro tr:last-child td,
.vm-legal-content tr:last-child td {
    border-bottom: none;
}

.vm-article-content tbody tr:nth-child(even) td,
.vm-page-content tbody tr:nth-child(even) td,
.vm-page-intro tbody tr:nth-child(even) td,
.vm-legal-content tbody tr:nth-child(even) td {
    background: #F7F9FC;
}

.vm-article-content tbody tr:hover td,
.vm-page-content tbody tr:hover td,
.vm-page-intro tbody tr:hover td,
.vm-legal-content tbody tr:hover td {
    background: rgba(0, 191, 166, 0.06);
}

/* Table cell links */
.vm-article-content td a,
.vm-page-content td a,
.vm-page-intro td a,
.vm-legal-content td a {
    color: var(--vm-secondary);
    font-weight: 500;
    text-decoration: none;
}

.vm-article-content td a:hover,
.vm-page-content td a:hover,
.vm-page-intro td a:hover,
.vm-legal-content td a:hover {
    text-decoration: underline;
}

/* First column emphasis */
.vm-article-content td:first-child,
.vm-page-content td:first-child,
.vm-page-intro td:first-child,
.vm-legal-content td:first-child {
    font-weight: 600;
    color: var(--vm-primary);
}

/* Responsive tables */
@media (max-width: 767px) {
    .vm-article-content table,
    .vm-page-content table,
    .vm-page-intro table,
    .vm-legal-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .vm-article-content th,
    .vm-page-content th,
    .vm-page-intro th,
    .vm-legal-content th,
    .vm-article-content td,
    .vm-page-content td,
    .vm-page-intro td,
    .vm-legal-content td {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Quellenangaben */
.vm-sources {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--vm-light-gray);
}

.vm-sources h3,
.vm-sources h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--vm-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.vm-sources ol,
.vm-sources ul {
    font-size: 13px;
    color: var(--vm-muted);
}

/* Disclaimer */
.vm-disclaimer {
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: var(--vm-radius-sm);
    padding: 16px 20px;
    margin-bottom: 32px;
    font-size: 13px;
    line-height: 1.6;
    color: #5D4037;
}

.vm-disclaimer strong {
    color: #E65100;
}

/* Author Box */
.vm-author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--vm-white);
    border: 1px solid var(--vm-light-gray);
    border-radius: var(--vm-radius);
    padding: 24px;
}

.vm-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--vm-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--vm-primary);
    font-family: var(--vm-font-heading);
    flex-shrink: 0;
}

.vm-author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--vm-primary);
    margin-bottom: 4px;
}

.vm-author-bio {
    font-size: 14px;
    color: var(--vm-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   Page Layout
   ============================================================ */
.vm-page {
    padding: 48px 0;
}

.vm-page-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.vm-page-header {
    margin-bottom: 24px;
}

.vm-page-intro {
    max-width: var(--vm-narrow);
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.vm-page-intro p {
    margin-bottom: 1rem;
}

.vm-page-content {
    font-size: 16px;
    line-height: 1.8;
}

.vm-page-content p {
    margin-bottom: 1rem;
}

.vm-page-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.vm-page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.vm-page-content ul,
.vm-page-content ol {
    margin-bottom: 1rem;
}

/* ============================================================
   Legal Pages
   ============================================================ */
.vm-legal {
    padding: 48px 0;
}

.vm-legal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.vm-legal-content {
    font-size: 15px;
    line-height: 1.8;
}

.vm-legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.vm-legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.vm-legal-content p {
    margin-bottom: 0.75rem;
}

.vm-legal-content ul,
.vm-legal-content ol {
    margin-bottom: 1rem;
}

.vm-legal-content a {
    color: var(--vm-secondary);
    text-decoration: underline;
}

.vm-legal-updated {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vm-light-gray);
    color: var(--vm-muted);
    font-size: 13px;
}

/* ============================================================
   Archive
   ============================================================ */
.vm-archive-header {
    padding: 32px 0;
    margin-bottom: 16px;
}

.vm-archive-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.vm-archive-desc {
    color: var(--vm-muted);
    font-size: 15px;
    max-width: 600px;
}

/* ============================================================
   404
   ============================================================ */
.vm-404 {
    text-align: center;
    padding: 80px 24px;
}

.vm-404-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.vm-404-text {
    color: var(--vm-muted);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.vm-404-search {
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.vm-404-link {
    margin-top: 16px;
}

/* ============================================================
   Search Form
   ============================================================ */
.vm-search-form {
    display: flex;
    gap: 8px;
}

.vm-search-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--vm-light-gray);
    border-radius: var(--vm-radius-sm);
    font-size: 14px;
    font-family: var(--vm-font-body);
    color: var(--vm-text);
    background: var(--vm-white);
    outline: none;
    transition: border-color var(--vm-transition);
}

.vm-search-input:focus {
    border-color: var(--vm-secondary);
}

.vm-search-submit {
    padding: 10px 20px;
    background: var(--vm-secondary);
    color: var(--vm-white);
    border: none;
    border-radius: var(--vm-radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--vm-font-body);
    cursor: pointer;
    transition: background var(--vm-transition);
}

.vm-search-submit:hover {
    background: #009e89;
}

/* ============================================================
   Pagination
   ============================================================ */
.vm-pagination {
    margin-top: 48px;
    text-align: center;
}

.vm-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vm-pagination .nav-links a,
.vm-pagination .nav-links span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: var(--vm-radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--vm-transition);
}

.vm-pagination .nav-links a {
    color: var(--vm-primary);
    background: var(--vm-white);
    border: 1px solid var(--vm-light-gray);
}

.vm-pagination .nav-links a:hover {
    background: var(--vm-secondary);
    color: var(--vm-white);
    border-color: var(--vm-secondary);
}

.vm-pagination .nav-links .current {
    background: var(--vm-primary);
    color: var(--vm-white);
    border: 1px solid var(--vm-primary);
}

/* ============================================================
   Footer
   ============================================================ */
.vm-footer {
    background: var(--vm-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 24px 0;
    margin-top: 64px;
}

.vm-footer-inner {
    max-width: var(--vm-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.vm-footer-heading {
    font-family: var(--vm-font-heading);
    color: var(--vm-white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vm-footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}

.vm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-footer-links li {
    margin-bottom: 4px;
}

.vm-footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--vm-transition);
    line-height: 1.8;
}

.vm-footer-links a:hover {
    color: var(--vm-secondary);
}

.vm-footer-bottom {
    max-width: var(--vm-max-width);
    margin: 24px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   No Results
   ============================================================ */
.vm-no-results {
    text-align: center;
    padding: 48px 0;
    color: var(--vm-muted);
    font-size: 16px;
}

/* ============================================================
   eWallet Grid (page-ewallets)
   ============================================================ */
.vm-ewallet-grid {
    margin-top: 32px;
}

/* ============================================================
   WP Block Editor Compatibility
   ============================================================ */
.wp-block-image { margin: 1.5rem 0; }
.wp-block-image img { border-radius: var(--vm-radius-sm); }
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-separator {
    border: none;
    border-top: 1px solid var(--vm-light-gray);
    margin: 2rem 0;
}

/* ============================================================
   Responsive: Mobile First
   ============================================================ */

/* Mobile (default) */
@media (max-width: 767px) {
    .vm-hamburger {
        display: flex;
    }

    .vm-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--vm-primary);
        padding: 16px 24px 24px;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .vm-nav.vm-nav-open {
        display: block;
    }

    .vm-nav .vm-nav-list {
        flex-direction: column;
        gap: 0;
    }

    .vm-nav .vm-nav-list li {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .vm-nav .vm-nav-list a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
    }

    .vm-hero {
        padding: 48px 24px;
    }

    .vm-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vm-hero-title {
        font-size: 1.75rem;
    }

    .vm-trust-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .vm-card-grid {
        grid-template-columns: 1fr;
    }

    .vm-footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vm-article-title {
        font-size: 1.75rem;
    }

    .vm-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }
}

/* Tablet */
@media (min-width: 768px) {
    .vm-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vm-footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .vm-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vm-hero-title {
        font-size: 2.5rem;
    }

    .vm-hero {
        padding: 80px 24px;
    }
}

/* Large */
@media (min-width: 1280px) {
    .vm-hero-title {
        font-size: 2.75rem;
    }
}
