/* =========================================================
   FOOTER-TOP: Vier Modulpositionen oberhalb des Footers
   ========================================================= */

.container-footer-top {
    margin: 0;
    padding-top: 3rem;
    padding-bottom: 0;
    background-color: var(--footerbg);
    color: var(--footercolor);
}

/*
 * Der untere Abstand liegt zwischen den vier Modulen
 * und der horizontalen Trennlinie.
 *
 * Alle möglichen inneren Container werden berücksichtigt.
 */
.container-footer-top > .grid-child,
.container-footer-top > .container,
.container-footer-top > .container-fluid {
    width: 100%;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}


/* =========================================================
   AUFBAU DER VIER MODULPOSITIONEN
   ========================================================= */

.container-footer-top .row {
    align-items: stretch;
}

.container-footer-top .row > [class*="col-"] {
    position: relative;
    min-width: 0;
}

/* Module über die vollständige Spaltenhöhe */
.container-footer-top .moduletable,
.container-footer-top .module {
    height: 100%;
    margin: 0;
}


/* =========================================================
   TEXTE UND ÜBERSCHRIFTEN IM FOOTER-TOP
   ========================================================= */

.container-footer-top,
.container-footer-top h1,
.container-footer-top h2,
.container-footer-top h3,
.container-footer-top h4,
.container-footer-top h5,
.container-footer-top h6,
.container-footer-top p,
.container-footer-top ul,
.container-footer-top ol,
.container-footer-top li {
    color: var(--footercolor);
}

/* Modulüberschriften */
.container-footer-top .moduletable > h3,
.container-footer-top .module > h3,
.container-footer-top .module-title {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--footercolor);
}

/* Links */
.container-footer-top a {
    color: var(--footercolor);
}

.container-footer-top a:hover,
.container-footer-top a:focus {
    color: var(--link-hover-color);
}


/* =========================================================
   NORMALER FOOTER
   Zentrierte Ausgabe der Modulposition "footer"
   ========================================================= */

/*
 * Entfernt den standardmäßigen Cassiopeia-Abstand,
 * damit kein weißer Balken entsteht.
 */
.container-footer.footer {
    margin-top: 0;
    border-top: 0;
    background-color: var(--footerbg);
    color: var(--footercolor);
}

/*
 * Zentriert den gesamten Inhalt der Footer-Modulposition.
 */
.container-footer.footer > .grid-child {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

/*
 * Joomla gibt das Standard-Footer-Modul als .mod-footer aus.
 * Diese Regel verhindert eine Verteilung nach links und rechts
 * und richtet alle enthaltenen Bereiche mittig aus.
 */
.container-footer.footer .mod-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.container-footer.footer .mod-footer .footer1,
.container-footer.footer .mod-footer .footer2 {
    flex: 0 1 auto;
    margin: 0;
    text-align: center;
}

/*
 * Auch andere Module oder direkte Inhalte in der Position
 * werden mittig ausgerichtet.
 */
.container-footer.footer > .grid-child > *,
.container-footer.footer .moduletable,
.container-footer.footer .module {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

/*
 * Eine eventuell zuvor angelegte Linie über ein
 * Pseudoelement wird abgeschaltet.
 */
.container-footer.footer > .grid-child::before {
    display: none !important;
    content: none !important;
}

/* Texte im normalen Footer */
.container-footer.footer,
.container-footer.footer h1,
.container-footer.footer h2,
.container-footer.footer h3,
.container-footer.footer h4,
.container-footer.footer h5,
.container-footer.footer h6,
.container-footer.footer p,
.container-footer.footer ul,
.container-footer.footer ol,
.container-footer.footer li {
    color: var(--footercolor);
    text-align: center;
}

/* Absätze ohne unerwünschten unteren Abstand */
.container-footer.footer p {
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}

/* Links im normalen Footer */
.container-footer.footer a {
    color: var(--footercolor);
}

.container-footer.footer a:hover,
.container-footer.footer a:focus {
    color: var(--link-hover-color);
}


/* =========================================================
   DESKTOP AB 992 PIXEL
   Vier Spalten mit vertikalen Trennlinien
   ========================================================= */

@media (min-width: 992px) {
    .container-footer-top .row > [class*="col-"]:not(:first-child) {
        padding-left: 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
    }

    .container-footer-top .row > [class*="col-"]:not(:last-child) {
        padding-right: 2rem;
    }
}


/* =========================================================
   TABLET VON 768 BIS 991 PIXEL
   Zwei Spalten pro Reihe
   ========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Vertikale Linie zwischen linker und rechter Spalte */
    .container-footer-top .row > [class*="col-"]:nth-child(even) {
        padding-left: 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
    }

    .container-footer-top .row > [class*="col-"]:nth-child(odd) {
        padding-right: 2rem;
    }

    /* Horizontale Linie zwischen erster und zweiter Reihe */
    .container-footer-top .row > [class*="col-"]:nth-child(n+3) {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }
}


/* =========================================================
   SMARTPHONE UNTER 768 PIXEL
   Eine Modulposition pro Reihe
   ========================================================= */

@media (max-width: 767.98px) {
    .container-footer-top {
        padding-top: 2rem;
    }

    .container-footer-top > .grid-child,
    .container-footer-top > .container,
    .container-footer-top > .container-fluid {
        padding-bottom: 2rem;
    }

    /* Horizontale Linie zwischen den einzelnen Modulen */
    .container-footer-top .row > [class*="col-"]:not(:first-child) {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    /* Abstand zwischen Trennlinie und Footer-Inhalt */
    .container-footer.footer > .grid-child {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/* =========================================================
   HEADER: LOGO LINKS UND NAVIGATION RECHTS
   ========================================================= */

.container-header .header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}


/* =========================================================
   LOGO-BEREICH
   ========================================================= */

.container-header .header-main-row .navbar-brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.container-header .brand-logo {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    text-decoration: none;
}

.container-header .brand-logo img,
.container-header .brand-logo svg,
.container-header .navbar-brand img,
.container-header .navbar-brand svg,
.container-header .navbar-brand .logo {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 320px;
    max-height: 70px;
    object-fit: contain;
}

.container-header .site-description {
    margin-top: 0.35rem;
}


/* =========================================================
   NAVIGATIONSBEREICH RECHTS NEBEN DEM LOGO
   ========================================================= */

.container-header .header-main-row .container-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.container-header .header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    margin-left: auto;
}

.container-header .header-menu > *,
.container-header .header-menu nav,
.container-header .header-menu .navbar {
    width: auto;
    margin: 0;
}

.container-header .header-menu .navbar {
    justify-content: flex-end;
}

.container-header .header-menu .mod-menu {
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
}

.container-header .container-search {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin: 0;
}


/* =========================================================
   DESKTOP AB 992 PIXEL
   ========================================================= */

@media (min-width: 992px) {
    .container-header .header-main-row {
        flex-wrap: nowrap;
    }

    .container-header .header-main-row .container-nav {
        flex-wrap: nowrap;
    }

    .container-header .header-menu {
        flex: 1 1 auto;
    }

    .container-header .header-menu .navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
    }

    .container-header .header-menu .mod-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
}


/* =========================================================
   SMARTPHONE UNTER 768 PIXEL
   ========================================================= */

@media (max-width: 767.98px) {
    .container-header .header-main-row {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .container-header .brand-logo img,
    .container-header .brand-logo svg,
    .container-header .navbar-brand img,
    .container-header .navbar-brand svg,
    .container-header .navbar-brand .logo {
        max-width: 220px;
        max-height: 52px;
    }

    .container-header .site-description {
        font-size: 0.875rem;
    }
}


/* =========================================================
   SEHR KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 420px) {
    .container-header .brand-logo img,
    .container-header .brand-logo svg,
    .container-header .navbar-brand img,
    .container-header .navbar-brand svg,
    .container-header .navbar-brand .logo {
        max-width: 180px;
        max-height: 46px;
    }
}

.mod-articles-all-link {
    margin-top: 1.25rem;
}

.mod-articles-all-link a {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
}

.mod-articles-all-link a::after {
    content: "\2192";
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.mod-articles-all-link a:hover::after,
.mod-articles-all-link a:focus::after {
    transform: translateX(0.25rem);
}

/* =========================================================
   VERBRAUCHERSCHUTZMAGAZIN.DE
   Einheitliches Layout für alle Ratgeber-Beiträge
   Kategorie-ID: 8
   ========================================================= */

/* ---------------------------------------------------------
   Designvariablen
   --------------------------------------------------------- */

.vsm-ratgeber-page {
    --vsm-primary: #156bc1;
    --vsm-primary-dark: #0d4f91;
    --vsm-primary-soft: #edf5fc;

    --vsm-secondary: #30b580;
    --vsm-secondary-dark: #23875f;
    --vsm-secondary-soft: #edf9f4;

    --vsm-text: #09131d;
    --vsm-text-soft: #4d5d6c;
    --vsm-text-muted: #6c7a87;

    --vsm-surface: #ffffff;
    --vsm-surface-soft: #f5f8fb;
    --vsm-background: #eef3f8;

    --vsm-border: #dbe5ee;
    --vsm-border-strong: #c8d6e2;

    --vsm-warning: #d97706;
    --vsm-warning-soft: #fff7e8;

    --vsm-danger: #c0392b;
    --vsm-danger-soft: #fff1ef;

    --vsm-radius-small: 0.65rem;
    --vsm-radius: 1rem;
    --vsm-radius-large: 1.5rem;

    --vsm-shadow-small:
        0 0.25rem 0.75rem rgba(9, 19, 29, 0.06);

    --vsm-shadow:
        0 1rem 3rem rgba(9, 19, 29, 0.09);

    --vsm-shadow-hover:
        0 1.25rem 3.25rem rgba(9, 19, 29, 0.14);

    width: 100%;
    max-width: 1400px;
    margin: 0 auto 4rem;
    color: var(--vsm-text);
}


/* ---------------------------------------------------------
   Seitenhintergrund und Joomla-Container
   --------------------------------------------------------- */

body {
    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #f5f8fb 24rem,
            #eef3f8 100%
        );
}

body .site-grid {
    background: transparent;
}

body .container-component {
    width: 100%;
    max-width: 1480px;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
}

body main {
    width: 100%;
}

/* ---------------------------------------------------------
   BREADCRUMBS
   Einheitliches Ratgeber-Design auf allen Seiten
   --------------------------------------------------------- */

.mod-breadcrumbs__wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 1.25rem auto;
}

.mod-breadcrumbs.breadcrumb {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0.75rem 1rem !important;
    color: #6c7a87;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(219, 229, 238, 0.9);
    border-radius: 999px;
    box-shadow: 0 0.25rem 0.75rem rgba(9, 19, 29, 0.06);
    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
}

.mod-breadcrumbs__here {
    display: none;
}

.mod-breadcrumbs.breadcrumb .breadcrumb-item {
    color: #6c7a87;
}

.mod-breadcrumbs.breadcrumb .breadcrumb-item a {
    color: #156bc1;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}

.mod-breadcrumbs.breadcrumb .breadcrumb-item a:hover,
.mod-breadcrumbs.breadcrumb .breadcrumb-item a:focus-visible {
    color: #0d4f91;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.mod-breadcrumbs.breadcrumb .breadcrumb-item.active {
    color: #4d5d6c;
    font-weight: 600;
}


/* ---------------------------------------------------------
   Normale Seiten ohne Ratgeber-Inhaltsverzeichnis
   Volle Breite und abgesetzter Content-Bereich
   --------------------------------------------------------- */

body:not(:has(.vsm-ratgeber-page)) .container-component {
    width: 100%;
    max-width: 1480px;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
}

body:not(:has(.vsm-ratgeber-page)) main {
    width: 100%;
    max-width: 1400px;
    min-width: 0;
    margin: 0 auto 4rem;
    padding:
        clamp(1.35rem, 4vw, 3.5rem)
        clamp(1.15rem, 5vw, 4.25rem);
    color: #09131d;
    background: #ffffff;
    border: 1px solid rgba(219, 229, 238, 0.95);
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(9, 19, 29, 0.09);
}

body:not(:has(.vsm-ratgeber-page)) main > * {
    width: 100%;
    max-width: none;
}

body:not(:has(.vsm-ratgeber-page)) main .com-content-article,
body:not(:has(.vsm-ratgeber-page)) main .item-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body:not(:has(.vsm-ratgeber-page)) main .page-header {
    margin-top: 0;
    padding-top: 0;
    border: 0;
}

body:not(:has(.vsm-ratgeber-page)) main .page-header h1 {
    margin-top: 0;
    color: #09131d;
}

@media (max-width: 850px) {
    body:not(:has(.vsm-ratgeber-page)) main {
        margin-bottom: 2.5rem;
        padding: 1.35rem 1.1rem;
        border-radius: 1rem;
    }
}

/* =========================================================
   GLOBALER LESE- UND SCROLLFORTSCHRITT
   Auf allen Frontend-Seiten sichtbar
   ========================================================= */

.vsm-reading-progress {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    background: rgba(21, 107, 193, 0.1);
    transition: opacity 0.2s ease;
}

.vsm-reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            #156bc1 0%,
            #1d7989 55%,
            #30b580 100%
        );
    box-shadow:
        0 0 0.75rem rgba(48, 181, 128, 0.65);
    transform-origin: left center;
    transition: width 0.08s linear;
}

html.vsm-page-without-scroll .vsm-reading-progress {
    opacity: 0;
}

@media print {
    .vsm-reading-progress {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vsm-reading-progress,
    .vsm-reading-progress span {
        transition: none;
    }
}


/* ---------------------------------------------------------
   Zweispaltiges Magazinlayout
   --------------------------------------------------------- */

.vsm-ratgeber-grid {
    display: grid;
    grid-template-columns:
        minmax(13.5rem, 16rem)
        minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}


/* ---------------------------------------------------------
   Linke Inhaltsübersicht
   --------------------------------------------------------- */

.vsm-ratgeber-sidebar {
    min-width: 0;
}

.vsm-ratgeber-sidebar-inner {
    position: sticky;
    top: 7rem;
    display: grid;
    gap: 1.25rem;
}

.vsm-toc-card,
.vsm-trust-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--vsm-border);
    border-radius: var(--vsm-radius);
    box-shadow: var(--vsm-shadow-small);
    backdrop-filter: blur(0.75rem);
}

.vsm-toc-heading {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    padding: 1rem 1.1rem;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 750;
    letter-spacing: 0.02em;
    background:
        linear-gradient(
            135deg,
            var(--vsm-primary-dark),
            var(--vsm-primary)
        );
}

.vsm-toc-navigation {
    max-height: calc(100vh - 18rem);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color:
        var(--vsm-border-strong)
        transparent;
}

.vsm-toc-navigation ol {
    display: grid;
    gap: 0.15rem;
    margin: 0;
    padding: 0.75rem;
    list-style: none;
    counter-reset: vsm-toc;
}

.vsm-toc-navigation li {
    position: relative;
    margin: 0;
    padding: 0;
    counter-increment: vsm-toc;
}

.vsm-toc-navigation a {
    position: relative;
    display: grid;
    grid-template-columns: 1.6rem minmax(0, 1fr);
    gap: 0.4rem;
    align-items: start;
    padding: 0.65rem 0.65rem;
    color: var(--vsm-text-soft);
    font-size: 0.84rem;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 0.55rem;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.vsm-toc-navigation a::before {
    content: counter(vsm-toc, decimal-leading-zero);
    color: var(--vsm-primary);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.9;
}

.vsm-toc-navigation a:hover,
.vsm-toc-navigation a:focus-visible {
    color: var(--vsm-primary-dark);
    background: var(--vsm-primary-soft);
    transform: translateX(0.15rem);
}

.vsm-toc-navigation a[aria-current="location"] {
    color: var(--vsm-primary-dark);
    font-weight: 700;
    background:
        linear-gradient(
            90deg,
            var(--vsm-primary-soft),
            rgba(237, 245, 252, 0.35)
        );
}

.vsm-toc-navigation a[aria-current="location"]::after {
    position: absolute;
    top: 0.45rem;
    bottom: 0.45rem;
    left: 0;
    width: 0.2rem;
    content: "";
    background: var(--vsm-secondary);
    border-radius: 999px;
}

.vsm-trust-card {
    padding: 1.25rem;
    color: var(--vsm-text-soft);
    font-size: 0.82rem;
    line-height: 1.55;
}

.vsm-trust-card-icon {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.85rem;
    color: var(--vsm-secondary-dark);
    font-size: 1.1rem;
    place-items: center;
    background: var(--vsm-secondary-soft);
    border-radius: 50%;
}

.vsm-trust-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--vsm-text);
    font-size: 0.92rem;
}

.vsm-trust-card p {
    margin: 0;
}


/* ---------------------------------------------------------
   Artikelkarte
   --------------------------------------------------------- */

.vsm-ratgeber-main {
    min-width: 0;
    padding:
        clamp(1.35rem, 4vw, 3.5rem)
        clamp(1.15rem, 5vw, 4.25rem);
    background: var(--vsm-surface);
    border: 1px solid rgba(219, 229, 238, 0.95);
    border-radius: var(--vsm-radius-large);
    box-shadow: var(--vsm-shadow);
}

.vsm-ratgeber-main .com-content-article {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}


/* ---------------------------------------------------------
   Metadaten oberhalb des Titels
   --------------------------------------------------------- */

.vsm-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    align-items: center;
    margin-bottom: 1.35rem;
    color: var(--vsm-text-muted);
    font-size: 0.83rem;
}

.vsm-article-category,
.vsm-article-meta-item {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
}

.vsm-article-category {
    padding: 0.45rem 0.75rem;
    color: var(--vsm-primary-dark);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--vsm-primary-soft);
    border: 1px solid rgba(21, 107, 193, 0.16);
    border-radius: 999px;
}

.vsm-article-category [class*="fa-"],
.vsm-article-meta-item [class*="fa-"] {
    color: var(--vsm-secondary-dark);
}


/* ---------------------------------------------------------
   Überschrift und Intro
   --------------------------------------------------------- */

.vsm-ratgeber-main .page-header {
    margin: 0;
    padding: 0;
    border: 0;
}

.vsm-ratgeber-main .page-header h1 {
    max-width: 18ch;
    margin: 0 0 1.5rem;
    color: var(--vsm-text);
    font-size:
        clamp(
            2rem,
            4vw,
            3.5rem
        );
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.vsm-ratgeber-main
.com-content-article__body
> p:first-child {
    margin-top: 0;
    color: #273746;
    font-size:
        clamp(
            1.08rem,
            1.6vw,
            1.28rem
        );
    font-weight: 450;
    line-height: 1.72;
}

.vsm-ratgeber-main
.com-content-article__body
> p:first-child::first-letter {
    color: var(--vsm-primary);
    font-size: 1.1em;
    font-weight: 800;
}


/* ---------------------------------------------------------
   Fließtext
   --------------------------------------------------------- */

.vsm-ratgeber-main .com-content-article__body {
    color: var(--vsm-text-soft);
    font-size: 1.04rem;
    line-height: 1.78;
}

.vsm-ratgeber-main
.com-content-article__body p {
    margin-top: 0;
    margin-bottom: 1.35rem;
}

.vsm-ratgeber-main
.com-content-article__body strong {
    color: var(--vsm-text);
    font-weight: 750;
}

.vsm-ratgeber-main
.com-content-article__body a:not(.btn) {
    color: var(--vsm-primary-dark);
    font-weight: 650;
    text-decoration-color: rgba(21, 107, 193, 0.35);
    text-decoration-thickness: 0.1rem;
    text-underline-offset: 0.2rem;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}

.vsm-ratgeber-main
.com-content-article__body a:not(.btn):hover {
    color: var(--vsm-secondary-dark);
    text-decoration-color: var(--vsm-secondary);
}


/* ---------------------------------------------------------
   H2-Abschnittsüberschriften
   --------------------------------------------------------- */

.vsm-ratgeber-main
.com-content-article__body h2 {
    position: relative;
    margin:
        clamp(3.25rem, 7vw, 5rem)
        0
        1.35rem;
    padding:
        0.15rem
        0
        0.75rem
        1.15rem;
    color: var(--vsm-text);
    font-size:
        clamp(
            1.55rem,
            2.6vw,
            2.1rem
        );
    font-weight: 820;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-wrap: balance;
    scroll-margin-top: 7rem;
    border-bottom: 1px solid var(--vsm-border);
}

.vsm-ratgeber-main
.com-content-article__body h2::before {
    position: absolute;
    top: 0.15rem;
    bottom: 0.8rem;
    left: 0;
    width: 0.3rem;
    content: "";
    background:
        linear-gradient(
            180deg,
            var(--vsm-primary),
            var(--vsm-secondary)
        );
    border-radius: 999px;
}


/* ---------------------------------------------------------
   H3-Unterüberschriften
   --------------------------------------------------------- */

.vsm-ratgeber-main
.com-content-article__body h3 {
    margin: 2.5rem 0 0.85rem;
    color: var(--vsm-text);
    font-size:
        clamp(
            1.2rem,
            2vw,
            1.45rem
        );
    font-weight: 780;
    line-height: 1.3;
    letter-spacing: -0.015em;
    scroll-margin-top: 7rem;
}


/* ---------------------------------------------------------
   Kurzantwort und Zitatboxen
   --------------------------------------------------------- */

.vsm-ratgeber-main
.com-content-article__body blockquote {
    position: relative;
    overflow: hidden;
    margin: 2rem 0 2.75rem;
    padding:
        clamp(1.35rem, 3vw, 2rem)
        clamp(1.25rem, 4vw, 2.25rem)
        clamp(1.35rem, 3vw, 2rem)
        clamp(1.4rem, 4vw, 2.5rem);
    color: #12314d;
    background:
        linear-gradient(
            135deg,
            var(--vsm-primary-soft),
            var(--vsm-secondary-soft)
        );
    border: 1px solid rgba(21, 107, 193, 0.18);
    border-left: 0.4rem solid var(--vsm-primary);
    border-radius: var(--vsm-radius);
    box-shadow: var(--vsm-shadow-small);
}

.vsm-ratgeber-main
.com-content-article__body blockquote::before {
    position: absolute;
    top: -1.5rem;
    right: 1rem;
    content: "“";
    color: rgba(21, 107, 193, 0.1);
    font-family: Georgia, serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
}

.vsm-ratgeber-main
.com-content-article__body blockquote p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size:
        clamp(
            1rem,
            1.4vw,
            1.13rem
        );
    line-height: 1.72;
}

