/* =====================================================
   VEZOZA THEME — assets/css/style.css
   Converts all Tailwind utilities to native CSS.
   Design: minimalist black, #888888 borders, #B4B4B4 muted text
   ===================================================== */

/* ─── CSS Custom Properties ─────────────────────────── */
:root {
    --color-bg:          #000000;
    --color-fg:          #ffffff;
    --color-muted:       #B4B4B4;
    --color-border:      #888888;
    --color-secondary:   #525252;
    --color-primary:     #ffffff;
    --color-primary-fg:  #000000;

    --radius-sm:  0.5rem;
    --radius-md:  0.75rem;
    --radius-lg:  1rem;
    --radius-xl:  1.5rem;
    --radius-2xl: 2rem;

    --container-max: 1440px;
    --nav-height:    72px;

    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-base: 200ms ease;
}

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

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

:focus-visible {
    outline: 2px solid rgba(255,255,255,0.70);
    outline-offset: 3px;
    border-radius: 2px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-fg);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ─── Layout Utilities ───────────────────────────────── */
.vz-container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 3rem;   /* px-12 */
}

/* ─── Navigation ─────────────────────────────────────── */
.vz-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(136, 136, 136, 0.20);
    z-index: 50;
}

.vz-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.25rem;   /* py-5 */
}

.vz-nav__logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--color-fg);
}

.vz-nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;   /* gap-10 */
}

.vz-nav__links a {
    color: var(--color-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

.vz-nav__links a:hover {
    color: var(--color-fg);
}

.vz-nav__cta {
    display: none; /* hidden on mobile, shown on desktop via media query */
}

/* Hamburger burger button (mobile) */
.vz-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.vz-nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-fg);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ─── Buttons ────────────────────────────────────────── */
.vz-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-base),
                color var(--transition-base),
                border-color var(--transition-base),
                transform 150ms ease,
                box-shadow 150ms ease;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

/* Sizes */
.vz-btn {
    padding: 0.625rem 1.5rem;   /* default: py-2.5 px-6 */
}

.vz-btn--lg {
    padding: 1rem 2rem;          /* py-4 px-8 */
    font-size: 1.125rem;
}

/* Primary */
.vz-btn--primary {
    background-color: var(--color-fg);
    color: var(--color-primary-fg);
    border: 1px solid transparent;
}

.vz-btn--primary:hover {
    background-color: var(--color-muted);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.10);
}

/* Outline */
.vz-btn--outline {
    background-color: transparent;
    color: var(--color-fg);
    border: 1px solid var(--color-border);
}

.vz-btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(136, 136, 136, 0.70);
    transform: translateY(-2px);
}

/* ─── Tunnel-Hintergrundanimation (Startseite) ──────────
   Fixed Canvas hinter dem gesamten Seiteninhalt. Jeder Abschnitt,
   der darüber sichtbar sein soll, braucht position:relative +
   z-index >= 1 (sonst malt der fixed Canvas darüber). */
.page-tunnel-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;
    pointer-events: none;
}

/* ─── Sections ───────────────────────────────────────── */
.vz-section {
    position: relative;
    z-index: 1;
    padding-block: 8rem;   /* py-32 */
    padding-inline: 3rem;  /* px-12 */
}

.vz-section--gradient {
    background: linear-gradient(to bottom, #000000, rgba(82, 82, 82, 0.05));
}

.vz-section__header {
    text-align: center;
    margin-bottom: 5rem;   /* mb-20 */
}

.vz-section__header h2 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.vz-section__header p {
    font-size: 1.25rem;
    color: var(--color-muted);
}

/* ─── Hero ───────────────────────────────────────────── */
.vz-hero {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-height) + 6rem);  /* pt-40 */
    padding-bottom: 8rem;                          /* pb-32 */
    padding-inline: 3rem;                          /* px-12 */
}

.vz-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vz-hero__title {
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.vz-hero__lead {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.vz-hero__sub {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
}

.vz-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.vz-hero__visual {
    position: relative;
}

.vz-hero__card {
    background-color: rgba(82, 82, 82, 0.20);
    border: 1px solid rgba(136, 136, 136, 0.30);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.vz-hero__img {
    width: 100%;
    border-radius: var(--radius-md);
}

/* ─── Cards — 2-column ───────────────────────────────── */
.vz-cards-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vz-cards-2--stack {
    grid-template-columns: 1fr;
}

/* ─── Cards — 4-column ───────────────────────────────── */
.vz-cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* ─── Card Base ──────────────────────────────────────── */
.vz-card {
    background-color: rgba(82, 82, 82, 0.10);
    border: 1px solid rgba(136, 136, 136, 0.20);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: border-color var(--transition-base),
                background-color var(--transition-base),
                transform 200ms ease,
                box-shadow 200ms ease;
}

.vz-card:hover {
    border-color: rgba(136, 136, 136, 0.45);
    background-color: rgba(82, 82, 82, 0.16);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.40);
}

/* Platform cards have more padding */
.vz-card--platform {
    padding: 2.5rem;
}

.vz-card--platform h3 {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

/* Icon cards */
.vz-card--icon {
    padding: 2rem;
}

.vz-card--icon h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vz-card--icon p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Image card */
.vz-card--image {
    padding: 0;
    overflow: hidden;
}

.vz-card--image img {
    width: 100%;
    border-radius: 0;
}

.vz-card__body {
    padding: 2.5rem;
}

.vz-card__body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vz-card__desc {
    font-size: 1.125rem;
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* ─── Badge ──────────────────────────────────────────── */
.vz-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(136, 136, 136, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

/* ─── List ───────────────────────────────────────────── */
.vz-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.vz-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-muted);
}

.vz-list li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: var(--color-fg);
    border-radius: 50%;
    margin-top: 0.45em;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.10);
}

/* ─── Icon Box ───────────────────────────────────────── */
.vz-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: var(--color-fg);
    overflow: hidden;
}