.vsm-ratgeber-main
.com-content-article__body blockquote strong {
    color: var(--vsm-primary-dark);
}


/* ---------------------------------------------------------
   Normale Aufzählungen
   --------------------------------------------------------- */

.vsm-ratgeber-main
.com-content-article__body > ul {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
    padding: 1.35rem 1.35rem 1.35rem 3.25rem;
    background: var(--vsm-surface-soft);
    border: 1px solid var(--vsm-border);
    border-radius: var(--vsm-radius);
    list-style: none;
}

.vsm-ratgeber-main
.com-content-article__body > ul > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.vsm-ratgeber-main
.com-content-article__body > ul > li::before {
    position: absolute;
    top: 0.45rem;
    left: -1.85rem;
    width: 0.75rem;
    height: 0.75rem;
    content: "";
    background: var(--vsm-secondary);
    border: 0.2rem solid #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 0 0.1rem rgba(48, 181, 128, 0.3);
}


/* ---------------------------------------------------------
   Nummerierte Schritt-für-Schritt-Listen
   --------------------------------------------------------- */

.vsm-ratgeber-main
.com-content-article__body > ol {
    display: grid;
    gap: 1rem;
    margin: 1.75rem 0 2.5rem;
    padding: 0;
    list-style: none;
    counter-reset: vsm-steps;
}

.vsm-ratgeber-main
.com-content-article__body > ol > li {
    position: relative;
    min-height: 4.25rem;
    margin: 0;
    padding:
        1.15rem
        1.25rem
        1.15rem
        4.75rem;
    counter-increment: vsm-steps;
    background: #ffffff;
    border: 1px solid var(--vsm-border);
    border-radius: var(--vsm-radius);
    box-shadow: var(--vsm-shadow-small);
}

.vsm-ratgeber-main
.com-content-article__body > ol > li::before {
    position: absolute;
    top: 50%;
    left: 1.1rem;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    content: counter(vsm-steps);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            var(--vsm-primary),
            var(--vsm-secondary)
        );
    border-radius: 50%;
    box-shadow:
        0 0.45rem 1rem rgba(21, 107, 193, 0.2);
    transform: translateY(-50%);
}


/* ---------------------------------------------------------
   Tabellen
   --------------------------------------------------------- */

.vsm-ratgeber-main .table-responsive {
    width: 100%;
    margin: 1.6rem 0 2.5rem;
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid var(--vsm-border);
    border-radius: var(--vsm-radius);
    box-shadow: var(--vsm-shadow-small);
    scrollbar-width: thin;
    scrollbar-color:
        var(--vsm-border-strong)
        transparent;
}

.vsm-ratgeber-main table {
    width: 100%;
    min-width: 43rem;
    margin: 0;
    color: var(--vsm-text-soft);
    font-size: 0.91rem;
    line-height: 1.5;
    border: 0;
    border-spacing: 0;
    border-collapse: separate;

    /* Bootstrap-Tabellenfarben innerhalb des Ratgeberbereichs neutralisieren */
    --bs-table-color: var(--vsm-text-soft);
    --bs-table-bg: transparent;
    --bs-table-striped-color: var(--vsm-text-soft);
    --bs-table-striped-bg: transparent;
    --bs-table-hover-color: var(--vsm-text-soft);
    --bs-table-hover-bg: transparent;
    --bs-table-border-color: var(--vsm-border);
    --bs-table-accent-bg: transparent;
}

.vsm-ratgeber-main table thead {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vsm-primary-dark),
            var(--vsm-primary)
        );
}

/* Nur Spaltenüberschriften im Tabellenkopf weiß darstellen */
.vsm-ratgeber-main table thead th {
    padding: 1rem 1.05rem;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 780;
    letter-spacing: 0.015em;
    vertical-align: middle;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.vsm-ratgeber-main table thead th:last-child {
    border-right: 0;
}

/* Datenzellen und Zeilenüberschriften erhalten dieselbe helle Grundfläche */
.vsm-ratgeber-main table tbody td,
.vsm-ratgeber-main table tbody th[scope="row"] {
    padding: 1rem 1.05rem;
    color: var(--vsm-text-soft);
    vertical-align: top;
    background: #ffffff;
    border: 0;
    border-right: 1px solid var(--vsm-border);
    border-bottom: 1px solid var(--vsm-border);
    box-shadow: none;
}

/* Zeilenüberschriften optisch hervorheben, aber gut lesbar halten */
.vsm-ratgeber-main table tbody th[scope="row"] {
    color: var(--vsm-text);
    font-size: 0.91rem;
    font-weight: 750;
    letter-spacing: 0;
    text-align: left;
}

.vsm-ratgeber-main table tbody td:last-child,
.vsm-ratgeber-main table tbody th[scope="row"]:last-child {
    border-right: 0;
}

.vsm-ratgeber-main table tbody tr:last-child td,
.vsm-ratgeber-main table tbody tr:last-child th[scope="row"] {
    border-bottom: 0;
}

/* Streifenfarbe auf alle Zellen einer Zeile anwenden */
.vsm-ratgeber-main table tbody tr:nth-child(even) td,
.vsm-ratgeber-main table tbody tr:nth-child(even) th[scope="row"] {
    background: #f7fafc;
}

/* Hoverfarbe ebenfalls auf die komplette Zeile anwenden */
.vsm-ratgeber-main table tbody tr:hover td,
.vsm-ratgeber-main table tbody tr:hover th[scope="row"] {
    background: var(--vsm-primary-soft);
}

.vsm-ratgeber-main table tbody td strong,
.vsm-ratgeber-main table tbody th[scope="row"] strong {
    color: var(--vsm-primary-dark);
}


/* ---------------------------------------------------------
   Bewertungs- und Affiliate-Buttons
   --------------------------------------------------------- */

.vsm-ratgeber-main
.com-content-article__body .btn {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    margin: 0.5rem 0 1.5rem;
    padding: 0.8rem 1.4rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 780;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    background:
        linear-gradient(
            135deg,
            var(--vsm-primary),
            var(--vsm-primary-dark)
        );
    border: 0;
    border-radius: 0.75rem;
    box-shadow:
        0 0.65rem 1.5rem rgba(21, 107, 193, 0.2);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.vsm-ratgeber-main
.com-content-article__body .btn::after {
    content: "→";
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.vsm-ratgeber-main
.com-content-article__body .btn:hover,
.vsm-ratgeber-main
.com-content-article__body .btn:focus-visible {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vsm-secondary-dark),
            var(--vsm-secondary)
        );
    box-shadow:
        0 0.85rem 1.75rem rgba(48, 181, 128, 0.25);
    transform: translateY(-0.15rem);
}

.vsm-ratgeber-main
.com-content-article__body .btn:hover::after {
    transform: translateX(0.2rem);
}


/* ---------------------------------------------------------
   FAQ-Bereich
   --------------------------------------------------------- */

.vsm-ratgeber-main
.com-content-article__body
.vsm-faq-section-heading {
    margin-bottom: 1.75rem;
}

.vsm-ratgeber-main
.com-content-article__body
.vsm-faq-question {
    position: relative;
    z-index: 2;
    margin: 1rem 0 0;
    padding:
        1.15rem
        3.5rem
        1.15rem
        1.25rem;
    color: var(--vsm-text);
    font-size: 1.08rem;
    font-weight: 760;
    background:
        linear-gradient(
            90deg,
            var(--vsm-primary-soft),
            #ffffff
        );
    border: 1px solid var(--vsm-border);
    border-bottom: 0;
    border-radius:
        var(--vsm-radius)
        var(--vsm-radius)
        0
        0;
}

.vsm-ratgeber-main
.com-content-article__body
.vsm-faq-question::after {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    display: grid;
    width: 1.85rem;
    height: 1.85rem;
    content: "?";
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 850;
    place-items: center;
    background: var(--vsm-primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.vsm-ratgeber-main
.com-content-article__body
.vsm-faq-answer {
    margin: 0 0 1rem;
    padding:
        0.25rem
        1.25rem
        1.35rem;
    background: #ffffff;
    border: 1px solid var(--vsm-border);
    border-top: 0;
    border-radius:
        0
        0
        var(--vsm-radius)
        var(--vsm-radius);
}


/* ---------------------------------------------------------
   Social-Share-Bereich
   --------------------------------------------------------- */

.vsm-ratgeber-main .share-container {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--vsm-border);
}

.vsm-ratgeber-main .socialshare-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
}

.vsm-ratgeber-main .socialshare-buttons li {
    margin: 0;
}

.vsm-ratgeber-main .socialshare-buttons a {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    min-height: 2.65rem;
    padding: 0.55rem 0.85rem;
    color: var(--vsm-text-soft);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--vsm-surface-soft);
    border: 1px solid var(--vsm-border);
    border-radius: 999px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.vsm-ratgeber-main .socialshare-buttons a:hover {
    color: #ffffff;
    background: var(--vsm-primary);
    border-color: var(--vsm-primary);
    transform: translateY(-0.1rem);
}

.vsm-ratgeber-main .socialshare-buttons svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}


/* ---------------------------------------------------------
   Bilder
   --------------------------------------------------------- */

.vsm-ratgeber-main
.com-content-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--vsm-radius);
}

.vsm-ratgeber-main
.com-content-article__body figure {
    margin: 2rem 0;
}

.vsm-ratgeber-main
.com-content-article__body figcaption {
    margin-top: 0.7rem;
    color: var(--vsm-text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: center;
}


/* ---------------------------------------------------------
   Fokusdarstellung und Barrierefreiheit
   --------------------------------------------------------- */

.vsm-ratgeber-page a:focus-visible,
.vsm-ratgeber-page button:focus-visible,
.vsm-ratgeber-page summary:focus-visible {
    outline: 0.2rem solid rgba(48, 181, 128, 0.65);
    outline-offset: 0.2rem;
}


/* ---------------------------------------------------------
   Ansicht ohne Inhaltsübersicht
   --------------------------------------------------------- */

.vsm-ratgeber-without-toc .vsm-ratgeber-grid {
    display: block;
}

.vsm-ratgeber-without-toc .vsm-ratgeber-main {
    max-width: 980px;
    margin-inline: auto;
}


/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 1100px) {
    .vsm-ratgeber-grid {
        grid-template-columns:
            minmax(12rem, 13.5rem)
            minmax(0, 1fr);
        gap: 1.5rem;
    }

    .vsm-ratgeber-main {
        padding:
            clamp(1.35rem, 4vw, 2.75rem)
            clamp(1.15rem, 4vw, 2.75rem);
    }

    .vsm-toc-navigation a {
        font-size: 0.78rem;
    }
}


/* ---------------------------------------------------------
   Mobil
   --------------------------------------------------------- */

@media (max-width: 850px) {
    body .container-component {
        padding-inline: 0.75rem;
    }

    .mod-breadcrumbs__wrapper {
        margin: 0.75rem auto;
    }

    .mod-breadcrumbs.breadcrumb {
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
        border-radius: 0.75rem;
        scrollbar-width: thin;
    }

    .vsm-ratgeber-grid {
        display: block;
    }

    .vsm-ratgeber-sidebar {
        display: none;
    }

    .vsm-ratgeber-main {
        padding:
            1.4rem
            1.1rem
            2.25rem;
        border-radius: 1.1rem;
    }

    .vsm-article-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .vsm-ratgeber-main .page-header h1 {
        max-width: none;
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }

    .vsm-ratgeber-main
    .com-content-article__body {
        font-size: 1rem;
        line-height: 1.72;
    }

    .vsm-ratgeber-main
    .com-content-article__body h2 {
        margin-top: 3.25rem;
        padding-left: 0.9rem;
        font-size: clamp(1.45rem, 6vw, 1.85rem);
        scroll-margin-top: 6rem;
    }

    .vsm-ratgeber-main
    .com-content-article__body blockquote {
        padding: 1.25rem 1.15rem;
    }

    .vsm-ratgeber-main
    .com-content-article__body > ul {
        padding:
            1.15rem
            1rem
            1.15rem
            2.8rem;
    }

    .vsm-ratgeber-main
    .com-content-article__body > ol > li {
        padding:
            1rem
            1rem
            1rem
            4rem;
    }

    .vsm-ratgeber-main
    .com-content-article__body > ol > li::before {
        left: 0.85rem;
        width: 2.35rem;
        height: 2.35rem;
    }

    .vsm-ratgeber-main
    .com-content-article__body .btn {
        width: 100%;
    }

    .vsm-ratgeber-main table {
        min-width: 42rem;
        font-size: 0.84rem;
    }

    .vsm-ratgeber-main table th,
    .vsm-ratgeber-main table td {
        padding: 0.85rem;
    }

    .vsm-ratgeber-main .socialshare-buttons a {
        width: 2.75rem;
        height: 2.75rem;
        justify-content: center;
        padding: 0;
    }

    .vsm-ratgeber-main
    .socialshare-buttons
    .socialshare-text {
        display: none !important;
    }
}


/* ---------------------------------------------------------
   Sehr kleine Displays
   --------------------------------------------------------- */

@media (max-width: 480px) {
    .vsm-ratgeber-main {
        padding-inline: 0.9rem;
    }

    .vsm-ratgeber-main .page-header h1 {
        letter-spacing: -0.035em;
    }

    .vsm-ratgeber-main
    .com-content-article__body
    > p:first-child {
        font-size: 1.05rem;
    }

    .vsm-ratgeber-main
    .com-content-article__body
    .vsm-faq-question {
        padding-right: 3rem;
        font-size: 1rem;
    }
}


/* ---------------------------------------------------------
   Reduzierte Bewegungen
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .vsm-reading-progress span,
    .vsm-toc-navigation a,
    .vsm-ratgeber-main .btn,
    .vsm-ratgeber-main .btn::after,
    .vsm-ratgeber-main .socialshare-buttons a {
        scroll-behavior: auto;
        transition: none;
    }
}


/* ---------------------------------------------------------
   Druckansicht
   --------------------------------------------------------- */

@media print {
    body:has(.vsm-ratgeber-page) {
        background: #ffffff;
    }

    body:has(.vsm-ratgeber-page)
    .container-component {
        max-width: none;
        padding: 0;
    }

    .vsm-reading-progress,
    .vsm-ratgeber-sidebar,
    .vsm-ratgeber-main .share-container,
    .vsm-ratgeber-main .btn {
        display: none !important;
    }

    .vsm-ratgeber-grid {
        display: block;
    }

    .vsm-ratgeber-main {
        padding: 0;
        background: #ffffff;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .vsm-ratgeber-main
    .page-header h1 {
        max-width: none;
        color: #000000;
    }

    .vsm-ratgeber-main
    .com-content-article__body {
        color: #000000;
        font-size: 10.5pt;
        line-height: 1.55;
    }

    .vsm-ratgeber-main
    .com-content-article__body h2,
    .vsm-ratgeber-main
    .com-content-article__body h3 {
        color: #000000;
        break-after: avoid;
    }

    .vsm-ratgeber-main
    .com-content-article__body blockquote,
    .vsm-ratgeber-main
    .com-content-article__body > ul,
    .vsm-ratgeber-main
    .com-content-article__body > ol > li,
    .vsm-ratgeber-main .table-responsive {
        break-inside: avoid;
        box-shadow: none;
    }

    .vsm-ratgeber-main .table-responsive {
        overflow: visible;
    }

    .vsm-ratgeber-main table {
        min-width: 0;
        font-size: 8pt;
    }

    .vsm-ratgeber-main a {
        color: #000000 !important;
        text-decoration: underline;
    }
}

/* =========================================================
   RECHERCHE- UND TRANSPARENZHINWEIS
   Modernes Layout für mehrseitige Joomla-Beiträge
   ========================================================= */

/* ---------------------------------
   Grundlayout für mehrseitige Artikel
   --------------------------------- */
body.itemid-486 .com-content-article.item-page {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 360px);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

/* Header über volle Breite */
body.itemid-486 .com-content-article.item-page .page-header {
    grid-column: 1 / -1;
    margin: 0 0 0.5rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background:
        linear-gradient(135deg, rgba(21, 107, 193, 0.08), rgba(48, 181, 128, 0.06)),
        #ffffff;
    border: 1px solid rgba(219, 229, 238, 0.95);
    border-radius: 1.35rem;
    box-shadow: 0 0.85rem 2rem rgba(9, 19, 29, 0.06);
}

body.itemid-486 .com-content-article.item-page .page-header h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #09131d;
}

/* Content links */
body.itemid-486 .com-content-article.item-page .com-content-article__body {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
}

/* Sidebar rechts */
body.itemid-486 .com-content-article.item-page .article-index {
    grid-column: 2;
    grid-row: 2;
    float: none !important;
    position: sticky;
    top: 1.5rem;
    margin: 0 !important;
    width: 100%;
    border: 0;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    box-shadow: 0 1rem 2rem rgba(9, 19, 29, 0.08);
    overflow: hidden;
}

body.itemid-486 .com-content-article.item-page .article-index .card-body {
    padding: 1.25rem 1.25rem 1rem;
}

body.itemid-486 .com-content-article.item-page .article-index h3 {
    margin: 0 0 1rem;
    font-size: 1.45rem;
    line-height: 1.2;
    color: #09131d;
}

body.itemid-486 .com-content-article.item-page .article-index .nav {
    gap: 0.3rem;
}

body.itemid-486 .com-content-article.item-page .article-index .py-1 {
    padding: 0 !important;
}