.vz-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Infra Diagram ──────────────────────────────────── */
.vz-infra-diagram {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 3rem;
    background-color: rgba(82, 82, 82, 0.20);
    border: 1px solid rgba(136, 136, 136, 0.30);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.vz-infra-diagram img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Highlight Box ──────────────────────────────────── */
.vz-highlight-box {
    background: linear-gradient(to right, rgba(82,82,82,0.10), rgba(82,82,82,0.05));
    border: 1px solid rgba(136, 136, 136, 0.20);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
}

.vz-highlight-box p {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 48rem;
    margin-inline: auto;
}

.vz-highlight-box p strong {
    color: var(--color-fg);
    font-weight: 500;
}

.vz-highlight-box__sub {
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

/* ─── CTA Section ────────────────────────────────────── */
.vz-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(136, 136, 136, 0.30);
    border-radius: 1.5rem;
    padding: 5rem;
    text-align: center;
}

.vz-cta__title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.vz-cta__sub {
    font-size: 1.5rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
    max-width: 40rem;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.vz-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────── */
.vz-footer {
    border-top: 1px solid rgba(136, 136, 136, 0.20);
    padding-block: 4rem;
    padding-inline: 3rem;
}

.vz-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.vz-footer__logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vz-footer__brand p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.vz-footer__col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.vz-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vz-footer__col a {
    font-size: 0.875rem;
    color: var(--color-muted);
    transition: color var(--transition-base);
}

.vz-footer__col a:hover {
    color: var(--color-fg);
}

.vz-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(136, 136, 136, 0.20);
}

.vz-footer__bottom p {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.vz-footer__social {
    display: flex;
    gap: 1.5rem;
}

.vz-footer__social a {
    font-size: 0.875rem;
    color: var(--color-muted);
    transition: color var(--transition-base);
}

.vz-footer__social a:hover {
    color: var(--color-fg);
}

/* ─── Scroll Fade-in Animations ─────────────────────── */
.vz-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.vz-animate.vz-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── WordPress Admin Bar Offset ─────────────────────── */
.admin-bar .vz-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .vz-nav {
        top: 46px;
    }
}

/* ─── Responsive — Tablet (≤ 1024px) ────────────────── */
@media (max-width: 1024px) {
    .vz-container {
        padding-inline: 2rem;
    }

    .vz-section {
        padding-inline: 2rem;
    }

    .vz-hero {
        padding-inline: 2rem;
    }

    .vz-hero__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vz-hero__visual {
        order: -1;
    }

    .vz-hero__title {
        font-size: 3rem;
    }

    .vz-cards-4 {
        grid-template-columns: 1fr 1fr;
    }

    .vz-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ─── Responsive — Mobile (≤ 768px) ─────────────────── */
@media (max-width: 768px) {
    .vz-nav__links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        min-height: calc(100vh - var(--nav-height));
        background: rgba(0,0,0,.97);
        border-top: 1px solid rgba(255,255,255,.08);
        padding: 3rem 0 4rem;
        z-index: 40;
        align-items: flex-start;
    }

    .vz-nav__links > li {
        width: 100%;
        padding-inline: 1.75rem;
        padding-block: 0.875rem;
    }

    .vz-nav__links.is-open {
        display: flex;
    }

    .vz-nav__links a {
        font-size: 1.25rem;
        color: rgba(255,255,255,.9);
    }

    .vz-nav__burger {
        display: flex;
    }

    .vz-nav__cta {
        display: none !important;
    }

    /* Mobile-footer: Kontakt-Button + Social (nur Mobile) */
    .vz-nav__mobile-footer {
        border-bottom: none !important;
        margin-top: 1rem;
        padding-top: 2rem;
        padding-inline: 1.75rem;
        border-top: 1px solid rgba(255,255,255,.08) !important;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .vz-nav__mobile-cta {
        align-self: flex-start;
        justify-content: center;
        background-color: #ffffff !important;
        color: #0a0a0a !important;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.75rem 2rem;
        border-radius: 8px;
    }

    .vz-nav__mobile-cta:hover {
        background-color: #e5e5e5 !important;
        color: #0a0a0a !important;
    }

    .vz-nav__social {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
    }

    .vz-nav__social a {
        color: rgba(255,255,255,.4);
        transition: color .2s;
        border-bottom: none !important;
        padding: 0 !important;
        font-size: 0;
    }

    .vz-nav__social a:hover {
        color: rgba(255,255,255,.85);
    }

    /* Burger → X animation */
    .vz-nav__burger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .vz-nav__burger.is-open span:nth-child(2) {
        opacity: 0;
    }
    .vz-nav__burger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .vz-container,
    .vz-section,
    .vz-hero,
    .vz-footer,
    .vz-page-hero,
    .vz-back-bar {
        padding-inline: 1.25rem;
    }

    .vz-section {
        padding-block: 5rem;
    }

    .vz-section__header h2 {
        font-size: 2rem;
    }

    .vz-hero {
        padding-bottom: 5rem;
    }

    .vz-hero__title {
        font-size: 2.25rem;
    }

    .vz-hero__actions {
        flex-direction: column;
    }

    .vz-hero__actions .vz-btn {
        width: 100%;
        justify-content: center;
    }

    .vz-cards-2 {
        grid-template-columns: 1fr;
    }

    .vz-cards-4 {
        grid-template-columns: 1fr;
    }

    .vz-cta {
        padding: 2.5rem 1.5rem;
    }

    .vz-cta__title {
        font-size: 1.875rem;
    }

    .vz-cta__sub {
        font-size: 1.125rem;
    }

    .vz-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vz-cta__actions .vz-btn {
        justify-content: center;
    }

    .vz-footer {
        padding-inline: 1.25rem;
    }

    .vz-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .vz-footer__brand {
        grid-column: 1 / -1;
    }

    .vz-footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .vz-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Desktop Nav CTA visible ────────────────────────── */
@media (min-width: 769px) {
    .vz-nav__cta {
        display: inline-flex;
    }
}

/* =====================================================
   EXTENDED STYLES — v2 (new pages)
   ===================================================== */

/* ─── Logo ───────────────────────────────────────────── */
.vz-nav__logo-img {
    height: 2rem;
    width: auto;
    display: block;
}

.vz-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.vz-footer__logo-img {
    height: 2rem;
    width: auto;
    display: block;
}

/* ─── Page Hero ──────────────────────────────────────── */
.vz-page-hero {
    padding-top: calc(var(--nav-height) + 6rem);
    padding-bottom: 4rem;
    padding-inline: 3rem;
}

.vz-page-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.vz-page-hero__sub {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 48rem;
    line-height: 1.7;
}

/* ─── Section helpers ────────────────────────────────── */
.vz-section--flush-top  { padding-top: 2rem; }
.vz-section--border-top { border-top: 1px solid rgba(136,136,136,.20); }
.vz-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* ─── 3-column grid ──────────────────────────────────── */
.vz-cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ─── Back bar ───────────────────────────────────────── */
.vz-back-bar {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 1rem;
    padding-inline: 3rem;
}

/* ─── Link with arrow ────────────────────────────────── */
.vz-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-fg);
    font-size: 0.9375rem;
    transition: gap var(--transition-base);
    text-decoration: none;
}

.vz-link-arrow:hover { gap: 0.75rem; }
.vz-link-arrow--back { color: var(--color-muted); }
.vz-link-arrow--back:hover { color: var(--color-fg); }
.vz-link-arrow--sm  { font-size: 0.875rem; }

/* ─── Badges ─────────────────────────────────────────── */
.vz-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vz-badge--sm {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
}

.vz-badges--lg {
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .vz-badges,
    .vz-badges--lg {
        margin-top: 1.5rem;
    }
}

/* ─── Projekt Row ────────────────────────────────────── */
.vz-projekt-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vz-projekt-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background-color: rgba(82,82,82,.10);
    border: 1px solid rgba(136,136,136,.20);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-base);
}