body.itemid-486 .com-content-article.item-page .article-index .toclink {
    display: block;
    padding: 0.7rem 0.85rem;
    color: #216b78;
    font-size: 0.98rem;
    line-height: 1.45;
    text-decoration: none;
    border-radius: 0.85rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

body.itemid-486 .com-content-article.item-page .article-index .toclink:hover,
body.itemid-486 .com-content-article.item-page .article-index .toclink:focus-visible {
    color: #0f5663;
    background: rgba(21, 107, 193, 0.08);
    transform: translateX(2px);
    box-shadow: inset 0 0 0 1px rgba(21, 107, 193, 0.12);
}

body.itemid-486 .com-content-article.item-page .article-index .toclink.active {
    color: #0b4d88;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(21, 107, 193, 0.12), rgba(48, 181, 128, 0.10));
    box-shadow: inset 0 0 0 1px rgba(21, 107, 193, 0.18);
}

/* ---------------------------------
   Seitenzähler moderner gestalten
   --------------------------------- */
body.itemid-486 .com-content-article.item-page .pagenavcounter {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1.35rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0d4f91;
    background: rgba(21, 107, 193, 0.08);
    border: 1px solid rgba(21, 107, 193, 0.14);
    border-radius: 999px;
    box-shadow: 0 0.25rem 0.75rem rgba(21, 107, 193, 0.06);
}

/* ---------------------------------
   Einleitung angenehmer lesbar
   --------------------------------- */
body.itemid-486 .com-content-article.item-page .com-content-article__body > p {
    max-width: 74ch;
    margin: 0 0 1.25rem;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #1c2a36;
}

body.itemid-486 .com-content-article.item-page .com-content-article__body > p:first-of-type {
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    line-height: 1.75;
    color: #09131d;
}

/* ---------------------------------
   Pagination / Weiter-Button
   --------------------------------- */
body.itemid-486 .com-content-article.item-page .pager {
    margin-top: 2rem;
}

body.itemid-486 .com-content-article.item-page .pagination {
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

body.itemid-486 .com-content-article.item-page .pagination .page-item {
    list-style: none;
}

body.itemid-486 .com-content-article.item-page .pagination .page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.9rem 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #156bc1, #1d7989);
    border: 0;
    border-radius: 0.9rem;
    box-shadow: 0 0.8rem 1.5rem rgba(21, 107, 193, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

body.itemid-486 .com-content-article.item-page .pagination .page-link:hover,
body.itemid-486 .com-content-article.item-page .pagination .page-link:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 1rem 1.75rem rgba(21, 107, 193, 0.22);
}

/* ---------------------------------
   Mehr Luft bei Listen und Absätzen
   --------------------------------- */
body.itemid-486 .com-content-article.item-page .com-content-article__body ul,
body.itemid-486 .com-content-article.item-page .com-content-article__body ol {
    max-width: 74ch;
    margin-bottom: 1.35rem;
    padding-left: 1.4rem;
}

body.itemid-486 .com-content-article.item-page .com-content-article__body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ---------------------------------
   Mobile Darstellung
   --------------------------------- */
@media (max-width: 991.98px) {
    body.itemid-486 .com-content-article.item-page {
        grid-template-columns: 1fr;
    }

    body.itemid-486 .com-content-article.item-page .page-header,
    body.itemid-486 .com-content-article.item-page .com-content-article__body,
    body.itemid-486 .com-content-article.item-page .article-index {
        grid-column: auto;
        grid-row: auto;
    }

    body.itemid-486 .com-content-article.item-page .article-index {
        position: static;
        order: 3;
    }

    body.itemid-486 .com-content-article.item-page .com-content-article__body {
        order: 2;
    }
}

@media (max-width: 575.98px) {
    body.itemid-486 .com-content-article.item-page .page-header {
        padding: 1.2rem 1rem;
        border-radius: 1rem;
    }

    body.itemid-486 .com-content-article.item-page .page-header h1 {
        font-size: 1.9rem;
    }

    body.itemid-486 .com-content-article.item-page .article-index .card-body {
        padding: 1rem;
    }

    body.itemid-486 .com-content-article.item-page .article-index h3 {
        font-size: 1.25rem;
    }

    body.itemid-486 .com-content-article.item-page .com-content-article__body > p {
        font-size: 1rem;
        line-height: 1.75;
    }

    body.itemid-486 .com-content-article.item-page .com-content-article__body > p:first-of-type {
        font-size: 1.08rem;
    }

    body.itemid-486 .com-content-article.item-page .pagination .page-link {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   MODERNE KONTAKTSEITE
   com_contact – Menüeintrag 190
   ========================================================= */

body.itemid-190 {
    --vsm-contact-primary: #156bc1;
    --vsm-contact-primary-dark: #0d4f91;
    --vsm-contact-secondary: #30b580;
    --vsm-contact-secondary-dark: #23875f;

    --vsm-contact-text: #09131d;
    --vsm-contact-text-soft: #435362;
    --vsm-contact-text-muted: #6c7a87;

    --vsm-contact-surface: #ffffff;
    --vsm-contact-surface-soft: #f5f8fb;
    --vsm-contact-border: #dbe5ee;
    --vsm-contact-danger: #c0392b;

    --vsm-contact-radius-small: 0.75rem;
    --vsm-contact-radius: 1rem;
    --vsm-contact-radius-large: 1.5rem;

    --vsm-contact-shadow-small:
        0 0.35rem 1rem rgba(9, 19, 29, 0.06);

    --vsm-contact-shadow:
        0 1.25rem 3.5rem rgba(9, 19, 29, 0.1);

    --vsm-contact-shadow-hover:
        0 1.5rem 4rem rgba(9, 19, 29, 0.14);
}


/* =========================================================
   ÄUSSERES JOOMLA-LAYOUT ZURÜCKSETZEN
   Verhindert eine doppelte weiße Content-Karte
   ========================================================= */

body.itemid-190 main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

body.itemid-190 .com-contact.contact {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}


/* =========================================================
   HERO-BEREICH
   ========================================================= */

body.itemid-190 .vsm-contact-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(15rem, 22rem);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    min-height: 23rem;
    overflow: hidden;
    padding:
        clamp(2rem, 5vw, 4.5rem)
        clamp(1.5rem, 5vw, 4.5rem);
    isolation: isolate;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(13, 79, 145, 1) 0%,
            rgba(21, 107, 193, 1) 55%,
            rgba(29, 121, 137, 1) 100%
        );
    border-radius: var(--vsm-contact-radius-large);
    box-shadow:
        0 1.5rem 4rem rgba(13, 79, 145, 0.22);
}

body.itemid-190 .vsm-contact-hero::before {
    position: absolute;
    z-index: -1;
    top: -12rem;
    right: -8rem;
    width: 32rem;
    height: 32rem;
    content: "";
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.2) 0,
            rgba(255, 255, 255, 0) 70%
        );
    border-radius: 50%;
}

body.itemid-190 .vsm-contact-hero::after {
    position: absolute;
    z-index: -1;
    bottom: -13rem;
    left: 30%;
    width: 28rem;
    height: 28rem;
    content: "";
    background:
        radial-gradient(
            circle,
            rgba(48, 181, 128, 0.4) 0,
            rgba(48, 181, 128, 0) 70%
        );
    border-radius: 50%;
}

body.itemid-190 .vsm-contact-hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

body.itemid-190 .vsm-contact-eyebrow {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 0.55rem 0.9rem;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
}

body.itemid-190 .vsm-contact-hero h1 {
    max-width: 15ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    font-weight: 820;
    line-height: 1.03;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

body.itemid-190 .vsm-contact-hero__lead {
    max-width: 58ch;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.72;
}

body.itemid-190 .vsm-contact-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.8rem 0 0;
    padding: 0;
    list-style: none;
}

body.itemid-190 .vsm-contact-hero__features li {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0.65rem 0.85rem;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
}

body.itemid-190 .vsm-contact-hero__features .fa-solid {
    color: #8ce0bd;
}


/* =========================================================
   HERO-GRAFIK
   ========================================================= */

body.itemid-190 .vsm-contact-hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 16rem;
}

body.itemid-190 .vsm-contact-hero__icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: clamp(9rem, 16vw, 13rem);
    height: clamp(9rem, 16vw, 13rem);
    color: var(--vsm-contact-primary-dark);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 1),
            rgba(237, 249, 244, 0.96)
        );
    border: 1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 2.5rem;
    box-shadow:
        0 2rem 4rem rgba(9, 19, 29, 0.24);
    transform: rotate(-4deg);
}

body.itemid-190 .vsm-contact-hero__icon::after {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    content: "\f1d8";
    color: #ffffff;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-size: 1.15rem;
    font-weight: 900;
    background:
        linear-gradient(
            135deg,
            var(--vsm-contact-secondary),
            var(--vsm-contact-secondary-dark)
        );
    border: 0.35rem solid rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow:
        0 0.75rem 1.5rem rgba(9, 19, 29, 0.2);
}

body.itemid-190 .vsm-contact-hero__visual-dot {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
}

body.itemid-190 .vsm-contact-hero__visual-dot--one {
    top: 8%;
    left: 13%;
    width: 2.25rem;
    height: 2.25rem;
}

body.itemid-190 .vsm-contact-hero__visual-dot--two {
    right: 8%;
    bottom: 15%;
    width: 1.4rem;
    height: 1.4rem;
}

body.itemid-190 .vsm-contact-hero__visual-dot--three {
    top: 23%;
    right: 2%;
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(140, 224, 189, 0.7);
}


/* =========================================================
   ZWEISPALTIGER HAUPTBEREICH
   ========================================================= */

body.itemid-190 .vsm-contact-layout {
    display: grid;
    grid-template-columns:
        minmax(18rem, 0.8fr)
        minmax(0, 1.35fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}


/* =========================================================
   LINKE INFORMATIONSKARTE
   ========================================================= */

body.itemid-190 .vsm-contact-sidebar {
    padding:
        clamp(1.4rem, 3vw, 2.25rem);
    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #f8fafc 100%
        );
    border: 1px solid var(--vsm-contact-border);
    border-radius: var(--vsm-contact-radius-large);
    box-shadow: var(--vsm-contact-shadow);
}

body.itemid-190 .vsm-contact-sidebar__header {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
    margin-bottom: 1.35rem;
}

body.itemid-190 .vsm-contact-sidebar__header > .fa-solid {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vsm-contact-primary),
            #1d7989
        );
    border-radius: 0.85rem;
    box-shadow:
        0 0.65rem 1.25rem rgba(21, 107, 193, 0.18);
}

body.itemid-190 .vsm-contact-sidebar__label,
body.itemid-190 .vsm-contact-form-card__label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--vsm-contact-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

body.itemid-190 .vsm-contact-sidebar h2 {
    margin: 0;
    color: var(--vsm-contact-text);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

body.itemid-190 .vsm-contact-description {
    color: var(--vsm-contact-text-soft);
    font-size: 0.98rem;
    line-height: 1.72;
}

body.itemid-190 .vsm-contact-description p {
    margin: 0 0 1rem;
}

body.itemid-190 .vsm-contact-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ANLIEGEN-KARTEN
   ========================================================= */

body.itemid-190 .vsm-contact-reasons {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

body.itemid-190 .vsm-contact-reason {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--vsm-contact-border);
    border-radius: var(--vsm-contact-radius);
    box-shadow: var(--vsm-contact-shadow-small);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

body.itemid-190 .vsm-contact-reason:hover {
    border-color: rgba(21, 107, 193, 0.28);
    box-shadow:
        0 0.75rem 1.75rem rgba(9, 19, 29, 0.09);
    transform: translateY(-0.15rem);
}

body.itemid-190 .vsm-contact-reason__icon {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--vsm-contact-primary);
    background: rgba(21, 107, 193, 0.08);
    border-radius: 0.75rem;
}

body.itemid-190 .vsm-contact-reason h3 {
    margin: 0 0 0.25rem;
    color: var(--vsm-contact-text);
    font-size: 0.98rem;
    line-height: 1.35;
}

body.itemid-190 .vsm-contact-reason p {
    margin: 0;
    color: var(--vsm-contact-text-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}


/* =========================================================
   RECHTSBERATUNGSHINWEIS
   ========================================================= */

body.itemid-190 .vsm-contact-notice {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    color: #6b4b08;
    background: #fff7e8;
    border: 1px solid rgba(217, 119, 6, 0.22);
    border-radius: var(--vsm-contact-radius);
}

body.itemid-190 .vsm-contact-notice > .fa-solid {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: #d97706;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 0.6rem;
}

body.itemid-190 .vsm-contact-notice p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
}


/* =========================================================
   FORMULARKARTE
   ========================================================= */

body.itemid-190 .vsm-contact-form-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--vsm-contact-border);
    border-radius: var(--vsm-contact-radius-large);
    box-shadow: var(--vsm-contact-shadow);
}

body.itemid-190 .vsm-contact-form-card__header {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding:
        clamp(1.4rem, 3vw, 2rem)
        clamp(1.25rem, 3vw, 2.25rem);
    background:
        linear-gradient(
            135deg,
            rgba(21, 107, 193, 0.075),
            rgba(48, 181, 128, 0.055)
        );
    border-bottom: 1px solid var(--vsm-contact-border);
}

body.itemid-190 .vsm-contact-form-card__icon {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    color: #ffffff;
    font-size: 1.05rem;
    background:
        linear-gradient(
            135deg,
            var(--vsm-contact-primary),
            #1d7989
        );
    border-radius: 1rem;
    box-shadow:
        0 0.75rem 1.5rem rgba(21, 107, 193, 0.2);
}