.vz-projekt-row:hover { border-color: rgba(136,136,136,.40); }
.vz-projekt-row:hover .vz-projekt-row__name { color: var(--color-muted); }
.vz-projekt-row:hover .vz-link-arrow { gap: 0.75rem; }

.vz-projekt-row__content { flex: 1; }

.vz-projekt-row__header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vz-projekt-row__name {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.vz-projekt-row__desc {
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 40rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vz-projekt-row__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18.5rem;
    height: 18.5rem;
    background-color: rgba(82,82,82,.20);
    border: 1px solid rgba(136,136,136,.30);
    border-radius: var(--radius-lg);
    color: rgba(255,255,255,.20);
    flex-shrink: 0;
    margin-left: 2rem;
    overflow: hidden;
}

.vz-projekt-row__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.vz-icon-box--lg {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(136,136,136,.20);
    flex-shrink: 0;
    overflow: hidden;
}

.vz-icon-box--lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Screenshot placeholder ─────────────────────────── */
.vz-screenshot-placeholder {
    background-color: rgba(82,82,82,.20);
    border: 1px solid rgba(136,136,136,.30);
    border-radius: var(--radius-xl);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.vz-screenshot-placeholder span {
    color: var(--color-muted);
    font-size: 0.9375rem;
}

/* ─── List with check icon ───────────────────────────── */
.vz-list--check li {
    align-items: flex-start;
}
.vz-list--check li::before {
    display: none;
}

.vz-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 0.25em;
    color: var(--color-muted);
}

/* ─── Blog Grid ──────────────────────────────────────── */
.vz-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
}

/* ─── Blog Card ──────────────────────────────────────── */
.vz-blog-card {
    display: flex;
    flex-direction: column;
    background-color: rgba(82,82,82,.10);
    border: 1px solid rgba(136,136,136,.20);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-base);
    overflow: hidden;
}

.vz-blog-card:hover { border-color: rgba(136,136,136,.40); }
.vz-blog-card:hover .vz-blog-card__title { color: var(--color-muted); }
.vz-blog-card:hover .vz-link-arrow { gap: 0.75rem; }

.vz-blog-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
    transition: color var(--transition-base);
    line-height: 1.3;
}

.vz-blog-card__excerpt {
    color: var(--color-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.vz-blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(136,136,136,.20);
}

.vz-blog-card__date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* ─── Blog Filter ────────────────────────────────────── */
.vz-blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.vz-blog-filter__btn {
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    background-color: rgba(82,82,82,.20);
    border: 1px solid rgba(136,136,136,.20);
    color: var(--color-muted);
}

.vz-blog-filter__btn:hover,
.vz-blog-filter__btn.is-active {
    background-color: var(--color-fg);
    color: var(--color-primary-fg);
    border-color: transparent;
}

/* Blog card hidden state for JS filter */
.vz-blog-card.is-hidden {
    display: none;
}

/* ─── Simple list (sidebar) ──────────────────────────── */
.vz-simple-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vz-simple-list__link,
.vz-simple-list__btn {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-muted);
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: color var(--transition-base);
}

.vz-simple-list__link:hover,
.vz-simple-list__btn:hover { color: var(--color-fg); }

/* ─── Blog Post Content ──────────────────────────────── */
.vz-blogpost-hero {
    max-width: 860px;
    margin-inline: auto;
}

.vz-blogpost-hero__title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 600;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.vz-blogpost-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
}

.vz-blogpost-hero__image {
    background-color: rgba(82,82,82,.20);
    border: 1px solid rgba(136,136,136,.30);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 4rem;
}

.vz-blogpost-hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Post Gallery ─────────────────────────────────────────────────────────── */
.vz-post-gallery {
    padding: 0;
}

.vz-post-gallery__main {
    position: relative;
    overflow: hidden;
    background: rgba(82,82,82,.12);
}

.vz-post-gallery__main-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 560px;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.vz-post-gallery__main-img.is-loading {
    opacity: 0;
}

.vz-post-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(136,136,136,.4) transparent;
    background: rgba(82,82,82,.06);
}

.vz-post-gallery__thumbs::-webkit-scrollbar {
    height: 4px;
}

.vz-post-gallery__thumbs::-webkit-scrollbar-thumb {
    background: rgba(136,136,136,.4);
    border-radius: 2px;
}