body.itemid-190 .vsm-contact-form-card__header h2 {
    margin: 0;
    color: var(--vsm-contact-text);
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

body.itemid-190 .vsm-contact-form-card__header p {
    margin: 0.5rem 0 0;
    color: var(--vsm-contact-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

body.itemid-190 .vsm-contact-form-card__body {
    padding:
        clamp(1.4rem, 3vw, 2.25rem);
}


/* =========================================================
   DOPPELTE JOOMLA-ÜBERSCHRIFT AUSBLENDEN
   ========================================================= */

body.itemid-190 .vsm-contact-form-card__body > h2 {
    display: none;
}


/* =========================================================
   JOOMLA-KONTAKTFORMULAR
   ========================================================= */

body.itemid-190 .contact-form {
    margin: 0;
}

body.itemid-190 .contact-form form {
    display: grid;
    gap: 1.15rem;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

body.itemid-190 .contact-form fieldset {
    display: grid;
    gap: 1.15rem;
    margin: 0;
    padding: 0;
    border: 0;
}

body.itemid-190 .contact-form legend {
    width: 100%;
    margin: 0 0 0.25rem;
    padding: 0 0 0.85rem;
    color: var(--vsm-contact-text);
    font-size: 1.05rem;
    font-weight: 750;
    line-height: 1.3;
    border-bottom: 1px solid var(--vsm-contact-border);
}

body.itemid-190 .contact-form .control-group {
    display: grid;
    gap: 0.45rem;
    margin: 0;
}

body.itemid-190 .contact-form .control-label,
body.itemid-190 .contact-form .controls {
    width: 100%;
    margin: 0;
    padding: 0;
}

body.itemid-190 .contact-form label {
    display: inline-flex;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    color: var(--vsm-contact-text);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

body.itemid-190 .contact-form .star,
body.itemid-190 .contact-form .red {
    color: var(--vsm-contact-danger);
}

body.itemid-190 .contact-form .field-spacer {
    padding: 0.75rem 0.9rem;
    color: var(--vsm-contact-text-muted);
    background: var(--vsm-contact-surface-soft);
    border: 1px solid var(--vsm-contact-border);
    border-radius: 0.75rem;
}

body.itemid-190 .contact-form .field-spacer label {
    color: var(--vsm-contact-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

body.itemid-190 .contact-form .form-control {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.78rem 0.95rem;
    color: var(--vsm-contact-text);
    font-size: 1rem;
    line-height: 1.5;
    background: #ffffff;
    border: 1px solid #cbd8e3;
    border-radius: 0.8rem;
    box-shadow:
        0 0.15rem 0.35rem rgba(9, 19, 29, 0.025);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

body.itemid-190 .contact-form textarea.form-control {
    min-height: 12rem;
    resize: vertical;
}

body.itemid-190 .contact-form .form-control:hover {
    border-color: #aebfcd;
}

body.itemid-190 .contact-form .form-control:focus {
    color: var(--vsm-contact-text);
    background: #ffffff;
    border-color: var(--vsm-contact-primary);
    outline: 0;
    box-shadow:
        0 0 0 0.25rem rgba(21, 107, 193, 0.12);
}

body.itemid-190 .contact-form .form-control:invalid:not(:placeholder-shown) {
    border-color: rgba(192, 57, 43, 0.65);
}


/* =========================================================
   ALTCHA-CAPTCHA
   ========================================================= */

body.itemid-190 .contact-form altcha-widget {
    display: block;
    width: 100%;
    max-width: none;
    overflow: hidden;
    border-radius: 0.8rem;
}


/* =========================================================
   ABSENDEBUTTON
   ========================================================= */

body.itemid-190 .contact-form button[type="submit"] {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 1.35rem;
    color: #ffffff;
    font-weight: 750;
    line-height: 1.3;
    background:
        linear-gradient(
            135deg,
            var(--vsm-contact-primary),
            #1d7989
        );
    border: 0;
    border-radius: 0.85rem;
    box-shadow:
        0 0.8rem 1.6rem rgba(21, 107, 193, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

body.itemid-190 .contact-form button[type="submit"]::before {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-size: 0.9rem;
    font-weight: 900;
}

body.itemid-190 .contact-form button[type="submit"]:hover,
body.itemid-190 .contact-form button[type="submit"]:focus-visible {
    color: #ffffff;
    filter: brightness(1.04);
    transform: translateY(-0.15rem);
    box-shadow:
        0 1rem 2rem rgba(21, 107, 193, 0.27);
}


/* =========================================================
   DATENSCHUTZHINWEIS UNTER DEM FORMULAR
   ========================================================= */

body.itemid-190 .vsm-contact-form-card__footer {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding:
        1rem
        clamp(1.25rem, 3vw, 2.25rem);
    color: var(--vsm-contact-text-muted);
    background: var(--vsm-contact-surface-soft);
    border-top: 1px solid var(--vsm-contact-border);
}

body.itemid-190 .vsm-contact-form-card__footer > .fa-solid {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: var(--vsm-contact-secondary-dark);
    background: rgba(48, 181, 128, 0.1);
    border-radius: 0.6rem;
}

body.itemid-190 .vsm-contact-form-card__footer p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.55;
}

body.itemid-190 .vsm-contact-form-card__footer a {
    color: var(--vsm-contact-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

body.itemid-190 .vsm-contact-form-card__footer a:hover,
body.itemid-190 .vsm-contact-form-card__footer a:focus {
    color: var(--vsm-contact-primary-dark);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    body.itemid-190 .vsm-contact-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    body.itemid-190 .vsm-contact-hero__visual {
        display: none;
    }

    body.itemid-190 .vsm-contact-hero h1 {
        max-width: 18ch;
    }

    body.itemid-190 .vsm-contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    body.itemid-190 .vsm-contact-sidebar {
        order: 2;
    }

    body.itemid-190 .vsm-contact-form-card {
        order: 1;
    }
}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 575.98px) {
    body.itemid-190 main {
        margin-bottom: 2.5rem;
    }

    body.itemid-190 .vsm-contact-hero {
        padding: 1.6rem 1.15rem;
        border-radius: 1rem;
    }

    body.itemid-190 .vsm-contact-hero h1 {
        max-width: none;
        font-size: 2.15rem;
        line-height: 1.08;
    }

    body.itemid-190 .vsm-contact-hero__lead {
        font-size: 1rem;
    }

    body.itemid-190 .vsm-contact-hero__features {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    body.itemid-190 .vsm-contact-hero__features li {
        width: 100%;
        border-radius: 0.75rem;
    }

    body.itemid-190 .vsm-contact-layout {
        gap: 1rem;
        margin-top: 1rem;
    }

    body.itemid-190 .vsm-contact-sidebar,
    body.itemid-190 .vsm-contact-form-card {
        border-radius: 1rem;
    }

    body.itemid-190 .vsm-contact-sidebar {
        padding: 1.2rem 1rem;
    }

    body.itemid-190 .vsm-contact-sidebar__header {
        grid-template-columns: 2.5rem minmax(0, 1fr);
    }

    body.itemid-190 .vsm-contact-sidebar__header > .fa-solid {
        width: 2.5rem;
        height: 2.5rem;
    }

    body.itemid-190 .vsm-contact-form-card__header {
        grid-template-columns: 2.75rem minmax(0, 1fr);
        padding: 1.2rem 1rem;
    }

    body.itemid-190 .vsm-contact-form-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.8rem;
    }

    body.itemid-190 .vsm-contact-form-card__body {
        padding: 1.2rem 1rem;
    }

    body.itemid-190 .vsm-contact-form-card__footer {
        padding: 1rem;
    }

    body.itemid-190 .contact-form button[type="submit"] {
        width: 100%;
    }
}


/* =========================================================
   REDUZIERTE BEWEGUNG
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    body.itemid-190 .vsm-contact-reason,
    body.itemid-190 .contact-form .form-control,
    body.itemid-190 .contact-form button[type="submit"] {
        transition: none;
    }
}

/* =========================================================
   MODERNER RATGEBER-KATEGORIEBLOG
   Kategorie-ID 8 / Menü-ID 335
   ========================================================= */

body.itemid-335 {
    --vsm-blog-primary: #156bc1;
    --vsm-blog-primary-dark: #0d4f91;
    --vsm-blog-primary-soft: #edf5fc;

    --vsm-blog-secondary: #30b580;
    --vsm-blog-secondary-dark: #23875f;
    --vsm-blog-secondary-soft: #edf9f4;

    --vsm-blog-text: #09131d;
    --vsm-blog-text-soft: #4d5d6c;
    --vsm-blog-text-muted: #6c7a87;

    --vsm-blog-surface: #ffffff;
    --vsm-blog-surface-soft: #f5f8fb;
    --vsm-blog-border: #dbe5ee;

    --vsm-blog-radius-small: 0.75rem;
    --vsm-blog-radius: 1rem;
    --vsm-blog-radius-large: 1.5rem;

    --vsm-blog-shadow-small:
        0 0.35rem 1rem rgba(9, 19, 29, 0.06);

    --vsm-blog-shadow:
        0 1.25rem 3.5rem rgba(9, 19, 29, 0.1);

    --vsm-blog-shadow-hover:
        0 1.5rem 4rem rgba(9, 19, 29, 0.15);
}


/* Äußeres Standard-Main zurücksetzen */

body.itemid-335 main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

body.itemid-335 .vsm-category-blog {
    width: 100%;
}


/* =========================================================
   KATEGORIE-HERO
   ========================================================= */

body.itemid-335 .vsm-category-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(15rem, 23rem);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    min-height: 25rem;
    overflow: hidden;
    padding:
        clamp(2.25rem, 5vw, 4.75rem)
        clamp(1.5rem, 5vw, 4.75rem);
    isolation: isolate;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #0d4f91 0%,
            #156bc1 52%,
            #1d7989 100%
        );
    border-radius: var(--vsm-blog-radius-large);
    box-shadow:
        0 1.5rem 4rem rgba(13, 79, 145, 0.24);
}

body.itemid-335 .vsm-category-hero::before {
    position: absolute;
    z-index: -1;
    top: -12rem;
    right: -8rem;
    width: 34rem;
    height: 34rem;
    content: "";
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0) 70%
        );
    border-radius: 50%;
}

body.itemid-335 .vsm-category-hero::after {
    position: absolute;
    z-index: -1;
    bottom: -13rem;
    left: 22%;
    width: 30rem;
    height: 30rem;
    content: "";
    background:
        radial-gradient(
            circle,
            rgba(48, 181, 128, 0.42),
            rgba(48, 181, 128, 0) 70%
        );
    border-radius: 50%;
}

body.itemid-335 .vsm-category-hero__eyebrow {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 0.55rem 0.9rem;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

body.itemid-335 .vsm-category-hero h1 {
    max-width: 13ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

body.itemid-335 .vsm-category-hero__description {
    max-width: 62ch;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.72;
}

body.itemid-335 .vsm-category-hero__description p {
    margin: 0;
}

body.itemid-335 .vsm-category-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.75rem;
}

body.itemid-335 .vsm-category-hero__meta > span {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.65rem 0.85rem;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    font-weight: 650;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
}

body.itemid-335 .vsm-category-hero__meta .fa-solid {
    color: #8ce0bd;
}


/* Hero-Grafik */

body.itemid-335 .vsm-category-hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 17rem;
}

body.itemid-335 .vsm-category-hero__visual-main {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: clamp(10rem, 18vw, 14rem);
    height: clamp(10rem, 18vw, 14rem);
    color: var(--vsm-blog-primary-dark);
    font-size: clamp(3.5rem, 7vw, 5.75rem);
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf9f4
        );
    border: 1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 2.5rem;
    box-shadow:
        0 2rem 4rem rgba(9, 19, 29, 0.25);
    transform: rotate(-4deg);
}

body.itemid-335 .vsm-category-hero__visual-card {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 3.75rem;
    height: 3.75rem;
    color: #ffffff;
    border: 0.35rem solid rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow:
        0 0.75rem 1.5rem rgba(9, 19, 29, 0.2);
}

body.itemid-335 .vsm-category-hero__visual-card--one {
    top: 8%;
    left: 5%;
    background:
        linear-gradient(
            135deg,
            var(--vsm-blog-secondary),
            var(--vsm-blog-secondary-dark)
        );
}

body.itemid-335 .vsm-category-hero__visual-card--two {
    right: 2%;
    bottom: 10%;
    background:
        linear-gradient(
            135deg,
            var(--vsm-blog-primary),
            var(--vsm-blog-primary-dark)
        );
}


/* =========================================================
   ABSCHNITTSÜBERSCHRIFTEN
   ========================================================= */

body.itemid-335 .vsm-category-featured,
body.itemid-335 .vsm-category-latest,
body.itemid-335 .vsm-category-more {
    margin-top: clamp(2.5rem, 6vw, 5rem);
}

body.itemid-335 .vsm-category-section-heading {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

body.itemid-335 .vsm-category-section-heading__label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--vsm-blog-primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

body.itemid-335 .vsm-category-section-heading h2 {
    margin: 0;
    color: var(--vsm-blog-text);
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    font-weight: 820;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

body.itemid-335 .vsm-category-section-heading__icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 3rem;
    height: 3rem;
    color: var(--vsm-blog-primary);
    background: var(--vsm-blog-primary-soft);
    border-radius: 0.9rem;
}


/* =========================================================
   HERVORGEHOBENER BEITRAG
   ========================================================= */

body.itemid-335 .vsm-category-featured-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(20rem, 0.9fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--vsm-blog-border);
    border-radius: var(--vsm-blog-radius-large);
    box-shadow: var(--vsm-blog-shadow);
}

body.itemid-335 .vsm-category-featured-card__image-link {
    display: block;
    min-width: 0;
    color: inherit;
}

body.itemid-335 .vsm-category-featured-card__image {
    position: relative;
    height: 100%;
    min-height: 25rem;
    overflow: hidden;
    margin: 0;
    background: var(--vsm-blog-surface-soft);
}

body.itemid-335 .vsm-category-featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

body.itemid-335
.vsm-category-featured-card:hover
.vsm-category-featured-card__image img {
    transform: scale(1.035);
}

body.itemid-335 .vsm-category-featured-card__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.65rem 0.85rem;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 750;
    background:
        linear-gradient(
            135deg,
            var(--vsm-blog-primary),
            #1d7989
        );
    border-radius: 999px;
    box-shadow:
        0 0.75rem 1.5rem rgba(9, 19, 29, 0.2);
}

body.itemid-335 .vsm-category-featured-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        clamp(1.75rem, 4vw, 3.5rem);
}

body.itemid-335 .vsm-category-featured-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin-bottom: 1.25rem;
    color: var(--vsm-blog-text-muted);
    font-size: 0.8rem;
}

body.itemid-335 .vsm-category-featured-card__meta span {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

body.itemid-335 .vsm-category-featured-card__meta .fa-solid,
body.itemid-335 .vsm-category-featured-card__meta .fa-regular {
    color: var(--vsm-blog-secondary-dark);
}

body.itemid-335 .vsm-category-featured-card h3 {
    margin: 0;
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 830;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

body.itemid-335 .vsm-category-featured-card h3 a {
    color: var(--vsm-blog-text);
    text-decoration: none;
}

body.itemid-335 .vsm-category-featured-card h3 a:hover,
body.itemid-335 .vsm-category-featured-card h3 a:focus-visible {
    color: var(--vsm-blog-primary-dark);
}

body.itemid-335 .vsm-category-featured-card__content > p {
    margin: 1.25rem 0 1.75rem;
    color: var(--vsm-blog-text-soft);
    font-size: 1rem;
    line-height: 1.72;
}

body.itemid-335 .vsm-category-featured-card__button {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.8rem 1.25rem;
    color: #ffffff;
    font-weight: 750;
    text-decoration: none;
    background:
        linear-gradient(
            135deg,
            var(--vsm-blog-primary),
            #1d7989
        );
    border-radius: 0.85rem;
    box-shadow:
        0 0.75rem 1.5rem rgba(21, 107, 193, 0.2);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

body.itemid-335 .vsm-category-featured-card__button:hover,
body.itemid-335 .vsm-category-featured-card__button:focus-visible {
    color: #ffffff;
    transform: translateY(-0.15rem);
    box-shadow:
        0 1rem 2rem rgba(21, 107, 193, 0.26);
}


/* =========================================================
   NORMALE KARTEN
   ========================================================= */

body.itemid-335 .vsm-category-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: clamp(1.25rem, 3vw, 2rem);
}

body.itemid-335 .vsm-category-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--vsm-blog-border);
    border-radius: var(--vsm-blog-radius-large);
    box-shadow: var(--vsm-blog-shadow-small);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

body.itemid-335 .vsm-category-card:hover {
    border-color: rgba(21, 107, 193, 0.25);
    box-shadow: var(--vsm-blog-shadow-hover);
    transform: translateY(-0.35rem);
}

body.itemid-335 .vsm-category-card__image-link {
    display: block;
}

body.itemid-335 .vsm-category-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 21 / 11;
    margin: 0;
    background: var(--vsm-blog-surface-soft);
}

body.itemid-335 .vsm-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.itemid-335
.vsm-category-card:hover
.vsm-category-card__image img {
    transform: scale(1.04);
}

body.itemid-335 .vsm-category-card__placeholder,
body.itemid-335 .vsm-category-featured-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    color: var(--vsm-blog-primary);
    font-size: 3rem;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            var(--vsm-blog-primary-soft),
            var(--vsm-blog-secondary-soft)
        );
}

body.itemid-335 .vsm-category-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.4rem;
}

body.itemid-335 .vsm-category-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--vsm-blog-text-muted);
    font-size: 0.76rem;
}

body.itemid-335 .vsm-category-card__meta > span {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

body.itemid-335 .vsm-category-card__category {
    padding: 0.4rem 0.65rem;
    color: var(--vsm-blog-primary-dark);
    font-weight: 750;
    background: var(--vsm-blog-primary-soft);
    border-radius: 999px;
}

body.itemid-335 .vsm-category-card__category .fa-solid {
    color: var(--vsm-blog-secondary-dark);
}

body.itemid-335 .vsm-category-card__title {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

body.itemid-335 .vsm-category-card__title a {
    color: var(--vsm-blog-text);
    text-decoration: none;
}

body.itemid-335 .vsm-category-card__title a:hover,
body.itemid-335 .vsm-category-card__title a:focus-visible {
    color: var(--vsm-blog-primary-dark);
}

body.itemid-335 .vsm-category-card__intro {
    margin: 1rem 0 1.35rem;
    color: var(--vsm-blog-text-soft);
    font-size: 0.92rem;
    line-height: 1.68;
}

body.itemid-335 .vsm-category-card__footer {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--vsm-blog-border);
}

body.itemid-335 .vsm-category-card__date {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    color: var(--vsm-blog-text-muted);
    font-size: 0.74rem;
}

body.itemid-335 .vsm-category-card__button {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    flex: 0 0 auto;
    color: var(--vsm-blog-primary-dark);
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

body.itemid-335 .vsm-category-card__button .fa-solid {
    transition: transform 0.2s ease;
}

body.itemid-335 .vsm-category-card__button:hover .fa-solid {
    transform: translateX(0.2rem);
}


/* =========================================================
   WEITERE BEITRÄGE
   ========================================================= */

body.itemid-335 .vsm-category-link-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 1rem;
}

body.itemid-335 .vsm-category-link-card {
    display: grid;
    grid-template-columns:
        3rem
        minmax(0, 1fr)
        2rem;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem;
    background: #ffffff;
    border: 1px solid var(--vsm-blog-border);
    border-radius: var(--vsm-blog-radius);
    box-shadow: var(--vsm-blog-shadow-small);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

body.itemid-335 .vsm-category-link-card:hover {
    border-color: rgba(21, 107, 193, 0.25);
    box-shadow:
        0 0.85rem 1.75rem rgba(9, 19, 29, 0.09);
    transform: translateY(-0.15rem);
}

body.itemid-335 .vsm-category-link-card__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    color: var(--vsm-blog-primary);
    place-items: center;
    background: var(--vsm-blog-primary-soft);
    border-radius: 0.85rem;
}

body.itemid-335 .vsm-category-link-card__label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--vsm-blog-secondary-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.itemid-335 .vsm-category-link-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

body.itemid-335 .vsm-category-link-card h3 a {
    color: var(--vsm-blog-text);
    text-decoration: none;
}

body.itemid-335 .vsm-category-link-card h3 a:hover {
    color: var(--vsm-blog-primary-dark);
}

body.itemid-335 .vsm-category-link-card__arrow {
    color: var(--vsm-blog-primary);
    transition: transform 0.2s ease;
}

body.itemid-335
.vsm-category-link-card:hover
.vsm-category-link-card__arrow {
    transform: translateX(0.2rem);
}


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

body.itemid-335 .vsm-category-pagination {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 1.15rem 1.25rem;
    background: #ffffff;
    border: 1px solid var(--vsm-blog-border);
    border-radius: var(--vsm-blog-radius);
    box-shadow: var(--vsm-blog-shadow-small);
}

body.itemid-335 .vsm-category-pagination__info {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--vsm-blog-text-muted);
    font-size: 0.84rem;
    font-weight: 650;
}

body.itemid-335 .vsm-category-pagination__links .pagination {
    display: flex;
    gap: 0.35rem;
    margin: 0;
}

body.itemid-335
.vsm-category-pagination
.page-link {
    display: grid;
    min-width: 2.6rem;
    height: 2.6rem;
    padding: 0.5rem;
    color: var(--vsm-blog-text-soft);
    font-weight: 700;
    text-decoration: none;
    place-items: center;
    background: var(--vsm-blog-surface-soft);
    border: 1px solid var(--vsm-blog-border);
    border-radius: 0.7rem;
}

body.itemid-335
.vsm-category-pagination
.page-item.active
.page-link {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--vsm-blog-primary),
            #1d7989
        );
    border-color: transparent;
}