.vz-post-gallery__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: rgba(82,82,82,.15);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.vz-post-gallery__thumb:hover {
    transform: scale(1.05);
    border-color: rgba(136,136,136,.4);
}

.vz-post-gallery__thumb.is-active {
    border-color: var(--color-accent, #1a73e8);
}

.vz-post-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

@media (max-width: 768px) {
    .vz-post-gallery__main-img {
        max-height: 320px;
    }

    .vz-post-gallery__thumb {
        width: 60px;
        height: 60px;
    }
}

.vz-blogpost-content {
    max-width: 760px;
    margin-inline: auto;
}

.vz-blogpost-content h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

.vz-blogpost-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.vz-blogpost-content p {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.vz-blogpost-content .vz-list {
    margin-bottom: 2rem;
}

.vz-lead {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--color-fg);
    margin-bottom: 3rem;
    font-weight: 400;
}

.vz-blockquote {
    border-left: 3px solid var(--color-border);
    padding-left: 1.5rem;
    margin-block: 2.5rem;
    color: var(--color-fg);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
}

.vz-code-inline {
    background-color: rgba(82,82,82,.10);
    border: 1px solid rgba(136,136,136,.20);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-block: 2rem;
    overflow-x: auto;
}

.vz-code-inline code {
    font-size: 0.875rem;
    color: var(--color-muted);
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
}

.vz-code-block {
    background-color: rgba(82,82,82,.10);
    border: 1px solid rgba(136,136,136,.20);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-block: 3rem;
    overflow-x: auto;
}

.vz-code-block pre {
    margin: 0;
}

.vz-code-block code {
    font-size: 0.875rem;
    color: var(--color-muted);
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
}

/* ─── Legal Pages ────────────────────────────────────── */
.vz-legal-content {
    max-width: 860px;
    margin-inline: auto;
    background-color: rgba(82,82,82,.10);
    border: 1px solid rgba(136,136,136,.20);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.vz-legal-block {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(136,136,136,.15);
}

.vz-legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vz-legal-block h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.vz-legal-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.vz-legal-block p,
.vz-legal-block li {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.vz-legal-block ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.vz-legal-block a {
    color: var(--color-fg);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-base);
}

.vz-legal-block a:hover { color: var(--color-muted); }

.vz-legal-block strong { color: var(--color-fg); font-weight: 500; }

.vz-legal-note {
    background-color: rgba(82,82,82,.20);
    border: 1px solid rgba(136,136,136,.30);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.vz-legal-note p {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin: 0;
}

/* ─── 404 Page ───────────────────────────────────────── */
.vz-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.vz-404__code {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    color: rgba(136,136,136,.30);
    line-height: 1;
    margin-bottom: 1rem;
}

.vz-404__msg {
    font-size: 1.5rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
}

/* ─── Responsive Extensions ──────────────────────────── */
@media (max-width: 1024px) {
    .vz-blog-grid  { grid-template-columns: 1fr 1fr; }
    .vz-cards-3    { grid-template-columns: 1fr 1fr; }
    .vz-page-hero,
    .vz-back-bar   { padding-inline: 2rem; }

    .vz-projekt-row__visual {
        width: 10rem;
        height: 10rem;
    }
}

@media (max-width: 768px) {
    .vz-page-hero  { padding-inline: 1.25rem; }
    .vz-back-bar   { padding-inline: 1.25rem; }
    .vz-blog-grid  { grid-template-columns: 1fr; }
    .vz-cards-3    { grid-template-columns: 1fr; }

    .vz-projekt-row {
        flex-direction: column;
        padding: 2rem;
    }
    .vz-projekt-row__visual {
        display: none;
    }
    .vz-projekt-row__header { flex-direction: column; gap: 1rem; }
    .vz-projekt-row__name   { font-size: 1.5rem; }

    .vz-legal-content { padding: 1.5rem; }
    .vz-legal-block h2 { font-size: 1.375rem; }

    .vz-blog-filter { gap: 0.5rem; }
    .vz-blog-filter__btn { padding: 0.5rem 1rem; font-size: 0.875rem; }

    .vz-blogpost-hero__title { font-size: 2rem; }
}

/* =====================================================
   SEO & ACCESSIBILITY STYLES — v3
   ===================================================== */

/* ─── Skip Link ──────────────────────────────────────── */
.vz-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--color-fg);
    color: var(--color-primary-fg);
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: top 0.2s ease;
}
.vz-skip-link:focus {
    top: 0;
    outline: 3px solid #005fcc;
    outline-offset: 2px;
}

/* ─── Screen reader only ─────────────────────────────── */
.vz-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ─── Breadcrumbs ────────────────────────────────────── */
.vz-breadcrumbs {
    margin-bottom: 1rem;
}

.vz-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vz-breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vz-breadcrumbs__link {
    font-size: 0.875rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: color var(--transition-base);
}
.vz-breadcrumbs__link:hover { color: var(--color-fg); }

.vz-breadcrumbs__sep {
    color: rgba(136,136,136,.5);
    display: flex;
    align-items: center;
}

.vz-breadcrumbs__current {
    font-size: 0.875rem;
    color: var(--color-fg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 20rem;
}

/* ─── Nav: ul → semantic list ────────────────────────── */
.vz-nav__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vz-nav__links > li > a {
    color: var(--color-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-base);
    text-decoration: none;
}
.vz-nav__links > li > a:hover { color: var(--color-fg); }

/* Mobile: stack items */
@media (max-width: 768px) {
    .vz-nav__links {
        flex-direction: column;
        align-items: flex-start;
    }
    .vz-nav__links > li > a { font-size: 1.25rem; }
}

/* ─── Footer heading (h2 instead of h4) ─────────────── */
.vz-footer__heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-fg);
}

/* ─── Card title utility ─────────────────────────────── */
.vz-card__title-lg {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.vz-card__desc--spaced { margin-bottom: 2rem; }

/* ─── Article / Blog post ────────────────────────────── */
.vz-article { width: 100%; }

/* Artikel-Sektionen brauchen weniger padding als Landingpage-Sektionen */
.vz-article .vz-section {
    padding-bottom: 3rem;
}
.vz-article header.vz-section {
    padding-bottom: 0;
}

.vz-blogpost-hero__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.vz-blogpost-hero__date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9375rem;
    color: var(--color-muted);
}

.vz-blogpost-hero__excerpt {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* ─── Article related links ──────────────────────────── */
.vz-article-related-links {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(82,82,82,.08);
    border: 1px solid rgba(136,136,136,.20);
    border-radius: var(--radius-lg);
}

.vz-article-related-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vz-article-related-links .vz-list li::before { display: none; }
.vz-article-related-links .vz-list li { color: var(--color-fg); }
.vz-article-related-links a {
    color: var(--color-fg);
    text-decoration: none;
    transition: color var(--transition-base);
}
.vz-article-related-links a:hover { color: var(--color-muted); }

/* ─── Blog post footer ───────────────────────────────── */
.vz-blogpost-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 760px;
    margin-inline: auto;
}

.vz-blogpost-footer__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vz-blogpost-footer__share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vz-blogpost-footer__share-label {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.vz-share-btn {
    font-size: 0.875rem;
    color: var(--color-muted);
    text-decoration: none;
    padding: 0.375rem 0.875rem;
    border: 1px solid rgba(136,136,136,.25);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}
.vz-share-btn:hover {
    color: var(--color-fg);
    border-color: rgba(136,136,136,.5);
}

/* ─── Blog card as article ───────────────────────────── */
.vz-blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* ─── Project hero image ─────────────────────────────── */
.vz-projekt-hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(136,136,136,.30);
    margin: 0;
}
.vz-projekt-hero-img img {
    width: 100%;
    display: block;
    border-radius: 0;
}

/* ─── Tech stack badges ──────────────────────────────── */
.vz-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ─── Screenshot figcaption ──────────────────────────── */
.vz-screenshot-placeholder figcaption {
    font-size: 0.9375rem;
    color: var(--color-muted);
}

/* ─── Error state ────────────────────────────────────── */
.vz-error-state {
    padding-top: 10rem;
    padding-bottom: 8rem;
    text-align: center;
}
.vz-error-state h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.vz-error-state p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

/* ─── Focus visible (keyboard a11y) ─────────────────── */
:focus-visible {
    outline: 2px solid rgba(255,255,255,.8);
    outline-offset: 3px;
    border-radius: 2px;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(255,255,255,.8);
    outline-offset: 3px;
}