body.itemid-335
.vsm-category-pagination
.page-link:hover {
    color: var(--vsm-blog-primary-dark);
    background: var(--vsm-blog-primary-soft);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    body.itemid-335 .vsm-category-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    body.itemid-335 .vsm-category-hero__visual {
        display: none;
    }

    body.itemid-335 .vsm-category-featured-card {
        grid-template-columns: minmax(0, 1fr);
    }

    body.itemid-335 .vsm-category-featured-card__image {
        min-height: auto;
        aspect-ratio: 21 / 11;
    }

    body.itemid-335 .vsm-category-link-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 700px) {
    body.itemid-335 main {
        margin-bottom: 2.5rem;
    }

    body.itemid-335 .vsm-category-hero {
        padding: 1.75rem 1.15rem;
        border-radius: 1rem;
    }

    body.itemid-335 .vsm-category-hero h1 {
        max-width: none;
        font-size: 2.5rem;
    }

    body.itemid-335 .vsm-category-hero__description {
        font-size: 1rem;
    }

    body.itemid-335 .vsm-category-hero__meta {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    body.itemid-335 .vsm-category-hero__meta > span {
        width: 100%;
        border-radius: 0.75rem;
    }

    body.itemid-335 .vsm-category-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.itemid-335 .vsm-category-featured-card,
    body.itemid-335 .vsm-category-card {
        border-radius: 1rem;
    }

    body.itemid-335 .vsm-category-featured-card__content {
        padding: 1.35rem 1.1rem;
    }

    body.itemid-335 .vsm-category-featured-card h3 {
        font-size: 1.65rem;
    }

    body.itemid-335 .vsm-category-featured-card__button {
        width: 100%;
    }

    body.itemid-335 .vsm-category-card__content {
        padding: 1.15rem 1rem;
    }

    body.itemid-335 .vsm-category-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    body.itemid-335 .vsm-category-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    body.itemid-335 .vsm-category-pagination__links {
        overflow-x: auto;
    }
}


/* Reduzierte Bewegung */

@media (prefers-reduced-motion: reduce) {
    body.itemid-335 .vsm-category-card,
    body.itemid-335 .vsm-category-card img,
    body.itemid-335 .vsm-category-featured-card img,
    body.itemid-335 .vsm-category-link-card,
    body.itemid-335 .vsm-category-featured-card__button {
        transition: none;
    }
}

/* =========================================================
   STARTSEITE: SUCHFELD ÜBER DIE VOLLE INHALTSBREITE
   Menüeintrag / Itemid: 101
   Korrigiert für Joomla Finder + Awesomplete
   ========================================================= */

/*
 * Der Joomla-Finder ergänzt nach dem Laden einen
 * .awesomplete-Wrapper um das Eingabefeld. Das Grid funktioniert
 * sowohl vor als auch nach dieser JavaScript-Initialisierung.
 */
body.itemid-101 .com-content-article__body > p:has(> search) {
    width: 100%;
    margin: 0 0 1.75rem;
}

body.itemid-101 .com-content-article__body search,
body.itemid-101 .com-content-article__body .mod-finder {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Gemeinsamer äußerer Rahmen für Eingabe und Button */
body.itemid-101 .com-content-article__body
.mod-finder__search.input-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    width: 100%;
    max-width: none;
    min-height: 3.4rem;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #c8d6e2;
    border-radius: 1rem;
    box-shadow:
        0 0.25rem 0.75rem rgba(9, 19, 29, 0.06);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

body.itemid-101 .com-content-article__body
.mod-finder__search.input-group:focus-within {
    border-color: #156bc1;
    box-shadow:
        0 0 0 0.22rem rgba(21, 107, 193, 0.14),
        0 0.4rem 1rem rgba(9, 19, 29, 0.08);
}

/*
 * Awesomplete ist nach der Initialisierung das erste Grid-Element.
 * Ohne diese Regel behält der Wrapper nur seine Inhaltsbreite.
 */
body.itemid-101 .com-content-article__body
.mod-finder__search > .awesomplete {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: none;
}

/* Eingabefeld füllt die erste Grid-Spalte vollständig */
body.itemid-101 .com-content-article__body
.mod-finder__search .form-control,
body.itemid-101 .com-content-article__body
.mod-finder__search > .awesomplete > .form-control {
    display: block;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    min-height: 3.4rem;
    margin: 0;
    padding: 0.8rem 1.1rem;
    color: #09131d;
    background: #ffffff;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.itemid-101 .com-content-article__body
.mod-finder__search .form-control::placeholder {
    color: #6c7a87;
    opacity: 1;
}

/* Button sitzt immer am rechten Rand */
body.itemid-101 .com-content-article__body
.mod-finder__search .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: max-content;
    min-height: 3.4rem;
    margin: 0;
    padding: 0.8rem 1.35rem;
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
    background:
        linear-gradient(
            135deg,
            #156bc1,
            #1d7989
        );
    border: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition:
        filter 0.2s ease;
}

body.itemid-101 .com-content-article__body
.mod-finder__search .btn:hover,
body.itemid-101 .com-content-article__body
.mod-finder__search .btn:focus-visible {
    color: #ffffff;
    filter: brightness(1.08);
}

/* Autocomplete-Dropdown bleibt sauber unter dem Eingabefeld */
body.itemid-101 .com-content-article__body
.mod-finder__search .awesomplete > ul {
    z-index: 1000;
    width: 100%;
    min-width: 100%;
    margin-top: 0.35rem;
    border-radius: 0.75rem;
    box-shadow:
        0 0.75rem 2rem rgba(9, 19, 29, 0.14);
}

/* Smartphone */
@media (max-width: 575.98px) {
    body.itemid-101 .com-content-article__body
    .mod-finder__search.input-group {
        min-height: 3.15rem;
        border-radius: 0.85rem;
    }

    body.itemid-101 .com-content-article__body
    .mod-finder__search .form-control,
    body.itemid-101 .com-content-article__body
    .mod-finder__search > .awesomplete > .form-control {
        min-height: 3.15rem;
        padding-right: 0.8rem;
        padding-left: 0.9rem;
    }

    body.itemid-101 .com-content-article__body
    .mod-finder__search .btn {
        min-height: 3.15rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.itemid-101 .com-content-article__body
    .mod-finder__search.input-group,
    body.itemid-101 .com-content-article__body
    .mod-finder__search .btn {
        transition: none;
    }
}

/* =========================================================
   STARTSEITE: BEITRÄGE-MODUL
   Bild links, Überschrift und Einleitung rechts
   ========================================================= */

/*
 * Die Regeln sind auf das Beiträge-Modul innerhalb des
 * Hauptinhalts der Startseite begrenzt. Module im Footer
 * oder auf anderen Seiten bleiben unverändert.
 */
body.itemid-101 main
.com-content-article__body
.mod-articles-items {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.itemid-101 main
.com-content-article__body
.mod-articles-items > li {
    width: 100%;
    margin: 0;
    padding: 0;
}

/*
 * Zweispaltiger Aufbau:
 * links das Beitragsbild,
 * rechts oben die Überschrift,
 * rechts darunter der Einleitungstext.
 */
body.itemid-101 main
.com-content-article__body
.mod-articles-item-content {
    display: grid;
    grid-template-columns:
        minmax(20rem, 1.15fr)
        minmax(0, 0.85fr);
    grid-template-areas:
        "image title"
        "image intro";
    gap: 0.8rem clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    width: 100%;
    min-width: 0;
}

/* Überschrift rechts oben */
body.itemid-101 main
.com-content-article__body
.mod-articles-title {
    grid-area: title;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.16;
}

body.itemid-101 main
.com-content-article__body
.mod-articles-title a {
    display: block;
    color: #156bc1;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 0.2s ease;
}

body.itemid-101 main
.com-content-article__body
.mod-articles-title a:hover,
body.itemid-101 main
.com-content-article__body
.mod-articles-title a:focus-visible {
    color: #0d4f91;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

/* Bild links über beide Textzeilen */
body.itemid-101 main
.com-content-article__body
.mod-articles-image {
    grid-area: image;
    width: 100%;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 21 / 11;
    background: #eef3f8;
    border-radius: 1rem;
    box-shadow:
        0 0.4rem 1.2rem rgba(9, 19, 29, 0.08);
}

body.itemid-101 main
.com-content-article__body
.mod-articles-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.35s ease;
}

body.itemid-101 main
.com-content-article__body
.mod-articles-item:hover
.mod-articles-image img {
    transform: scale(1.015);
}

/* Einleitungstext rechts unter der Überschrift */
body.itemid-101 main
.com-content-article__body
.mod-articles-item-content > p {
    grid-area: intro;
    min-width: 0;
    margin: 0;
    color: #4d5d6c;
    font-size: 1rem;
    line-height: 1.7;
}

/*
 * Tablet: Bild und Text bleiben nebeneinander,
 * die Bildspalte wird etwas kleiner.
 */
@media (max-width: 991.98px) {
    body.itemid-101 main
    .com-content-article__body
    .mod-articles-item-content {
        grid-template-columns:
            minmax(16rem, 1fr)
            minmax(0, 1fr);
        gap: 0.75rem 1.5rem;
    }

    body.itemid-101 main
    .com-content-article__body
    .mod-articles-title {
        font-size: clamp(1.3rem, 2.6vw, 1.75rem);
    }
}

/*
 * Smartphone: Bild oben, anschließend Überschrift
 * und Einleitungstext. Dadurch bleibt alles gut lesbar.
 */
@media (max-width: 767.98px) {
    body.itemid-101 main
    .com-content-article__body
    .mod-articles-item-content {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "image"
            "title"
            "intro";
        gap: 1rem;
    }

    body.itemid-101 main
    .com-content-article__body
    .mod-articles-image {
        border-radius: 0.85rem;
    }

    body.itemid-101 main
    .com-content-article__body
    .mod-articles-title {
        font-size: clamp(1.35rem, 6vw, 1.7rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.itemid-101 main
    .com-content-article__body
    .mod-articles-title a,
    body.itemid-101 main
    .com-content-article__body
    .mod-articles-image img {
        transition: none;
    }

    body.itemid-101 main
    .com-content-article__body
    .mod-articles-item:hover
    .mod-articles-image img {
        transform: none;
    }
}

/* =========================================================
   PRODUKTMODUL: BÜCHERKARTEN IM VSM-DESIGN
   Gilt für Kartenmodule von OJ Amazon ProductPilot.
   ========================================================= */

main .ojapp-module-products.ojapp-module-layout-cards {
    --ojapp-vsm-primary: #156bc1;
    --ojapp-vsm-primary-dark: #0d4f91;
    --ojapp-vsm-secondary: #30b580;
    --ojapp-vsm-text: #09131d;
    --ojapp-vsm-text-soft: #4d5d6c;
    --ojapp-vsm-border: #dbe5ee;
    --ojapp-vsm-surface-soft: #f5f8fb;

    position: relative;
    width: 100%;
    margin: 0;
    padding: clamp(1.15rem, 2.8vw, 2rem);
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(237, 245, 252, 0.88),
            rgba(237, 249, 244, 0.72)
        );
    border: 1px solid rgba(21, 107, 193, 0.13);
    border-radius: 1.35rem;
    box-shadow:
        0 0.9rem 2.4rem rgba(9, 19, 29, 0.07);
}

/* Ruhige, dekorative Farbfläche im Hintergrund */
main .ojapp-module-products.ojapp-module-layout-cards::before {
    position: absolute;
    top: -7rem;
    right: -7rem;
    width: 16rem;
    height: 16rem;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(48, 181, 128, 0.16),
            rgba(48, 181, 128, 0) 68%
        );
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-grid {
    position: relative;
    z-index: 1;
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-grid > [class*="col-"] {
    display: flex;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-card {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #ffffff !important;
    border: 1px solid var(--ojapp-vsm-border) !important;
    border-radius: 1.1rem !important;
    box-shadow:
        0 0.55rem 1.4rem rgba(9, 19, 29, 0.07) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-card::before {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    left: 0;
    height: 0.25rem;
    content: "";
    background:
        linear-gradient(
            90deg,
            var(--ojapp-vsm-primary),
            var(--ojapp-vsm-secondary)
        );
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-card:hover,
main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-card:focus-within {
    border-color: rgba(21, 107, 193, 0.32) !important;
    box-shadow:
        0 1rem 2.2rem rgba(9, 19, 29, 0.12) !important;
    transform: translateY(-0.25rem);
}

/* Einheitliche Präsentationsfläche für unterschiedlich große Buchcover */
main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-image {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 18rem;
    padding: 1.65rem 1.35rem 1.25rem;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            var(--ojapp-vsm-surface-soft) 100%
        );
    border-bottom: 1px solid var(--ojapp-vsm-border);
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-image::after {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.32rem 0.65rem;
    content: "Buchtipp";
    color: var(--ojapp-vsm-primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    background: rgba(237, 245, 252, 0.94);
    border: 1px solid rgba(21, 107, 193, 0.16);
    border-radius: 999px;
    box-shadow:
        0 0.25rem 0.7rem rgba(9, 19, 29, 0.05);
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-image img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: min(74%, 13rem) !important;
    max-height: 15rem;
    margin: 0 auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0.65rem 0.8rem rgba(9, 19, 29, 0.18));
    transition: transform 0.25s ease;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-card:hover
.ojapp-card-image img {
    transform: scale(1.025);
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-card .card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.35rem 1.35rem 1.25rem !important;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-title {
    margin: 0 0 0.75rem;
    color: var(--ojapp-vsm-text);
    font-size: clamp(1.04rem, 1.5vw, 1.17rem) !important;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.012em;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-title a {
    color: inherit !important;
    text-decoration: none !important;
    text-decoration-thickness: 0.08rem;
    text-underline-offset: 0.18rem;
    transition: color 0.2s ease;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-title a:hover,
main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-title a:focus-visible {
    color: var(--ojapp-vsm-primary-dark) !important;
    text-decoration: underline !important;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-product-intro {
    margin: 0 0 1.25rem;
    color: var(--ojapp-vsm-text-soft);
    font-size: 0.94rem;
    line-height: 1.65;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    width: 100%;
    margin-top: auto !important;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.85rem;
    margin: 0;
    padding: 0.68rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    border-radius: 0.7rem !important;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-actions .btn-primary {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            var(--ojapp-vsm-primary),
            var(--ojapp-vsm-primary-dark)
        ) !important;
    border: 1px solid transparent !important;
    box-shadow:
        0 0.5rem 1rem rgba(21, 107, 193, 0.18);
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-actions .btn-primary:hover,
main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-actions .btn-primary:focus-visible {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            #23875f,
            var(--ojapp-vsm-secondary)
        ) !important;
    box-shadow:
        0 0.65rem 1.2rem rgba(48, 181, 128, 0.24);
    transform: translateY(-0.1rem);
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-actions .btn-outline-primary {
    color: var(--ojapp-vsm-primary-dark) !important;
    background: #ffffff !important;
    border: 1px solid rgba(21, 107, 193, 0.3) !important;
    box-shadow: none;
}

main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-actions .btn-outline-primary:hover,
main .ojapp-module-products.ojapp-module-layout-cards
.ojapp-card-actions .btn-outline-primary:focus-visible {
    color: var(--ojapp-vsm-primary-dark) !important;
    background: #edf5fc !important;
    border-color: rgba(21, 107, 193, 0.52) !important;
    transform: translateY(-0.1rem);
}

/* Tablet */
@media (max-width: 991.98px) {
    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-card-image {
        min-height: 17rem;
    }
}

/* Smartphone */
@media (max-width: 767.98px) {
    main .ojapp-module-products.ojapp-module-layout-cards {
        padding: 1rem;
        border-radius: 1rem;
    }

    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-card-image {
        min-height: 15.5rem;
        padding: 1.4rem 1rem 1rem;
    }

    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-card-image img {
        max-width: min(70%, 12rem) !important;
        max-height: 13rem;
    }

    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-product-card .card-body {
        padding: 1.2rem 1.1rem 1.1rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-product-card,
    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-card-image img,
    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-card-actions .btn {
        transition: none;
    }

    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-product-card:hover,
    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-product-card:focus-within,
    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-product-card:hover
    .ojapp-card-image img,
    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-card-actions .btn:hover,
    main .ojapp-module-products.ojapp-module-layout-cards
    .ojapp-card-actions .btn:focus-visible {
        transform: none;
    }
}


/* =========================================================
   PRODUKTDETAILSEITE: BÜCHER IM VSM-DESIGN
   Gilt ausschließlich für die Produktansicht von
   com_ojamazonproductpilot.
   ========================================================= */

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail {
    --ojapp-detail-primary: #156bc1;
    --ojapp-detail-primary-dark: #0d4f91;
    --ojapp-detail-primary-soft: #edf5fc;
    --ojapp-detail-secondary: #30b580;
    --ojapp-detail-secondary-dark: #23875f;
    --ojapp-detail-secondary-soft: #edf9f4;
    --ojapp-detail-text: #09131d;
    --ojapp-detail-text-soft: #4d5d6c;
    --ojapp-detail-muted: #6c7a87;
    --ojapp-detail-border: #dbe5ee;
    --ojapp-detail-surface: #ffffff;
    --ojapp-detail-surface-soft: #f5f8fb;
    --ojapp-detail-radius: 1.25rem;
    --ojapp-detail-shadow: 0 1rem 3rem rgba(9, 19, 29, 0.09);

    width: 100%;
    color: var(--ojapp-detail-text);
}

/* ---------------------------------------------------------
   Hero: Buchcover, Titel, Einleitung und Hauptaktion
   --------------------------------------------------------- */

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-hero {
    position: relative;
    isolation: isolate;
    align-items: stretch;
    margin: 0 0 clamp(1.5rem, 4vw, 2.75rem) !important;
    padding: clamp(1.2rem, 3.5vw, 2.75rem);
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(237, 245, 252, 0.97) 0%,
            rgba(255, 255, 255, 0.98) 52%,
            rgba(237, 249, 244, 0.94) 100%
        );
    border: 1px solid rgba(21, 107, 193, 0.16);
    border-radius: 1.5rem;
    box-shadow: var(--ojapp-detail-shadow);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-hero::before,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-hero::after {
    position: absolute;
    z-index: -1;
    content: "";
    pointer-events: none;
    border-radius: 50%;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-hero::before {
    top: -8rem;
    right: -7rem;
    width: 19rem;
    height: 19rem;
    background:
        radial-gradient(
            circle,
            rgba(48, 181, 128, 0.18),
            rgba(48, 181, 128, 0) 70%
        );
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-hero::after {
    bottom: -10rem;
    left: 22%;
    width: 22rem;
    height: 22rem;
    background:
        radial-gradient(
            circle,
            rgba(21, 107, 193, 0.12),
            rgba(21, 107, 193, 0) 70%
        );
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-hero > [class*="col-"] {
    position: relative;
    z-index: 1;
    min-width: 0;
}

/* Galerie als eigenständige Präsentationsfläche */
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: clamp(0.9rem, 2vw, 1.35rem);
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid var(--ojapp-detail-border) !important;
    border-radius: 1.2rem;
    box-shadow: 0 0.7rem 2rem rgba(9, 19, 29, 0.07);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-main-image {
    position: relative;
    display: flex !important;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 27rem;
    margin: 0 !important;
    padding: 2.3rem 1.25rem 1.6rem;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            var(--ojapp-detail-surface-soft) 100%
        ) !important;
    border: 1px solid rgba(219, 229, 238, 0.9) !important;
    border-radius: 1rem;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-main-image::before {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.38rem 0.72rem;
    content: "Buchtipp";
    color: var(--ojapp-detail-primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    background: rgba(237, 245, 252, 0.96);
    border: 1px solid rgba(21, 107, 193, 0.18);
    border-radius: 999px;
    box-shadow: 0 0.25rem 0.7rem rgba(9, 19, 29, 0.05);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-main-image img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: min(80%, 21rem) !important;
    max-height: 24rem !important;
    margin: auto;
    object-fit: contain;
    filter: drop-shadow(0 1rem 1.1rem rgba(9, 19, 29, 0.2));
    transition: transform 0.25s ease;
}

/*
 * Die Komponente besitzt für .ojapp-main-image-zoom eine eigene,
 * positionsabhängige Vergrößerung. Sie darf hier nicht durch einen
 * allgemeinen Hover-Transform überschrieben werden.
 */
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-main-image.ojapp-main-image-zoom {
    cursor: zoom-in;
}

/* Dezenter Effekt nur dann, wenn die Komponente keinen Zoom aktiviert. */
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-main-image:not(.ojapp-main-image-zoom):hover img {
    transform: scale(1.025);
}

/* Kleine Vorschaubilder */
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-thumbs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 0.9rem;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-thumb {
    display: grid !important;
    width: 4.2rem;
    height: 5.2rem;
    padding: 0.35rem !important;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff !important;
    border: 1px solid var(--ojapp-detail-border) !important;
    border-radius: 0.7rem !important;
    box-shadow: 0 0.25rem 0.7rem rgba(9, 19, 29, 0.05);
    place-items: center;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-thumb:hover,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-thumb:focus-visible,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-thumb.is-active {
    border-color: var(--ojapp-detail-primary) !important;
    box-shadow: 0 0 0 0.18rem rgba(21, 107, 193, 0.13);
    transform: translateY(-0.1rem);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

/* Amazon-Platzhalter und Prime-Werbegrafiken nicht als Produktbilder zeigen */
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-thumb:has(img[src*="/omaha/"]),
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-thumb:has(img[src*="/yourprime/"]) {
    display: none !important;
}

/* Textspalte */
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-hero > .col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(0.4rem, 1.5vw, 1.25rem);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-meta {
    display: block;
    min-height: 0;
    margin: 0 0 0.9rem;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-meta::before {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.78rem;
    content: "Verbraucher-Ratgeber · Buchempfehlung";
    color: var(--ojapp-detail-secondary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    background: var(--ojapp-detail-secondary-soft);
    border: 1px solid rgba(48, 181, 128, 0.22);
    border-radius: 999px;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-hero h1 {
    max-width: 18ch;
    margin: 0 0 1rem !important;
    color: var(--ojapp-detail-primary-dark) !important;
    font-size: clamp(2rem, 4.3vw, 3.35rem) !important;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-lead {
    max-width: 48rem;
    margin: 0 0 1.45rem !important;
    color: var(--ojapp-detail-text-soft) !important;
    font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
    line-height: 1.72;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.15rem;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    padding: 0.85rem 1.4rem !important;
    color: #ffffff !important;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    background:
        linear-gradient(
            135deg,
            var(--ojapp-detail-primary),
            var(--ojapp-detail-primary-dark)
        ) !important;
    border: 1px solid transparent !important;
    border-radius: 0.8rem !important;
    box-shadow: 0 0.65rem 1.35rem rgba(21, 107, 193, 0.22);
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-cta .btn-primary::after {
    margin-left: 0.65rem;
    content: "\2192";
    font-size: 1.1em;
    transition: transform 0.2s ease;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-cta .btn-primary:hover,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-cta .btn-primary:focus-visible {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            var(--ojapp-detail-secondary-dark),
            var(--ojapp-detail-secondary)
        ) !important;
    box-shadow: 0 0.8rem 1.55rem rgba(48, 181, 128, 0.26);
    transform: translateY(-0.12rem);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-cta .btn-primary:hover::after,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-cta .btn-primary:focus-visible::after {
    transform: translateX(0.2rem);
}

/* ---------------------------------------------------------
   Inhaltsbereich: Beschreibung, Merkmale und FAQ
   --------------------------------------------------------- */

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-content {
    display: flex !important;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.6rem);
    align-items: stretch;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-content > section {
    position: relative;
    min-width: 0;
    margin: 0 !important;
    padding: clamp(1.2rem, 2.7vw, 1.8rem) !important;
    overflow: hidden;
    background: var(--ojapp-detail-surface) !important;
    border: 1px solid var(--ojapp-detail-border) !important;
    border-radius: var(--ojapp-detail-radius) !important;
    box-shadow: 0 0.65rem 1.8rem rgba(9, 19, 29, 0.065);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-content > section::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 0.25rem;
    content: "";
    background:
        linear-gradient(
            90deg,
            var(--ojapp-detail-primary),
            var(--ojapp-detail-secondary)
        );
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-features-section,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-section {
    width: 100%;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description {
    padding: clamp(1.35rem, 3vw, 2.15rem) !important;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-detail-content > section > h2 {
    margin: 0 0 1.15rem !important;
    color: var(--ojapp-detail-primary-dark) !important;
    font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -0.018em;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body {
    max-width: 78rem;
    color: var(--ojapp-detail-text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body > :first-child {
    margin-top: 0;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body > :last-child {
    margin-bottom: 0;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body h2,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body h3 {
    color: var(--ojapp-detail-text) !important;
    font-weight: 800;
    line-height: 1.3;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem !important;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body p {
    margin-bottom: 1rem;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body ul,
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body ol {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.2rem;
    padding-left: 1.35rem;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-description-body li::marker {
    color: var(--ojapp-detail-secondary-dark);
}

/* Produktmerkmale als klare Checkliste */
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-feature-list-detail {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-feature-list-detail li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3.45rem;
    margin: 0 !important;
    padding: 0.8rem 1rem 0.8rem 2.65rem !important;
    color: var(--ojapp-detail-text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    background: var(--ojapp-detail-surface-soft);
    border: 1px solid rgba(219, 229, 238, 0.9);
    border-radius: 0.75rem;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-feature-list-detail li::before {
    position: absolute;
    top: 50%;
    left: 0.95rem;
    display: grid;
    width: 1.15rem;
    height: 1.15rem;
    content: "\2713";
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    background: var(--ojapp-detail-secondary);
    border-radius: 50%;
    place-items: center;
    transform: translateY(-50%);
}

/* FAQ als modernes Akkordeon */
body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-list {
    display: grid;
    gap: 0.8rem;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--ojapp-detail-border) !important;
    border-radius: 0.8rem !important;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-item[open] {
    border-color: rgba(21, 107, 193, 0.34) !important;
    box-shadow: 0 0.4rem 1rem rgba(9, 19, 29, 0.055);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-item summary {
    position: relative;
    min-height: 3.75rem;
    padding: 1rem 3.4rem 1rem 1.15rem !important;
    color: var(--ojapp-detail-text) !important;
    font-size: 1rem;
    font-weight: 760;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
    background: var(--ojapp-detail-surface-soft);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-item summary::-webkit-details-marker {
    display: none;
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 1.15rem;
    display: grid;
    width: 1.55rem;
    height: 1.55rem;
    content: "+";
    color: var(--ojapp-detail-primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    background: var(--ojapp-detail-primary-soft);
    border-radius: 50%;
    place-items: center;
    transform: translateY(-50%);
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-item[open] summary::after {
    content: "\2212";
}

body.com_ojamazonproductpilot.view-product
.ojapp-product-detail
.ojapp-faq-item > div {
    padding: 1rem 1.15rem 1.15rem !important;
    color: var(--ojapp-detail-text-soft);
    font-size: 0.96rem;
    line-height: 1.65;
    background: #ffffff;
}

/* ---------------------------------------------------------
   Tablet und Smartphone
   --------------------------------------------------------- */

@media (max-width: 991.98px) {
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-hero > .col-lg-7 {
        padding-top: 0.75rem;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-hero h1 {
        max-width: 24ch;
    }

}

@media (max-width: 767.98px) {
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-hero {
        padding: 1rem;
        border-radius: 1rem;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-gallery {
        padding: 0.75rem;
        border-radius: 0.9rem;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image {
        min-height: 20rem;
        padding: 2.1rem 0.8rem 1.2rem;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image img {
        max-width: min(80%, 16rem) !important;
        max-height: 18rem !important;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-hero h1 {
        max-width: none;
        font-size: clamp(1.75rem, 8vw, 2.4rem) !important;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-cta,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-cta .btn-primary {
        width: 100%;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-content > section {
        padding: 1.15rem !important;
        border-radius: 1rem !important;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-feature-list-detail {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image img,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-thumb,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-cta .btn-primary,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-cta .btn-primary::after,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-faq-item {
        transition: none;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image:hover img,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-thumb:hover,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-thumb:focus-visible,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-cta .btn-primary:hover,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-cta .btn-primary:focus-visible,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-cta .btn-primary:hover::after,
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-detail-cta .btn-primary:focus-visible::after {
        transform: none;
    }
}

/* =========================================================
   PRODUKTBILD-ZOOM V2
   Echter positionsabhängiger Zoom für Maus/Trackpad.
   Benötigt zusätzlich den JS-Code aus
   produktbild_zoom_userjs.js in der Template-user.js.
   ========================================================= */

@media (hover: hover) and (pointer: fine) {
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image.ojapp-main-image-zoom {
        cursor: zoom-in;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image.ojapp-main-image-zoom img {
        position: relative;
        z-index: 1;
        transform: scale(1) !important;
        transform-origin:
            var(--ojapp-zoom-x, 50%)
            var(--ojapp-zoom-y, 50%);
        transition: transform 0.18s ease !important;
        will-change: transform;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image.ojapp-main-image-zoom.is-ojapp-zooming {
        cursor: zoom-out;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image.ojapp-main-image-zoom.is-ojapp-zooming img {
        transform: scale(2) !important;
    }
}

/* Auch bei reduzierter Bewegung bleibt die Zoomfunktion erhalten,
   nur ohne Übergangsanimation. */
@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image.ojapp-main-image-zoom img {
        transition: none !important;
    }

    body.com_ojamazonproductpilot.view-product
    .ojapp-product-detail
    .ojapp-main-image.ojapp-main-image-zoom.is-ojapp-zooming img {
        transform: scale(2) !important;
    }
}


/* =========================================================
   BÜCHERÜBERSICHT: LISTENANSICHT IM VSM-DESIGN
   Gilt ausschließlich für die Produktübersicht von
   com_ojamazonproductpilot (view-products).
   ========================================================= */

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list {
    --ojapp-list-primary: #156bc1;
    --ojapp-list-primary-dark: #0d4f91;
    --ojapp-list-primary-soft: #edf5fc;
    --ojapp-list-secondary: #30b580;
    --ojapp-list-secondary-dark: #23875f;
    --ojapp-list-secondary-soft: #edf9f4;
    --ojapp-list-text: #09131d;
    --ojapp-list-text-soft: #4d5d6c;
    --ojapp-list-muted: #6c7a87;
    --ojapp-list-border: #dbe5ee;
    --ojapp-list-surface-soft: #f5f8fb;

    position: relative;
    width: 100%;
    padding: clamp(1rem, 2.6vw, 2rem);
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(237, 245, 252, 0.92),
            rgba(237, 249, 244, 0.72)
        ) !important;
    border: 1px solid rgba(21, 107, 193, 0.13);
    border-radius: 1.35rem;
    box-shadow: 0 0.9rem 2.4rem rgba(9, 19, 29, 0.07);
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list::before {
    position: absolute;
    top: -8rem;
    right: -8rem;
    width: 19rem;
    height: 19rem;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(48, 181, 128, 0.17),
            rgba(48, 181, 128, 0) 68%
        );
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-list {
    position: relative;
    z-index: 1;
    display: grid !important;
    gap: 1rem;
}

/* Einzelne Buchkarte */
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-list-item {
    position: relative;
    display: grid !important;
    grid-template-columns:
        minmax(9.5rem, 10.5rem)
        minmax(0, 1fr)
        minmax(10.75rem, 11rem);
    gap: clamp(1.1rem, 2.2vw, 1.65rem);
    align-items: stretch;
    min-width: 0;
    margin: 0 !important;
    padding: 1.15rem !important;
    overflow: hidden;
    background: #ffffff !important;
    border: 1px solid var(--ojapp-list-border) !important;
    border-radius: 1.1rem !important;
    box-shadow: 0 0.5rem 1.35rem rgba(9, 19, 29, 0.065) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-list-item::before {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    left: 0;
    height: 0.24rem;
    content: "";
    background:
        linear-gradient(
            90deg,
            var(--ojapp-list-primary),
            var(--ojapp-list-secondary)
        );
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-list-item:hover,
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-list-item:focus-within {
    border-color: rgba(21, 107, 193, 0.33) !important;
    box-shadow: 0 1rem 2.25rem rgba(9, 19, 29, 0.11) !important;
    transform: translateY(-0.18rem);
}

/* Einheitliche Fläche für die Buchcover */
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-image {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-width: 0;
    min-height: 12.5rem;
    padding: 1.4rem 0.8rem 0.9rem !important;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            var(--ojapp-list-surface-soft) 100%
        ) !important;
    border: 1px solid rgba(219, 229, 238, 0.92);
    border-radius: 0.9rem;
    text-decoration: none;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-image::before {
    position: absolute;
    z-index: 2;
    top: 0.7rem;
    left: 0.7rem;
    padding: 0.3rem 0.58rem;
    content: "Buchtipp";
    color: var(--ojapp-list-primary-dark);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(237, 245, 252, 0.96);
    border: 1px solid rgba(21, 107, 193, 0.16);
    border-radius: 999px;
    box-shadow: 0 0.2rem 0.6rem rgba(9, 19, 29, 0.05);
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-image img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: min(82%, 7.5rem) !important;
    max-height: 9.5rem !important;
    margin: auto;
    object-fit: contain;
    filter: drop-shadow(0 0.75rem 0.7rem rgba(9, 19, 29, 0.18));
    transition: transform 0.28s ease;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-list-item:hover
.ojapp-list-image img,
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-list-item:focus-within
.ojapp-list-image img {
    transform: scale(1.045);
}

/* Textbereich */
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-content {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0.25rem 0;
}

/* Das vorhandene leere Meta-Element wird als dezentes Label genutzt. */
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-meta {
    display: flex !important;
    min-height: 1.35rem;
    margin: 0 0 0.55rem !important;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-meta:empty::before {
    display: inline-flex;
    align-items: center;
    padding: 0.27rem 0.58rem;
    content: "Ratgeber & Verbraucherwissen";
    color: var(--ojapp-list-secondary-dark);
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1;
    background: var(--ojapp-list-secondary-soft);
    border: 1px solid rgba(48, 181, 128, 0.18);
    border-radius: 999px;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-title {
    margin: 0 0 0.55rem !important;
    color: var(--ojapp-list-text);
    font-size: clamp(1.18rem, 1.8vw, 1.5rem) !important;
    font-weight: 780;
    line-height: 1.22;
    text-wrap: balance;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-title a {
    color: inherit !important;
    text-decoration: none !important;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.17em;
    transition: color 0.2s ease;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-title a:hover,
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-title a:focus-visible {
    color: var(--ojapp-list-primary-dark) !important;
    text-decoration: underline !important;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-product-intro {
    display: -webkit-box;
    margin: 0 !important;
    overflow: hidden;
    color: var(--ojapp-list-text-soft) !important;
    font-size: 0.97rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Aktionsbereich */
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-actions {
    display: grid !important;
    gap: 0.6rem;
    align-content: center;
    min-width: 0;
    margin: 0 !important;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-actions .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    margin: 0 !important;
    padding: 0.72rem 0.9rem !important;
    font-size: 0.91rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    border-radius: 0.72rem !important;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-actions .btn-primary {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            var(--ojapp-list-primary-dark),
            var(--ojapp-list-primary)
        ) !important;
    border-color: var(--ojapp-list-primary) !important;
    box-shadow: 0 0.45rem 0.9rem rgba(21, 107, 193, 0.18);
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-actions .btn-primary:hover,
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-actions .btn-primary:focus-visible {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            var(--ojapp-list-secondary-dark),
            var(--ojapp-list-secondary)
        ) !important;
    border-color: var(--ojapp-list-secondary-dark) !important;
    box-shadow: 0 0.65rem 1.15rem rgba(48, 181, 128, 0.22);
    transform: translateY(-0.08rem);
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-actions .btn-outline-primary {
    color: var(--ojapp-list-primary-dark) !important;
    background: #ffffff !important;
    border-color: rgba(21, 107, 193, 0.52) !important;
}

body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-actions .btn-outline-primary:hover,
body.com_ojamazonproductpilot.view-products
.ojapp-products.ojapp-layout-list
.ojapp-list-actions .btn-outline-primary:focus-visible {
    color: var(--ojapp-list-primary-dark) !important;
    background: var(--ojapp-list-primary-soft) !important;
    border-color: var(--ojapp-list-primary) !important;
    transform: translateY(-0.08rem);
}

/* Tablet: Aktionen unter dem Text, Bild bleibt links. */
@media (max-width: 991.98px) {
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-list-item {
        grid-template-columns: minmax(8.5rem, 9.5rem) minmax(0, 1fr);
        gap: 1.1rem 1.35rem;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-actions {
        grid-column: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Smartphone: vollständige Kartenansicht untereinander. */
@media (max-width: 767.98px) {
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list {
        padding: 0.85rem;
        border-radius: 1rem;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-list {
        gap: 0.85rem;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-list-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
        padding: 0.95rem !important;
        border-radius: 0.95rem !important;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-image {
        min-height: 14.5rem;
        padding: 1.5rem 1rem 1rem !important;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-image img {
        max-width: min(70%, 10rem) !important;
        max-height: 11.5rem !important;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-content {
        padding: 0 0.15rem;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-title {
        font-size: clamp(1.2rem, 5vw, 1.45rem) !important;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-intro {
        -webkit-line-clamp: initial;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-actions {
        grid-column: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 479.98px) {
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-actions {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-list-item,
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-image img,
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-actions .btn {
        transition: none;
    }

    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-list-item:hover,
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-list-item:focus-within,
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-list-item:hover
    .ojapp-list-image img,
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-product-list-item:focus-within
    .ojapp-list-image img,
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-actions .btn:hover,
    body.com_ojamazonproductpilot.view-products
    .ojapp-products.ojapp-layout-list
    .ojapp-list-actions .btn:focus-visible {
        transform: none;
    }
}



/* =========================================================
   VERBRAUCHERSCHUTZMAGAZIN.DE – STARTSEITE, KORRIGIERTE VERSION
   Keine leeren Icon-Spans: TinyMCE kann die Struktur nicht mehr zerstören.
   HTML-Wrapper: .vsm-homepage
   ========================================================= */

.vsm-homepage {
    --vsm-home-primary: #156bc1;
    --vsm-home-primary-dark: #0d4f91;
    --vsm-home-primary-soft: #edf5fc;
    --vsm-home-secondary: #30b580;
    --vsm-home-secondary-dark: #23875f;
    --vsm-home-secondary-soft: #edf9f4;
    --vsm-home-navy: #09131d;
    --vsm-home-text: #09131d;
    --vsm-home-text-soft: #4d5d6c;
    --vsm-home-muted: #6c7a87;
    --vsm-home-border: #dbe5ee;
    --vsm-home-surface: #ffffff;
    --vsm-home-surface-soft: #f5f8fb;
    --vsm-home-radius-small: 0.8rem;
    --vsm-home-radius: 1.25rem;
    --vsm-home-radius-large: 1.75rem;
    --vsm-home-shadow-small: 0 0.4rem 1.2rem rgba(9, 19, 29, 0.06);
    --vsm-home-shadow: 0 1.2rem 3.5rem rgba(9, 19, 29, 0.1);

    display: grid;
    gap: clamp(3.5rem, 7vw, 6rem);
    width: 100%;
    min-width: 0;
    color: var(--vsm-home-text);
}

.vsm-homepage *,
.vsm-homepage *::before,
.vsm-homepage *::after {
    box-sizing: border-box;
}

.vsm-homepage > *,
.vsm-home-hero > *,
.vsm-situation-box > *,
.vsm-trust-box > *,
.vsm-home-newsletter > *,
.vsm-home-section-heading--split > * {
    min-width: 0;
}

.vsm-homepage a {
    text-decoration: none;
}

.vsm-homepage h1,
.vsm-homepage h2,
.vsm-homepage h3,
.vsm-homepage p,
.vsm-homepage ul {
    margin-top: 0;
}

.vsm-homepage p,
.vsm-homepage a,
.vsm-homepage span,
.vsm-homepage small {
    overflow-wrap: break-word;
    word-break: normal;
}

.vsm-homepage h1,
.vsm-homepage h2,
.vsm-homepage h3,
.vsm-homepage strong {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.vsm-home-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.78rem;
    color: var(--vsm-home-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    background: var(--vsm-home-primary-soft);
    border: 1px solid rgba(21, 107, 193, 0.14);
    border-radius: 999px;
}

.vsm-home-kicker--light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.18);
}

.vsm-home-section {
    width: 100%;
    min-width: 0;
}

.vsm-home-section--soft {
    padding: clamp(1.4rem, 4vw, 3.2rem);
    background:
        linear-gradient(
            135deg,
            rgba(237, 245, 252, 0.88),
            rgba(237, 249, 244, 0.78)
        );
    border: 1px solid rgba(219, 229, 238, 0.9);
    border-radius: var(--vsm-home-radius-large);
}

.vsm-home-section--navy {
    padding: clamp(1.6rem, 5vw, 4rem);
    color: #ffffff;
    background:
        radial-gradient(
            circle at top right,
            rgba(48, 181, 128, 0.22),
            transparent 32rem
        ),
        linear-gradient(
            135deg,
            #09131d,
            #0d2946
        );
    border-radius: var(--vsm-home-radius-large);
    box-shadow: var(--vsm-home-shadow);
}

.vsm-home-section-heading {
    max-width: 50rem;
    margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
}

.vsm-home-section-heading--split {
    display: flex;
    gap: 2rem;
    align-items: end;
    justify-content: space-between;
    max-width: none;
}

.vsm-home-section-heading--split > div {
    max-width: 50rem;
}

.vsm-home-section-heading h2 {
    margin-bottom: 0.85rem;
    color: var(--vsm-home-text);
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.vsm-home-section-heading p {
    margin-bottom: 0;
    color: var(--vsm-home-text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.vsm-home-section-heading--light h2,
.vsm-home-section-heading--light p {
    color: #ffffff;
}

.vsm-home-section-heading--light p {
    opacity: 0.82;
}

.vsm-home-text-link {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.5rem;
    align-items: center;
    color: var(--vsm-home-primary);
    font-weight: 750;
    white-space: nowrap;
}

.vsm-home-text-link::after,
.vsm-home-btn::after {
    content: "→";
    transition: transform 0.2s ease;
}

.vsm-home-text-link:hover,
.vsm-home-text-link:focus-visible {
    color: var(--vsm-home-secondary-dark);
}

.vsm-home-text-link:hover::after,
.vsm-home-text-link:focus-visible::after,
.vsm-home-btn:hover::after,
.vsm-home-btn:focus-visible::after {
    transform: translateX(0.2rem);
}

.vsm-home-btn {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.15rem;
    font-weight: 750;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vsm-home-btn:hover,
.vsm-home-btn:focus-visible {
    transform: translateY(-0.12rem);
}

.vsm-home-btn--primary {
    color: #ffffff;
    background: var(--vsm-home-primary);
    border-color: var(--vsm-home-primary);
    box-shadow: 0 0.6rem 1.4rem rgba(21, 107, 193, 0.2);
}

.vsm-home-btn--primary:hover,
.vsm-home-btn--primary:focus-visible {
    color: #ffffff;
    background: var(--vsm-home-secondary-dark);
    border-color: var(--vsm-home-secondary-dark);
}

.vsm-home-btn--secondary {
    color: var(--vsm-home-primary-dark);
    background: #ffffff;
    border-color: rgba(21, 107, 193, 0.3);
}

.vsm-home-btn--secondary:hover,
.vsm-home-btn--secondary:focus-visible {
    color: var(--vsm-home-primary-dark);
    border-color: var(--vsm-home-primary);
    box-shadow: 0 0.45rem 1.2rem rgba(9, 19, 29, 0.08);
}

.vsm-home-btn--light {
    color: var(--vsm-home-navy);
    background: #ffffff;
    border-color: #ffffff;
}

.vsm-home-btn--light:hover,
.vsm-home-btn--light:focus-visible {
    color: var(--vsm-home-navy);
    background: var(--vsm-home-secondary-soft);
    border-color: var(--vsm-home-secondary-soft);
}

.vsm-home-centered-action {
    margin-top: 2rem;
    text-align: center;
}


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.vsm-home-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(19rem, 0.88fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    overflow: hidden;
    padding: clamp(1.6rem, 5vw, 4.4rem);
    background:
        radial-gradient(
            circle at 86% 10%,
            rgba(48, 181, 128, 0.22),
            transparent 22rem
        ),
        radial-gradient(
            circle at 8% 100%,
            rgba(21, 107, 193, 0.16),
            transparent 24rem
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #f5f8fb
        );
    border: 1px solid var(--vsm-home-border);
    border-radius: var(--vsm-home-radius-large);
    box-shadow: var(--vsm-home-shadow);
}

.vsm-home-hero::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 0.32rem;
    content: "";
    background:
        linear-gradient(
            90deg,
            var(--vsm-home-primary) 0%,
            var(--vsm-home-primary) 42%,
            var(--vsm-home-secondary) 100%
        );
    border-radius:
        var(--vsm-home-radius-large)
        var(--vsm-home-radius-large)
        0
        0;
}

.vsm-home-hero__content {
    position: relative;
    z-index: 1;
}

.vsm-home-hero h1 {
    max-width: 46rem;
    margin-bottom: 1.2rem;
    color: var(--vsm-home-text);
    font-size: clamp(2.2rem, 4.35vw, 3.7rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.vsm-home-word-nowrap {
    white-space: nowrap;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}

.vsm-home-hero__lead {
    max-width: 44rem;
    margin-bottom: 1.6rem;
    color: var(--vsm-home-text-soft);
    font-size: clamp(1.03rem, 1.8vw, 1.22rem);
    line-height: 1.75;
}

.vsm-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.vsm-home-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin: 1.5rem 0 0;
    padding: 0;
    color: var(--vsm-home-muted);
    font-size: 0.88rem;
    list-style: none;
}

.vsm-home-trust-points li {
    display: inline-flex;
    gap: 0.42rem;
    align-items: center;
}

.vsm-home-trust-points li::before {
    display: block;
    flex: 0 0 1.15rem;
    width: 1.15rem;
    height: 1.15rem;
    content: "";
    background-color: var(--vsm-home-secondary);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.2 8.3 6.4 11.4 12.9 4.6' fill='none' stroke='%23fff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.76rem 0.76rem;
    border-radius: 50%;
}

.vsm-home-hero__search {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: clamp(1.1rem, 3vw, 1.8rem);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(219, 229, 238, 0.96);
    border-radius: var(--vsm-home-radius);
    box-shadow: var(--vsm-home-shadow-small);
    backdrop-filter: blur(0.8rem);
}

.vsm-home-search-heading {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1rem;
}

.vsm-home-search-mark {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--vsm-home-primary);
    font-size: 1.15rem;
    font-weight: 900;
    background: var(--vsm-home-primary-soft);
    border-radius: 50%;
    place-items: center;
}

.vsm-home-search-heading strong,
.vsm-home-search-heading span {
    display: block;
}

.vsm-home-search-heading strong {
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.vsm-home-search-heading div > span {
    color: var(--vsm-home-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   Modulplätze
   Nur der sichtbare Platzhalter ist gestrichelt.
   Wird der Absatz durch {loadposition ...} ersetzt, bleibt kein
   gestrichelter oder schraffierter Rahmen um das echte Modul.
   --------------------------------------------------------- */

.vsm-home-module-slot {
    width: 100%;
    min-width: 0;
}

.vsm-home-module-placeholder {
    display: grid;
    gap: 0.35rem;
    min-height: 5.5rem;
    margin: 0;
    padding: 1rem;
    color: var(--vsm-home-primary-dark);
    text-align: center;
    background: rgba(237, 245, 252, 0.65);
    border: 2px dashed rgba(21, 107, 193, 0.28);
    border-radius: var(--vsm-home-radius-small);
    place-content: center;
}

.vsm-home-module-placeholder strong,
.vsm-home-module-placeholder span {
    display: block;
}

.vsm-home-module-placeholder strong {
    font-size: 0.84rem;
    letter-spacing: 0.045em;
}

.vsm-home-module-placeholder span {
    color: var(--vsm-home-muted);
    font-size: 0.85rem;
}

.vsm-home-module-placeholder--large {
    min-height: 10rem;
}

.vsm-home-module-placeholder--dark {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.35);
}

.vsm-home-module-placeholder--dark span {
    color: rgba(255, 255, 255, 0.72);
}

/* Suchmodul im Hero */
.vsm-home-module-slot--search .mod-finder__search,
.vsm-home-module-slot--search .input-group {
    display: flex;
    width: 100%;
    min-width: 0;
}

.vsm-home-module-slot--search input[type="text"],
.vsm-home-module-slot--search input[type="search"] {
    min-width: 0;
    min-height: 3.2rem;
    padding-inline: 1rem;
    border: 1px solid var(--vsm-home-border);
    border-right: 0;
    border-radius: 0.8rem 0 0 0.8rem;
}

.vsm-home-module-slot--search .btn {
    flex: 0 0 auto;
    min-height: 3.2rem;
    padding-inline: 1.1rem;
    color: #ffffff;
    background: var(--vsm-home-primary);
    border-color: var(--vsm-home-primary);
    border-radius: 0 0.8rem 0.8rem 0;
}

/* Das vorhandene Bücher-Modul soll innerhalb der Sektion keinen
   zweiten Außenrahmen und keinen zweiten Hintergrund erzeugen. */
.vsm-home-module-slot--books
.ojapp-module-products.ojapp-module-layout-cards {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}


/* ---------------------------------------------------------
   Hilfe-Karten
   --------------------------------------------------------- */

.vsm-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.vsm-help-card {
    display: grid;
    grid-template-columns:
        3.2rem
        minmax(0, 1fr)
        auto;
    gap: 0.95rem;
    align-items: center;
    min-width: 0;
    min-height: 8rem;
    padding: 1.2rem;
    color: var(--vsm-home-text);
    background: #ffffff;
    border: 1px solid var(--vsm-home-border);
    border-radius: var(--vsm-home-radius);
    box-shadow: var(--vsm-home-shadow-small);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vsm-help-card::after {
    content: "→";
    color: var(--vsm-home-primary);
    font-size: 1.1rem;
    font-weight: 900;
    transition: transform 0.2s ease;
}

.vsm-help-card:hover,
.vsm-help-card:focus-visible {
    color: var(--vsm-home-text);
    border-color: rgba(21, 107, 193, 0.42);
    box-shadow: 0 0.85rem 2rem rgba(9, 19, 29, 0.09);
    transform: translateY(-0.16rem);
}

.vsm-help-card:hover::after,
.vsm-help-card:focus-visible::after {
    transform: translateX(0.2rem);
}

.vsm-help-card__marker {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    color: var(--vsm-home-primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    background:
        linear-gradient(
            135deg,
            var(--vsm-home-primary-soft),
            var(--vsm-home-secondary-soft)
        );
    border: 1px solid rgba(21, 107, 193, 0.14);
    border-radius: 0.9rem;
    place-items: center;
}

.vsm-help-card__content {
    display: block;
    min-width: 0;
}

.vsm-help-card__content strong,
.vsm-help-card__content span {
    display: block;
}

.vsm-help-card__content strong {
    margin-bottom: 0.35rem;
    font-size: 1.04rem;
    line-height: 1.35;
}

.vsm-help-card__content span {
    color: var(--vsm-home-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   Direkte Hilfe
   --------------------------------------------------------- */

.vsm-situation-box {
    display: grid;
    grid-template-columns:
        minmax(16rem, 0.72fr)
        minmax(0, 1.28fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    padding: clamp(1.4rem, 4vw, 3.2rem);
    background: #ffffff;
    border: 1px solid var(--vsm-home-border);
    border-radius: var(--vsm-home-radius-large);
    box-shadow: var(--vsm-home-shadow);
}

.vsm-situation-box__intro h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.vsm-situation-box__intro p {
    margin-bottom: 1.3rem;
    color: var(--vsm-home-text-soft);
    line-height: 1.75;
}

.vsm-situation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.vsm-situation-list a {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    min-width: 0;
    min-height: 4.2rem;
    padding: 0.9rem 1rem;
    color: var(--vsm-home-text);
    font-weight: 650;
    line-height: 1.4;
    background: var(--vsm-home-surface-soft);
    border: 1px solid var(--vsm-home-border);
    border-radius: 0.85rem;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.vsm-situation-list a:hover,
.vsm-situation-list a:focus-visible {
    color: var(--vsm-home-primary-dark);
    background: var(--vsm-home-primary-soft);
    border-color: rgba(21, 107, 193, 0.3);
    transform: translateX(0.16rem);
}

.vsm-situation-list__marker {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    background: var(--vsm-home-secondary);
    border-radius: 50%;
    place-items: center;
}


/* ---------------------------------------------------------
   Generatoren
   --------------------------------------------------------- */

.vsm-generator-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.vsm-generator-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 0.75rem;
    min-width: 0;
    min-height: 12.5rem;
    padding: 1.3rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--vsm-home-radius);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.vsm-generator-card:hover,
.vsm-generator-card:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(48, 181, 128, 0.55);
    transform: translateY(-0.16rem);
}

.vsm-generator-card__marker {
    display: grid;
    width: 3rem;
    height: 3rem;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    background:
        linear-gradient(
            135deg,
            var(--vsm-home-primary),
            var(--vsm-home-secondary)
        );
    border-radius: 0.85rem;
    place-items: center;
}

.vsm-generator-card strong {
    align-self: end;
    font-size: 1.08rem;
    line-height: 1.35;
}

.vsm-generator-card > span:last-child {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   Themenwelten
   --------------------------------------------------------- */

.vsm-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.vsm-topic-card {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    grid-template-areas:
        "marker title"
        "marker text";
    gap: 0.25rem 0.9rem;
    align-items: center;
    min-width: 0;
    min-height: 7.2rem;
    padding: 1.15rem;
    color: var(--vsm-home-text);
    background: #ffffff;
    border: 1px solid var(--vsm-home-border);
    border-radius: var(--vsm-home-radius);
    box-shadow: var(--vsm-home-shadow-small);
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vsm-topic-card:hover,
.vsm-topic-card:focus-visible {
    color: var(--vsm-home-text);
    border-color: rgba(48, 181, 128, 0.45);
    box-shadow: 0 0.85rem 2rem rgba(9, 19, 29, 0.09);
    transform: translateY(-0.14rem);
}

.vsm-topic-card__marker {
    grid-area: marker;
    display: grid;
    width: 3rem;
    height: 3rem;
    color: var(--vsm-home-secondary-dark);
    font-size: 0.78rem;
    font-weight: 900;
    background: var(--vsm-home-secondary-soft);
    border: 1px solid rgba(48, 181, 128, 0.18);
    border-radius: 50%;
    place-items: center;
}

.vsm-topic-card strong {
    grid-area: title;
    display: block;
    font-size: 0.98rem;
    line-height: 1.35;
}

.vsm-topic-card small {
    grid-area: text;
    display: block;
    color: var(--vsm-home-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   Affiliate-Hinweis
   --------------------------------------------------------- */

.vsm-affiliate-note {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    margin: 1rem 0 0;
    color: var(--vsm-home-muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.vsm-affiliate-note strong {
    color: var(--vsm-home-primary-dark);
}


/* ---------------------------------------------------------
   Vertrauen
   --------------------------------------------------------- */

.vsm-trust-box {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(19rem, 0.85fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    padding: clamp(1.4rem, 4vw, 3.2rem);
    background:
        linear-gradient(
            135deg,
            #ffffff,
            var(--vsm-home-surface-soft)
        );
    border: 1px solid var(--vsm-home-border);
    border-radius: var(--vsm-home-radius-large);
    box-shadow: var(--vsm-home-shadow);
}

.vsm-trust-box__content h2 {
    max-width: 42rem;
    margin-bottom: 0.9rem;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    hyphens: auto;
}

.vsm-trust-box__content p {
    color: var(--vsm-home-text-soft);
    line-height: 1.75;
}

.vsm-trust-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-top: 1.2rem;
}

.vsm-trust-links a {
    color: var(--vsm-home-primary);
    font-weight: 700;
}

.vsm-trust-links a:hover,
.vsm-trust-links a:focus-visible {
    color: var(--vsm-home-secondary-dark);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.vsm-trust-checklist {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vsm-trust-checklist li {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
    min-width: 0;
    padding: 0.95rem;
    background: #ffffff;
    border: 1px solid var(--vsm-home-border);
    border-radius: 0.85rem;
}

.vsm-trust-checklist__marker {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    color: transparent !important;
    font-size: 0;
    line-height: 0;
    background-color: var(--vsm-home-secondary);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.2 8.3 6.4 11.4 12.9 4.6' fill='none' stroke='%23fff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.12rem 1.12rem;
    border-radius: 50%;
}

.vsm-trust-checklist strong,
.vsm-trust-checklist span {
    display: block;
}

.vsm-trust-checklist strong {
    margin-bottom: 0.2rem;
    font-size: 0.96rem;
    line-height: 1.35;
}

.vsm-trust-checklist div > span {
    color: var(--vsm-home-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   Newsletter
   --------------------------------------------------------- */

.vsm-home-newsletter {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(20rem, 1.1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    padding: clamp(1.6rem, 5vw, 3.8rem);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(48, 181, 128, 0.25),
            transparent 24rem
        ),
        linear-gradient(
            135deg,
            var(--vsm-home-primary-dark),
            var(--vsm-home-primary)
        );
    border-radius: var(--vsm-home-radius-large);
    box-shadow: var(--vsm-home-shadow);
}

.vsm-home-newsletter h2 {
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
}

.vsm-home-newsletter p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}



/* Marker und Nummern unabhängig von Schrift-Baselines exakt zentrieren */
.vsm-home-search-mark,
.vsm-help-card__marker,
.vsm-situation-list__marker,
.vsm-generator-card__marker,
.vsm-topic-card__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    text-align: center;
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 1100px) {
    .vsm-home-hero,
    .vsm-trust-box,
    .vsm-home-newsletter {
        grid-template-columns: minmax(0, 1fr);
    }

    .vsm-generator-grid,
    .vsm-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .vsm-homepage {
        gap: 3.5rem;
    }

    .vsm-home-section-heading--split {
        display: block;
    }

    .vsm-home-section-heading--split .vsm-home-text-link {
        margin-top: 1rem;
        white-space: normal;
    }

    .vsm-help-grid,
    .vsm-situation-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .vsm-situation-box {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 650px) {
    .vsm-home-hero,
    .vsm-home-section--soft,
    .vsm-home-section--navy,
    .vsm-situation-box,
    .vsm-trust-box,
    .vsm-home-newsletter {
        padding: 1.2rem;
        border-radius: 1.1rem;
    }

    .vsm-home-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .vsm-home-hero h1 {
        font-size: clamp(1.85rem, 9.5vw, 2.75rem);
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .vsm-home-word-nowrap {
        white-space: nowrap;
    }

    .vsm-home-hero__actions,
    .vsm-trust-links {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .vsm-home-btn {
        width: 100%;
    }

    .vsm-home-trust-points {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .vsm-generator-grid,
    .vsm-topic-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .vsm-help-card {
        grid-template-columns: 3rem minmax(0, 1fr);
        min-height: 0;
    }

    .vsm-help-card::after {
        display: none;
    }

    .vsm-help-card__marker {
        width: 3rem;
        height: 3rem;
    }

    .vsm-home-newsletter {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vsm-homepage *,
    .vsm-homepage *::before,
    .vsm-homepage *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* =========================================================
   STARTSEITE – SUCHICON IM HERO KORRIGIEREN
   Ersetzt das Fragezeichen durch eine zentrierte Lupe.
   Keine HTML-Änderung notwendig.
   ========================================================= */

.vsm-homepage .vsm-home-search-mark {
    display: block !important;
    width: 2.75rem !important;
    height: 2.75rem !important;
    min-width: 2.75rem !important;
    padding: 0 !important;
    overflow: hidden !important;

    /* Das vorhandene Fragezeichen unsichtbar machen */
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;

    background-color: var(--vsm-home-primary-soft) !important;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10.8' cy='10.8' r='6.3' fill='none' stroke='%23156bc1' stroke-width='2.2'/%3E%3Cpath d='m15.5 15.5 4.1 4.1' fill='none' stroke='%23156bc1' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 1.35rem 1.35rem !important;

    border: 1px solid rgba(21, 107, 193, 0.12) !important;
    border-radius: 50% !important;
}

/* =========================================================
   BWPOSTMAN – MODERNES NEWSLETTER-FORMULAR AUF DER STARTSEITE
   Template-Override: html/mod_bwpostman/default.php
   ========================================================= */

.vsm-home-module-slot--newsletter,
.vsm-home-module-slot--newsletter > p {
    width: 100%;
    margin: 0;
}

.vsm-home-module-slot--newsletter #mod_bwpostman,
.vsm-home-module-slot--newsletter .vsm-bwpostman {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #09131d;
}

.vsm-bwpostman__card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.1rem, 2.5vw, 1.65rem);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 1.25rem;
    box-shadow:
        0 1.25rem 3rem rgba(4, 34, 65, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(0.9rem);
    -webkit-backdrop-filter: blur(0.9rem);
}

.vsm-bwpostman__form {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.vsm-bwpostman__pretext {
    margin: 0;
    color: #4d5d6c;
    font-size: 0.92rem;
    line-height: 1.55;
}

.vsm-bwpostman__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.vsm-bwpostman__field {
    display: grid;
    gap: 0.4rem;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.vsm-bwpostman__field--full {
    grid-column: 1 / -1;
}

.vsm-bwpostman__label,
.vsm-bwpostman__lists legend {
    margin: 0;
    color: #243443;
    font-size: 0.78rem;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.vsm-bwpostman__required,
.vsm-bwpostman__required-note > span {
    color: #c0392b;
    font-weight: 800;
}

.vsm-bwpostman__control {
    position: relative;
}

.vsm-bwpostman__icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 1rem;
    display: grid;
    width: 1rem;
    height: 1rem;
    color: #6c7a87;
    font-size: 0.9rem;
    pointer-events: none;
    place-items: center;
    transform: translateY(-50%);
}

.vsm-bwpostman .form-control,
.vsm-bwpostman .form-select {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.72rem 0.95rem;
    color: #09131d;
    font-size: 0.95rem;
    line-height: 1.35;
    background: #f7fafc;
    border: 1px solid #d5e1eb;
    border-radius: 0.8rem;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.vsm-bwpostman__control .form-control {
    padding-left: 2.8rem;
}

.vsm-bwpostman .form-control::placeholder {
    color: #8a98a5;
    opacity: 1;
}

.vsm-bwpostman .form-control:hover,
.vsm-bwpostman .form-select:hover {
    border-color: #b9cad8;
    background: #ffffff;
}

.vsm-bwpostman .form-control:focus,
.vsm-bwpostman .form-select:focus {
    background: #ffffff;
    border-color: var(--vsm-home-primary, #156bc1);
    box-shadow: 0 0 0 0.22rem rgba(21, 107, 193, 0.14);
    outline: 0;
}

.vsm-bwpostman__choice-group {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: min(100%, 22rem);
}

.vsm-bwpostman__choice {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    margin: 0;
    padding: 0.55rem 0.9rem;
    color: #4d5d6c;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    background: #f5f8fb;
    border: 1px solid #d5e1eb;
    border-radius: 0.7rem;
}

.vsm-bwpostman .btn-check:checked + .vsm-bwpostman__choice {
    color: #0d4f91;
    background: #edf5fc;
    border-color: #87b8e6;
    box-shadow: inset 0 0 0 1px rgba(21, 107, 193, 0.12);
}

.vsm-bwpostman__list-summary {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem 0.95rem;
    background: #edf9f4;
    border: 1px solid #ccebdd;
    border-radius: 0.85rem;
}

.vsm-bwpostman__list-summary > .fa {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    color: #ffffff;
    background: var(--vsm-home-secondary, #30b580);
    border-radius: 50%;
    place-items: center;
}

.vsm-bwpostman__list-summary small,
.vsm-bwpostman__list-summary strong {
    display: block;
}

.vsm-bwpostman__list-summary small {
    margin-bottom: 0.12rem;
    color: #4f6d60;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vsm-bwpostman__list-summary strong {
    color: #163b2b;
    font-size: 0.91rem;
    line-height: 1.35;
}

.vsm-bwpostman__list-description {
    margin: 0.45rem 0 0;
    color: #63766c;
    font-size: 0.78rem;
    line-height: 1.5;
}

.vsm-bwpostman__lists {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.vsm-bwpostman__list-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
    padding: 0.8rem;
    background: #f7fafc;
    border: 1px solid #dbe5ee;
    border-radius: 0.8rem;
}

.vsm-bwpostman__list-option label,
.vsm-bwpostman__list-option strong,
.vsm-bwpostman__list-option span {
    display: block;
    margin: 0;
}

.vsm-bwpostman__list-option strong {
    color: #243443;
    font-size: 0.9rem;
}

.vsm-bwpostman__list-option span {
    margin-top: 0.2rem;
    color: #6c7a87;
    font-size: 0.78rem;
    line-height: 1.45;
}

.vsm-bwpostman .form-check-input {
    width: 1.15rem;
    height: 1.15rem;
    margin: 0.12rem 0 0;
    cursor: pointer;
    border-color: #afbfcc;
}

.vsm-bwpostman .form-check-input:checked {
    background-color: var(--vsm-home-primary, #156bc1);
    border-color: var(--vsm-home-primary, #156bc1);
}

.vsm-bwpostman__captcha {
    padding: 0.9rem;
    background: #f5f8fb;
    border: 1px solid #dbe5ee;
    border-radius: 0.9rem;
}

.vsm-bwpostman__captcha-heading {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #0d4f91;
    font-size: 0.82rem;
    font-weight: 750;
}

.vsm-bwpostman__captcha-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0.25rem 0;
    border-radius: 0.5rem;
}

.vsm-bwpostman__consent {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    margin: 0;
    padding: 0.85rem 0.95rem;
    color: #4d5d6c;
    font-size: 0.82rem;
    line-height: 1.5;
    background: #f7fafc;
    border: 1px solid #dbe5ee;
    border-radius: 0.8rem;
}

.vsm-bwpostman__consent label {
    margin: 0;
}

.vsm-bwpostman__consent a {
    color: var(--vsm-home-primary-dark, #0d4f91);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18rem;
}

.vsm-bwpostman__consent a:hover,
.vsm-bwpostman__consent a:focus-visible {
    color: var(--vsm-home-secondary-dark, #23875f);
}

.vsm-bwpostman__actions {
    display: grid;
    gap: 0.75rem;
}

.vsm-bwpostman__submit {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.2rem;
    margin: 0;
    padding: 0.78rem 1.15rem;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(
        135deg,
        var(--vsm-home-secondary-dark, #23875f),
        var(--vsm-home-secondary, #30b580)
    ) !important;
    border: 0 !important;
    border-radius: 0.85rem;
    box-shadow: 0 0.65rem 1.4rem rgba(35, 135, 95, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.vsm-bwpostman__submit:hover,
.vsm-bwpostman__submit:focus-visible {
    color: #ffffff !important;
    filter: brightness(1.04);
    box-shadow: 0 0.8rem 1.65rem rgba(35, 135, 95, 0.32);
    transform: translateY(-1px);
}

.vsm-bwpostman__edit-link {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    color: #5d6d7b;
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
}

.vsm-bwpostman__edit-link:hover,
.vsm-bwpostman__edit-link:focus-visible {
    color: var(--vsm-home-primary-dark, #0d4f91);
    text-decoration: underline;
    text-underline-offset: 0.18rem;
}

.vsm-bwpostman__required-note {
    margin: -0.25rem 0 0;
    color: #71808d;
    font-size: 0.72rem;
    line-height: 1.35;
    text-align: center;
}

.vsm-bwpostman .user_hightlight {
    position: absolute !important;
    top: -10000px !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.vsm-bwpostman__notice {
    padding: 1rem;
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 0.8rem;
}

/* BWPostman-Fehler- und Hinweisdialog */
.vsm-bwpostman .bwp_mod_modal {
    z-index: 10050;
    padding: clamp(1rem, 6vh, 4rem) 1rem;
    background: rgba(9, 19, 29, 0.68);
    backdrop-filter: blur(0.35rem);
    -webkit-backdrop-filter: blur(0.35rem);
}

.vsm-bwpostman #bwp_mod_modal-content {
    width: min(100%, 48rem);
    height: auto;
    max-height: calc(100vh - 2rem);
    overflow: auto;
    margin: 0 auto;
    padding: 0;
    color: #09131d;
    background: #ffffff;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
}

.vsm-bwpostman #bwp_mod_modal-content.bwp-err {
    max-width: 34rem;
    color: #842029;
}

.vsm-bwpostman__modal-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #dbe5ee;
}

.vsm-bwpostman__modal-header h4 {
    margin: 0;
    color: #09131d;
    font-size: 1.05rem;
}

.vsm-bwpostman .bwp_mod_close {
    position: static;
    display: grid;
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    color: #4d5d6c;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    background: #f5f8fb;
    border: 1px solid #dbe5ee;
    border-radius: 50%;
    place-items: center;
}

.vsm-bwpostman #bwp_mod_wrapper {
    padding: 1.15rem;
}

/* Gängige Joomla-Captcha-Ausgaben innerhalb des Formulars */
.vsm-bwpostman .captcha,
.vsm-bwpostman .g-recaptcha,
.vsm-bwpostman .h-captcha,
.vsm-bwpostman .cf-turnstile,
.vsm-bwpostman [class*="captcha-container"] {
    max-width: 100%;
}

@media (max-width: 650px) {
    .vsm-bwpostman__card {
        padding: 1rem;
        border-radius: 1rem;
    }

    .vsm-bwpostman__fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .vsm-bwpostman__field--full {
        grid-column: auto;
    }

    .vsm-bwpostman__choice-group {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vsm-bwpostman *,
    .vsm-bwpostman *::before,
    .vsm-bwpostman *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* =========================================================
   MOBILES HAUPTMENÜ V3
   Vollbreite Menüpunkte, klare Icons und fertiges Card-Design.
   Gilt nur unterhalb von 992 px.
   ========================================================= */

@media (max-width: 991.98px) {
    .container-header {
        z-index: 1040;
        overflow: visible;
    }

    .container-header .header-main-row {
        position: relative;
        flex-wrap: nowrap;
        gap: 0.75rem;
        overflow: visible;
    }

    .container-header .header-main-row .navbar-brand {
        flex: 1 1 auto;
        width: auto;
        max-width: calc(100% - 4rem);
    }

    .container-header .header-main-row .container-nav {
        display: flex;
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        margin-left: auto;
        overflow: visible;
    }

    .container-header .header-menu,
    .container-header .header-menu > *,
    .container-header .header-menu nav,
    .container-header .header-menu .navbar {
        position: static;
        width: auto;
        min-width: 0;
        margin: 0;
        overflow: visible;
    }

    /* Menüschalter */
    .container-header .header-menu .navbar-toggler {
        display: grid !important;
        flex: 0 0 2.9rem;
        width: 2.9rem;
        height: 2.9rem;
        margin: 0 0 0 auto;
        padding: 0;
        color: #0b2341 !important;
        cursor: pointer;
        place-items: center;
        background: #ffffff;
        border: 1px solid #cfdce8;
        border-radius: 0.85rem;
        box-shadow:
            0 0.35rem 1rem rgba(9, 19, 29, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        transition:
            color 0.18s ease,
            background-color 0.18s ease,
            border-color 0.18s ease,
            box-shadow 0.18s ease,
            transform 0.18s ease;
    }

    .container-header .header-menu .navbar-toggler:hover {
        color: #ffffff !important;
        background: #156bc1;
        border-color: #156bc1;
        box-shadow: 0 0.55rem 1.2rem rgba(21, 107, 193, 0.22);
        transform: translateY(-1px);
    }

    .container-header .header-menu .navbar-toggler:focus-visible {
        outline: 0.2rem solid rgba(48, 181, 128, 0.65);
        outline-offset: 0.18rem;
    }

    .container-header .header-menu .navbar-toggler[aria-expanded="true"] {
        color: #ffffff !important;
        background: linear-gradient(135deg, #156bc1, #0d4f91);
        border-color: transparent;
        box-shadow: 0 0.65rem 1.35rem rgba(21, 107, 193, 0.25);
    }

    .container-header .header-menu .navbar-toggler .icon-menu {
        position: relative;
        display: block !important;
        width: 1.25rem;
        height: 0.12rem;
        margin: 0;
        color: inherit;
        font-size: 0;
        line-height: 0;
        background: currentColor;
        border-radius: 999px;
        transition: background-color 0.18s ease;
    }

    .container-header .header-menu .navbar-toggler .icon-menu::before,
    .container-header .header-menu .navbar-toggler .icon-menu::after {
        position: absolute;
        left: 0;
        display: block;
        width: 100%;
        height: 0.12rem;
        content: "" !important;
        color: inherit;
        background: currentColor;
        border-radius: 999px;
        transform-origin: center;
        transition:
            top 0.18s ease,
            transform 0.18s ease;
    }

    .container-header .header-menu .navbar-toggler .icon-menu::before {
        top: -0.4rem;
    }

    .container-header .header-menu .navbar-toggler .icon-menu::after {
        top: 0.4rem;
    }

    .container-header
    .header-menu
    .navbar-toggler[aria-expanded="true"]
    .icon-menu {
        background: transparent;
    }

    .container-header
    .header-menu
    .navbar-toggler[aria-expanded="true"]
    .icon-menu::before {
        top: 0;
        transform: rotate(45deg);
    }

    .container-header
    .header-menu
    .navbar-toggler[aria-expanded="true"]
    .icon-menu::after {
        top: 0;
        transform: rotate(-45deg);
    }

    /* Aufgeklapptes Menü als schwebende Card */
    .container-header .header-menu .navbar-collapse {
        position: absolute;
        z-index: 1050;
        top: calc(100% + 0.5rem);
        right: clamp(0.55rem, 2vw, 1rem);
        left: clamp(0.55rem, 2vw, 1rem);
        width: auto !important;
        min-width: 0;
        max-height: calc(100vh - 6rem);
        margin: 0 !important;
        padding: 0.8rem;
        overflow-y: auto;
        color: #09131d;
        background:
            linear-gradient(
                180deg,
                rgba(248, 251, 254, 0.99),
                rgba(255, 255, 255, 0.99)
            );
        border: 1px solid rgba(200, 214, 226, 0.98);
        border-radius: 1.15rem;
        box-shadow:
            0 1.25rem 3rem rgba(9, 19, 29, 0.17),
            0 0.2rem 0.55rem rgba(9, 19, 29, 0.05);
        backdrop-filter: blur(1rem);
        -webkit-backdrop-filter: blur(1rem);
        scrollbar-width: thin;
    }

    /* Kleine Griff-/Akzentlinie oben */
    .container-header .header-menu .navbar-collapse::before {
        display: block;
        width: 2.75rem;
        height: 0.22rem;
        margin: 0 auto 0.75rem;
        content: "";
        background:
            linear-gradient(
                90deg,
                #156bc1,
                #30b580
            );
        border-radius: 999px;
        opacity: 0.85;
    }

    .container-header .header-menu .navbar-collapse.collapsing {
        display: block;
        overflow: hidden;
    }

    /* Liste und Listenelemente zwingend auf volle Breite */
    .container-header
    .header-menu
    .navbar-collapse
    ul.mod-menu,
    .container-header
    .header-menu
    .navbar-collapse
    ul.mod-menu_dropdown-metismenu {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.5rem;
        inline-size: 100% !important;
        width: 100% !important;
        max-inline-size: none !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }

    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item {
        display: block !important;
        inline-size: 100% !important;
        width: 100% !important;
        max-inline-size: none !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        box-sizing: border-box;
    }

    /* Cassiopeia-Pseudoelemente vollständig neutralisieren */
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    > a::before,
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    > a::after {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        content: none !important;
        background: none !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    /* Menüpunkte */
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    > a {
        display: flex !important;
        align-items: center;
        inline-size: 100% !important;
        width: 100% !important;
        max-inline-size: none !important;
        max-width: none !important;
        min-height: 3.35rem;
        margin: 0 !important;
        padding: 0.85rem 3rem 0.85rem 3.25rem !important;
        box-sizing: border-box;
        color: #18334f !important;
        font-size: 0.98rem;
        font-weight: 750;
        line-height: 1.35;
        text-decoration: none !important;
        background-color: #ffffff;
        background-repeat: no-repeat, no-repeat;
        background-position:
            left 1rem center,
            right 1rem center;
        background-size:
            1.15rem 1.15rem,
            0.95rem 0.95rem;
        border: 1px solid #e1eaf2;
        border-radius: 0.95rem;
        box-shadow:
            0 0.25rem 0.7rem rgba(9, 19, 29, 0.045);
        transition:
            color 0.18s ease,
            background-color 0.18s ease,
            border-color 0.18s ease,
            box-shadow 0.18s ease,
            transform 0.18s ease;
    }

    /* Individuelle linke Symbole + rechter Pfeil */
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item:nth-child(1)
    > a {
        background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23156bc1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237890a6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
    }

    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item:nth-child(2)
    > a {
        background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23156bc1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2Z'/%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237890a6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
    }

    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item:nth-child(3)
    > a {
        background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23156bc1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3-1.2 3.1L8 7.4l2.8 1.3L12 12l1.2-3.3L16 7.4l-2.8-1.3L12 3Z'/%3E%3Cpath d='M5 14l-.8 2.1L2 17l2.2.9L5 20l.8-2.1L8 17l-2.2-.9L5 14Z'/%3E%3Cpath d='M18 13l-1 2.6-2.5 1L17 17.7 18 20l1-2.3 2.5-1.1-2.5-1L18 13Z'/%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237890a6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
    }

    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item:nth-child(4)
    > a {
        background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23156bc1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4h6a4 4 0 0 1 4 4v12a3 3 0 0 0-3-3H2Z'/%3E%3Cpath d='M22 4h-6a4 4 0 0 0-4 4v12a3 3 0 0 1 3-3h7Z'/%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237890a6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
    }

    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    > a:hover,
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    > a:focus-visible {
        color: #0d4f91 !important;
        background-color: #edf5fc;
        border-color: rgba(21, 107, 193, 0.22);
        box-shadow: 0 0.45rem 1rem rgba(21, 107, 193, 0.1);
        transform: translateY(-1px);
    }

    /* Aktive Seite */
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item.current
    > a,
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item.active
    > a,
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    > a[aria-current="page"] {
        color: #0d4f91 !important;
        background-color: #e9f3fc;
        border-color: rgba(21, 107, 193, 0.28);
        box-shadow:
            inset 0.24rem 0 0 #156bc1,
            0 0.5rem 1.1rem rgba(21, 107, 193, 0.11);
    }

    /* Untermenüs */
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    .mm-collapse {
        width: 100%;
        margin: 0.4rem 0 0.2rem;
        padding: 0.25rem 0 0.25rem 0.75rem;
        background: transparent;
        border-left: 0.15rem solid #dbe7f1;
    }

    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    .mm-collapse
    a {
        display: block;
        width: 100%;
        padding: 0.7rem 0.85rem;
        color: #4d5d6c !important;
        font-size: 0.9rem;
        font-weight: 650;
        text-decoration: none;
        background: transparent;
        border-radius: 0.7rem;
        box-sizing: border-box;
    }

    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    .mm-collapse
    a:hover,
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    .mm-collapse
    a:focus-visible {
        color: #0d4f91 !important;
        background: #edf5fc;
    }
}

@media (max-width: 420px) {
    .container-header .header-menu .navbar-collapse {
        top: calc(100% + 0.35rem);
        right: 0.4rem;
        left: 0.4rem;
        padding: 0.65rem;
        border-radius: 1rem;
    }

    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    > a {
        min-height: 3.15rem;
        padding:
            0.8rem
            2.8rem
            0.8rem
            3rem !important;
        font-size: 0.94rem;
        background-position:
            left 0.9rem center,
            right 0.9rem center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .container-header .header-menu .navbar-toggler,
    .container-header .header-menu .navbar-toggler .icon-menu,
    .container-header .header-menu .navbar-toggler .icon-menu::before,
    .container-header .header-menu .navbar-toggler .icon-menu::after,
    .container-header
    .header-menu
    .navbar-collapse
    li.metismenu-item
    > a {
        transition: none;
    }
}

/* Joomla-Symbol auf der Offline-/Wartungsseite ausblenden */
body.site .offline-card .logo-icon {
    display: none !important;
}

/* Joomla-Symbol für die To-top-Funktion */
.back-to-top-link:hover,
.back-to-top-link:focus-visible {
    color: var(--white, #ffffff);
    background-color: #2fb17d;
    border-color: var(--white, #ffffff);
}
/* =========================================================
   DATENSCHUTZERKLÄRUNG UND RECHTSTEXTE
   Den vollständigen Beitragsinhalt mit
   <div class="vsm-legal-page">...</div> umschließen.
   ========================================================= */

.vsm-legal-page {
    --vsm-legal-primary: #156bc1;
    --vsm-legal-primary-dark: #0d4f91;
    --vsm-legal-secondary: #30b580;
    --vsm-legal-text: #162433;
    --vsm-legal-text-soft: #435362;
    --vsm-legal-muted: #687887;
    --vsm-legal-surface: #ffffff;
    --vsm-legal-surface-soft: #f5f8fb;
    --vsm-legal-border: #dbe5ee;
    --vsm-legal-radius: 1rem;

    width: 100%;
    max-width: 82rem;
    margin-inline: auto;
    color: var(--vsm-legal-text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.vsm-legal-page > :first-child {
    margin-top: 0;
}

.vsm-legal-page h1,
.vsm-legal-page h2,
.vsm-legal-page h3 {
    color: var(--vsm-legal-text);
    text-wrap: balance;
    scroll-margin-top: 7rem;
}

.vsm-legal-page h1 {
    position: relative;
    max-width: 18ch;
    margin: 0 0 clamp(2rem, 5vw, 3.5rem);
    padding-bottom: 1.15rem;
    font-size: clamp(2.1rem, 5vw, 3.65rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.vsm-legal-page h1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(9rem, 35%);
    height: 0.3rem;
    content: "";
    background: linear-gradient(
        90deg,
        var(--vsm-legal-primary),
        var(--vsm-legal-secondary)
    );
    border-radius: 999px;
}

.vsm-legal-page h2 {
    position: relative;
    margin: clamp(3rem, 7vw, 5rem) 0 1.35rem;
    padding: 1rem 1.2rem 1rem 1.45rem;
    font-size: clamp(1.5rem, 2.8vw, 2.05rem);
    font-weight: 820;
    line-height: 1.22;
    letter-spacing: -0.025em;
    background: linear-gradient(
        110deg,
        rgba(237, 245, 252, 0.95),
        rgba(237, 249, 244, 0.78)
    );
    border: 1px solid var(--vsm-legal-border);
    border-radius: var(--vsm-legal-radius);
    box-shadow: 0 0.35rem 1rem rgba(9, 19, 29, 0.05);
}

.vsm-legal-page h2::before {
    position: absolute;
    top: 0.85rem;
    bottom: 0.85rem;
    left: 0;
    width: 0.32rem;
    content: "";
    background: linear-gradient(
        180deg,
        var(--vsm-legal-primary),
        var(--vsm-legal-secondary)
    );
    border-radius: 999px;
}

.vsm-legal-page h3 {
    margin: 2.2rem 0 0.8rem;
    font-size: clamp(1.14rem, 2vw, 1.4rem);
    font-weight: 780;
    line-height: 1.35;
    letter-spacing: -0.012em;
}

.vsm-legal-page p,
.vsm-legal-page li {
    max-width: 82ch;
}

.vsm-legal-page p {
    margin: 0 0 1.25rem;
}

.vsm-legal-page strong {
    color: var(--vsm-legal-text);
    font-weight: 750;
}

.vsm-legal-page a:not(.btn) {
    color: var(--vsm-legal-primary-dark);
    font-weight: 650;
    text-decoration-color: rgba(21, 107, 193, 0.38);
    text-decoration-thickness: 0.1rem;
    text-underline-offset: 0.2rem;
    transition:
        color 0.18s ease,
        text-decoration-color 0.18s ease;
}

.vsm-legal-page a:not(.btn):hover,
.vsm-legal-page a:not(.btn):focus-visible {
    color: #23875f;
    text-decoration-color: var(--vsm-legal-secondary);
}

.vsm-legal-page a:focus-visible {
    outline: 0.2rem solid rgba(48, 181, 128, 0.6);
    outline-offset: 0.2rem;
    border-radius: 0.2rem;
}

.vsm-legal-page > ul,
.vsm-legal-page > ol {
    display: grid;
    gap: 0.65rem;
    max-width: 82ch;
    margin: 1.25rem 0 1.8rem;
    padding: 1.15rem 1.2rem 1.15rem 2.8rem;
    background: var(--vsm-legal-surface-soft);
    border: 1px solid var(--vsm-legal-border);
    border-radius: var(--vsm-legal-radius);
}

.vsm-legal-page li::marker {
    color: var(--vsm-legal-secondary);
    font-weight: 800;
}

.vsm-legal-page hr {
    width: 100%;
    height: 1px;
    margin: clamp(2.5rem, 6vw, 4rem) 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--vsm-legal-border) 12%,
        var(--vsm-legal-border) 88%,
        transparent
    );
    border: 0;
    opacity: 1;
}

.vsm-legal-page address,
.vsm-legal-page .vsm-legal-contact {
    max-width: 42rem;
    margin: 1.25rem 0 1.75rem;
    padding: 1.15rem 1.25rem;
    font-style: normal;
    background: var(--vsm-legal-surface);
    border: 1px solid var(--vsm-legal-border);
    border-left: 0.3rem solid var(--vsm-legal-primary);
    border-radius: 0.8rem;
    box-shadow: 0 0.35rem 1rem rgba(9, 19, 29, 0.05);
}

.vsm-legal-page code {
    padding: 0.15rem 0.35rem;
    color: #8a2d21;
    font-size: 0.9em;
    background: #fff1ef;
    border-radius: 0.3rem;
}

@media (max-width: 850px) {
    .vsm-legal-page {
        font-size: 1rem;
        line-height: 1.7;
    }

    .vsm-legal-page h1 {
        font-size: clamp(1.9rem, 9vw, 2.65rem);
    }

    .vsm-legal-page h2 {
        margin-top: 3rem;
        padding: 0.9rem 1rem 0.9rem 1.2rem;
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        border-radius: 0.85rem;
    }

    .vsm-legal-page > ul,
    .vsm-legal-page > ol {
        padding: 1rem 1rem 1rem 2.35rem;
        border-radius: 0.85rem;
    }
}

@media (max-width: 480px) {
    .vsm-legal-page h2 {
        margin-inline: -0.15rem;
    }

    .vsm-legal-page p,
    .vsm-legal-page li {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vsm-legal-page a {
        transition: none;
    }
}

@media print {
    .vsm-legal-page {
        max-width: none;
        color: #000000;
        font-size: 10.5pt;
        line-height: 1.5;
    }

    .vsm-legal-page h1,
    .vsm-legal-page h2,
    .vsm-legal-page h3,
    .vsm-legal-page strong {
        color: #000000;
    }

    .vsm-legal-page h2 {
        break-after: avoid;
        background: transparent;
        border: 0;
        border-bottom: 1px solid #777777;
        border-radius: 0;
        box-shadow: none;
    }

    .vsm-legal-page h2::before,
    .vsm-legal-page h1::after {
        display: none;
    }

    .vsm-legal-page p,
    .vsm-legal-page li {
        max-width: none;
        orphans: 3;
        widows: 3;
    }

    .vsm-legal-page > ul,
    .vsm-legal-page > ol,
    .vsm-legal-page address,
    .vsm-legal-page .vsm-legal-contact {
        break-inside: avoid;
        background: transparent;
        box-shadow: none;
    }

    .vsm-legal-page a {
        color: #000000;
        text-decoration: underline;
    }
}