/* ─── Print styles (SEO: cleanly printable content) ─── */
@media print {
    .vz-nav,
    .vz-site-header,
    .vz-nav__burger,
    .vz-skip-link,
    .vz-cta,
    .vz-footer__social { display: none !important; }

    body { background: #fff; color: #000; }
    .vz-blogpost-content h2,
    .vz-blogpost-content h3 { color: #000; }
    .vz-blogpost-content p  { color: #333; }
    a { color: #000; text-decoration: underline; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; }
}

/* =====================================================
   FINAL SEO/A11Y PATCHES — v3 addendum
   ===================================================== */

/* ─── Nav: list reset (now using <ul>) ───────────────── */
@media (min-width: 769px) {
    .vz-nav__links {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .vz-nav__mobile-footer {
        display: none !important;
    }
}

/* ─── vz-site-header wrapper ─────────────────────────── */
.vz-site-header { position: relative; z-index: 100; }

/* ─── Projekt row: anchor wraps content ──────────────── */
.vz-projekt-row__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: inherit;
    gap: 2rem;
}

.vz-projekt-row__tagline {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

/* ─── Blog card: full-height anchor ─────────────────── */
.vz-blog-card {
    position: relative;
}

.vz-blog-card .vz-blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.vz-blog-card .vz-blog-card__link:hover .vz-blog-card__title {
    color: var(--color-muted);
}
.vz-blog-card .vz-blog-card__link:hover .vz-link-arrow {
    gap: 0.75rem;
}

/* ─── Blog card footer: push to bottom ───────────────── */
.vz-blog-card .vz-blog-card__excerpt { flex: 1; }

/* ─── Sidebar heading ────────────────────────────────── */
.vz-card__sidebar-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ─── 404 nav ────────────────────────────────────────── */
.vz-404__desc {
    color: var(--color-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.vz-404__nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ─── Legal address ──────────────────────────────────── */
.vz-legal-address {
    color: var(--color-muted);
    font-style: normal;
    line-height: 1.8;
}

/* ─── Projekt row hover fix (anchor child) ───────────── */
.vz-projekt-row:hover .vz-projekt-row__name { color: var(--color-muted); }
.vz-projekt-row:hover .vz-link-arrow        { gap: 0.75rem; }

/* ─── time element ───────────────────────────────────── */
.vz-blogpost-hero__date,
.vz-blog-card__date { font-style: normal; }

/* ─── Animate: initial state ────────────────────────── */
.vz-animate {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.vz-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Commerce Layer – Projekt-Detail
   ===================================================== */

/* ─── Stats ──────────────────────────────────────────── */
.vz-cl-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.vz-cl-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
}
.vz-cl-stat__num {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-fg);
    margin-bottom: 0.5rem;
    display: block;
}
.vz-cl-stat__label {
    font-size: 0.8125rem;
    color: var(--color-muted);
}

/* ─── Mockup Section wrapper ─────────────────────────── */
.vz-mockup-section {
    background: #050507;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ─── Phone Mockup ───────────────────────────────────── */
.vz-phone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}
.vz-phone-grid__img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
}
.vz-phone-mockup {
    background: #1a1a1e;
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.08);
    padding: 14px 14px 18px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.vz-phone-mockup::before {
    content: '';
    display: block;
    width: 52px;
    height: 5px;
    background: rgba(255,255,255,0.12);
    border-radius: 3px;
    margin: 0 auto 10px;
}
.vz-phone-screen {
    background: #09090d;
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
}
.vz-phone-mockup__label {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-top: 0.75rem;
}

/* ─── Gate Screen ────────────────────────────────────── */
.vz-ms-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 20px;
    gap: 6px;
}
.vz-ms-gate__logo {
    width: 68px;
    height: 68px;
    background: radial-gradient(circle at 40% 35%, #f5a623, #e05000 60%, #c03000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    font-weight: 800;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 6px;
    box-shadow: 0 4px 16px rgba(224,80,0,0.4);
}
.vz-ms-gate__clock {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
}
.vz-ms-gate__pre {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 8px;
}
.vz-ms-gate__headline {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
}
.vz-ms-gate__sub {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.4;
}
.vz-ms-input {
    width: 100%;
    height: 34px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    margin-bottom: 8px;
}
.vz-ms-btn-orange {
    width: 100%;
    height: 34px;
    background: linear-gradient(135deg, #e05000, #f5a623);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
.vz-ms-btn-dark {
    width: 100%;
    height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}
.vz-ms-gate__legal {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
    line-height: 1.5;
}

/* ─── Product List Screen ────────────────────────────── */
.vz-ms-shop__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 6px;
}
.vz-ms-shop__logo-sm {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f5a623, #e05000);
    border-radius: 50%;
}
.vz-ms-shop__tabs {
    display: flex;
    gap: 3px;
    padding: 0 10px 8px;
    overflow: hidden;
}
.vz-ms-pill {
    background: rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 3px 9px;
    font-size: 0.5rem;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}
.vz-ms-pill--active {
    background: #e05000;
    color: white;
}
.vz-ms-product {
    display: flex;
    gap: 8px;
    padding: 7px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: center;
}
.vz-ms-product__img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vz-ms-product__body { flex: 1; }
.vz-ms-product__name {
    font-size: 0.58rem;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
}
.vz-ms-product__tags {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.vz-ms-tag {
    font-size: 0.42rem;
    background: rgba(255,255,255,0.06);
    border-radius: 5px;
    padding: 1px 4px;
    color: rgba(255,255,255,0.45);
}
.vz-ms-product__variants { display: flex; gap: 4px; }
.vz-ms-variant {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.45rem;
    color: rgba(255,255,255,0.6);
}
.vz-ms-variant--active { border-color: #e05000; color: #f5a623; }

/* ─── Quick-View Screen ──────────────────────────────── */
.vz-ms-qv-bg {
    background: rgba(0,0,0,0.6);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.vz-ms-qv-modal {
    background: #18191d;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
}
.vz-ms-qv-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a2535 0%, #1e3a5f 50%, #152030 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}
.vz-ms-qv-body { padding: 10px 12px; }
.vz-ms-qv-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
.vz-ms-qv-variants { display: flex; gap: 4px; margin-bottom: 8px; }
.vz-ms-qv-var {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 7px;
    padding: 3px 9px;
    font-size: 0.52rem;
    color: rgba(255,255,255,0.6);
}
.vz-ms-qv-var--active { border-color: #e05000; color: #f5a623; }
.vz-ms-qv-cta {
    width: 100%;
    height: 28px;
    background: linear-gradient(135deg, #e05000, #f5a623);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.57rem;
    font-weight: 700;
    color: white;
}

/* ─── Desktop Mockup ─────────────────────────────────── */
.vz-desktop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}
.vz-desktop-grid__img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    display: block;
}
.vz-desktop-grid__label {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-top: 0.75rem;
}
.vz-desktop-mockup {
    background: #141416;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.vz-desktop-mockup__bar {
    background: #0e0e11;
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vz-desktop-mockup__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.vz-desktop-mockup__url {
    flex: 1;
    height: 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin: 0 8px;
}
.vz-desktop-screen { display: flex; min-height: 260px; }

/* Admin Sidebar */
.vz-ms-desk-nav {
    width: 130px;
    background: #0c0c0f;
    flex-shrink: 0;
    padding: 10px 0;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.vz-ms-desk-nav__logo {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 10px;
}
.vz-ms-desk-nav__logo-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #f5a623, #e05000);
    border-radius: 50%;
    flex-shrink: 0;
}
.vz-ms-desk-nav__logo-text {
    font-size: 0.45rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    line-height: 1.2;
}
.vz-ms-nav-item {
    padding: 5px 10px;
    font-size: 0.48rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}
.vz-ms-nav-item--active {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
    border-left: 2px solid #e05000;
}
.vz-ms-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.vz-ms-nav-dot--orange { background: #e05000; }
.vz-ms-nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 5px 10px;
}
.vz-ms-nav-section {
    font-size: 0.38rem;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px 2px;
}
.vz-ms-desk-content { flex: 1; padding: 10px; overflow: hidden; }

/* Dispatch specifics */
.vz-ms-dispatch-header { display: flex; gap: 4px; margin-bottom: 8px; flex-wrap: wrap; }
.vz-ms-tab-btn {
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 3px 7px;
    font-size: 0.44rem;
    color: rgba(255,255,255,0.5);
}
.vz-ms-tab-btn--active { background: rgba(255,255,255,0.1); color: white; }
.vz-ms-dispatch-slots { display: flex; gap: 3px; margin-bottom: 6px; overflow: hidden; }
.vz-ms-slot {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 3px;
    font-size: 0.36rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    line-height: 1.4;
}
.vz-ms-slot--busy { border-color: rgba(255,140,0,0.3); color: rgba(255,140,0,0.7); }
.vz-ms-slot--full { border-color: rgba(224,80,0,0.4); color: rgba(224,80,0,0.8); }
.vz-ms-map-area {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #1a2535 0%, #1e2d4a 40%, #152035 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.vz-ms-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 14px 14px;
}
.vz-ms-map-road {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}
.vz-ms-map-route {
    position: absolute;
    background: transparent;
    border: 2px solid;
    border-radius: 0 0 20px 0;
}
.vz-ms-map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vz-ms-map-marker-num {
    transform: rotate(45deg);
    font-size: 0.42rem;
    font-weight: 700;
    color: white;
}
.vz-ms-driver-filters { display: flex; gap: 4px; margin-top: 5px; }
.vz-ms-driver-pill {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 2px 7px;
    font-size: 0.4rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 3px;
}
.vz-ms-driver-dot { width: 5px; height: 5px; border-radius: 50%; }

/* Kassenbericht specifics */
.vz-ms-kb-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.vz-ms-kb-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
}
.vz-ms-kb-btn {
    background: #e05000;
    border-radius: 5px;
    padding: 3px 7px;
    font-size: 0.42rem;
    font-weight: 600;
    color: white;
}
.vz-ms-kb-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}
.vz-ms-kb-kpi {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 5px;
    padding: 4px;
}
.vz-ms-kb-kpi__val { font-size: 0.58rem; font-weight: 700; color: white; display: block; }
.vz-ms-kb-kpi__val--green { color: #22c55e; }
.vz-ms-kb-kpi__val--blue  { color: #60a5fa; }
.vz-ms-kb-kpi__label { font-size: 0.36rem; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.vz-ms-kb-table { width: 100%; border-collapse: collapse; }
.vz-ms-kb-table th {
    font-size: 0.38rem;
    color: rgba(255,255,255,0.3);
    text-align: left;
    padding: 2px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-transform: uppercase;
}
.vz-ms-kb-table td {
    font-size: 0.42rem;
    color: rgba(255,255,255,0.6);
    padding: 3px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vz-ms-kb-num { color: #60a5fa !important; font-family: monospace; }
.vz-ms-badge-green {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 0.38rem;
}
.vz-ms-badge-yellow {
    background: rgba(234,179,8,0.15);
    color: #eab308;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 0.38rem;
}

/* ─── Module Grid ─────────────────────────────────────── */
.vz-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1rem;
}
.vz-module-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: border-color var(--transition-base), background var(--transition-base);
}
.vz-module-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.14);
}
.vz-module-card__icon { display: flex; align-items: center; margin-bottom: 0.5rem; color: rgba(255,255,255,0.65); }
.vz-module-card__name { font-size: 0.8125rem; font-weight: 600; color: var(--color-fg); margin-bottom: 0.25rem; }
.vz-module-card__desc { font-size: 0.725rem; color: var(--color-muted); line-height: 1.4; margin: 0; }

/* ─── Deploy Steps ────────────────────────────────────── */
.vz-deploy-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.vz-deploy-step { display: flex; gap: 1rem; align-items: flex-start; }
.vz-deploy-step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-fg);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.vz-deploy-step__title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--color-fg); }
.vz-deploy-step__desc { font-size: 0.775rem; color: var(--color-muted); margin: 0; }
.vz-deploy-step__code {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 4px 8px;
    margin-top: 6px;
    display: inline-block;
}

/* ─── Code Block ──────────────────────────────────────── */
.vz-code-block {
    background: #0a0a0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    overflow-x: auto;
}
.vz-code-block pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.825rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0;
    white-space: pre;
}
.vz-code-comment { color: rgba(255,255,255,0.3); }
.vz-code-flag    { color: #f5a623; }
.vz-code-path    { color: #60a5fa; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
    .vz-cl-stats      { grid-template-columns: repeat(2, 1fr); }
    .vz-phone-grid    { grid-template-columns: repeat(2, 1fr); }
    .vz-phone-grid > *:last-child { display: none; }
    .vz-desktop-grid  { grid-template-columns: 1fr; }
    .vz-deploy-steps  { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .vz-phone-grid    { grid-template-columns: 1fr; }
    .vz-phone-grid > *:last-child { display: block; }
    .vz-module-grid   { grid-template-columns: 1fr 1fr; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .vz-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .vz-btn,
    .vz-card {
        transition: background-color var(--transition-base),
                    color var(--transition-base),
                    border-color var(--transition-base);
        transform: none !important;
        box-shadow: none !important;
    }
}

/* ─── Pagination ─────────────────────────────────────── */
.vz-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(136,136,136,.20);
}

.vz-pagination__info {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.vz-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(136,136,136,.20);
    background: none;
    color: var(--color-muted);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}
.vz-pagination__btn:hover,
.vz-pagination__btn[aria-current="page"] {
    background: var(--color-fg);
    color: var(--color-primary-fg);
    border-color: transparent;
}

    .vz-404__nav { flex-direction: column; align-items: center; }
}

/* ── Post Navigation ─────────────────────────────────── */
.vz-post-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(136,136,136,.15);
}

.vz-post-nav__link {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(136,136,136,.20);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.vz-post-nav__link:hover {
    border-color: rgba(136,136,136,.45);
    background: rgba(82,82,82,.06);
}

.vz-post-nav__link--next { text-align: right; margin-left: auto; }

.vz-post-nav__dir {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}

.vz-post-nav__title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-fg);
    line-height: 1.4;
}

/* ── Blog card thumbnail ─────────────────────────────── */
.vz-blog-card__thumb {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: -1.75rem -1.75rem 1.5rem;
    border-bottom: 1px solid rgba(136,136,136,.15);
}

.vz-blog-card__thumb-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.vz-blog-card:hover .vz-blog-card__thumb-img {
    transform: scale(1.03);
}

/* ── Blog card body (when thumb present) ─────────────── */
.vz-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vz-blog-card__title-link {
    color: inherit;
    text-decoration: none;
}
.vz-blog-card__title-link:hover { color: var(--color-muted); }

.vz-blog-card__excerpt { flex: 1; }

/* ── Category filter: count badge ───────────────────── */
.vz-blog-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 .3rem;
    background: rgba(136,136,136,.15);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: .35rem;
}

/* ── Sidebar link active state ──────────────────────── */
.vz-simple-list__link.is-active { color: var(--color-fg); font-weight: 600; }
.vz-simple-list__count { color: var(--color-muted); font-size: .875rem; margin-left: .25rem; }

/* ── Filter buttons: now also as <a> tags ───────────── */
.vz-blog-filter__btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* ══════════════════════════════════════════════════════
   BLOG POST CONTENT – v4 (single source of truth)
   ══════════════════════════════════════════════════════ */

/* ── Override vz-list inside blog posts: no ::before dot,
      just a clean leading dash/line via CSS only          */
.vz-blogpost-content .vz-list,
.vz-article .vz-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vz-blogpost-content .vz-list li,
.vz-article .vz-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-fg);
    padding-left: 0;
}

/* Icon kommt vom .vz-list__icon span – ::before unterdrücken */
.vz-blogpost-content .vz-list li::before,
.vz-article .vz-list li::before {
    display: none;
}

/* ── Section heading with icon ───────────────────────── */
.vz-section-icon-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-fg);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(136,136,136,.15);
}
.vz-section-icon-heading svg { flex-shrink: 0; color: var(--color-muted); }

/* ── Project meta card ───────────────────────────────── */
/* ── Project meta: desktop = columns, mobile = rows ─────── */
.vz-project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    background: rgba(82,82,82,.08);
    border: 1px solid rgba(136,136,136,.18);
    border-radius: var(--radius-lg);
    margin: 1.5rem 0 2rem;
    overflow: hidden;
}
.vz-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(136,136,136,.12);
}
.vz-meta-row:last-child { border-right: none; }
.vz-meta-icon {
    display: flex;
    align-items: center;
    color: var(--color-muted);
    margin-bottom: 0.15rem;
}
.vz-meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.vz-meta-val {
    font-size: 0.9375rem;
    color: var(--color-fg);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .vz-project-meta {
        grid-template-columns: 1fr;
    }
    .vz-meta-row {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
        padding: 0.65rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(136,136,136,.10);
    }
    .vz-meta-row:last-child { border-bottom: none; }
    .vz-meta-icon { flex-shrink: 0; margin-bottom: 0; }
    .vz-meta-label { min-width: 85px; flex-shrink: 0; }
    .vz-meta-val { flex: 1; }
}

/* ── Post navigation ─────────────────────────────────── */
.vz-post-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(136,136,136,.15);
}
.vz-post-nav__link {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(136,136,136,.20);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-base), background var(--transition-base);
}
.vz-post-nav__link:hover { border-color: rgba(136,136,136,.45); background: rgba(82,82,82,.06); }
.vz-post-nav__link--next { text-align: right; margin-left: auto; }
.vz-post-nav__dir { font-size: 0.75rem; color: var(--color-muted); text-transform: uppercase; letter-spacing:.05em; font-weight:600; }
.vz-post-nav__title { font-size: 0.9375rem; font-weight: 500; color: var(--color-fg); line-height: 1.4; }

/* ── Blog card thumbnail ─────────────────────────────── */
.vz-blog-card__thumb {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: -1.75rem -1.75rem 1.5rem;
    border-bottom: 1px solid rgba(136,136,136,.15);
}
.vz-blog-card__thumb-img {
    width: 100%; height: 200px; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.vz-blog-card:hover .vz-blog-card__thumb-img { transform: scale(1.03); }
.vz-blog-card__body { display: flex; flex-direction: column; flex: 1; }
.vz-blog-card__title-link { color: inherit; text-decoration: none; }
.vz-blog-card__title-link:hover { color: var(--color-muted); }
.vz-blog-card__excerpt { flex: 1; }

/* ── Category filter count badge ────────────────────── */
.vz-blog-filter__count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 1.25rem; height: 1.25rem; padding: 0 .3rem;
    background: rgba(136,136,136,.15); border-radius: 999px;
    font-size: 0.7rem; font-weight: 600; margin-left: .35rem;
}
.vz-blog-filter__btn { display: inline-flex; align-items: center; text-decoration: none; }

/* ── Sidebar ─────────────────────────────────────────── */
.vz-simple-list__link.is-active { color: var(--color-fg); font-weight: 600; }
.vz-simple-list__count { color: var(--color-muted); font-size:.875rem; margin-left:.25rem; }
.vz-card__sidebar-heading { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }

/* ── Small screen overrides (≤ 440px) ───────────────── */
@media (max-width: 440px) {
    /* Alle Multi-Spalten-Grids → 1 Spalte */
    .vz-cards-2,
    .vz-cards-3,
    .vz-cards-4,
    .vz-blog-grid,
    .vz-footer__grid {
        grid-template-columns: 1fr !important;
    }

    /* Hero inner: Spalte, Bild oben */
    .vz-hero__inner {
        display: flex;
        flex-direction: column;
    }

    .vz-hero__visual {
        order: -1;
        width: 100%;
    }

    .vz-hero__card {
        padding: 1rem;
    }

    /* Container padding nicht zu groß */
    .vz-container,
    .vz-section,
    .vz-hero,
    .vz-footer,
    .vz-page-hero,
    .vz-back-bar {
        padding-inline: 1rem;
    }

    /* Blog card footer: untereinander statt nebeneinander */
    .vz-blog-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* Buttons voll breit auf sehr kleinen Screens */
    .vz-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .vz-cta__actions .vz-btn {
        justify-content: center;
        text-align: center;
    }
}

/* ═══ Page Hero Label (App-Badge über Titel) ══════════════════════════════════ */
.vz-page-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
}

/* ═══ Legal – Inhaltsverzeichnis ══════════════════════════════════════════════ */
.vz-legal-toc {
    background: #111;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.vz-legal-toc__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.vz-legal-toc__list {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.vz-legal-toc__list li {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.vz-legal-toc__list a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.vz-legal-toc__list a:hover {
    color: var(--color-fg);
}

/* ─── Hausblick Screenshot Grid (mobile-responsive) ──── */
.hb-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.hb-screenshot-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hb-screen-rows {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.hb-screen-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hb-screen-row--reversed {
    direction: rtl;
}

.hb-screen-row--reversed > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .hb-screenshot-grid {
        grid-template-columns: 1fr;
    }

    .hb-screen-rows {
        gap: 3rem;
    }

    .hb-screen-row,
    .hb-screen-row--reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    /* Image always comes first on mobile */
    .hb-screen-row img {
        order: -1;
    }

    .hb-screen-row--reversed img {
        order: -1;
    }
}
