.vx-blog {
    --vx-blog-bg: var(--bg, #080b14);
    --vx-blog-surface: rgba(17, 24, 43, 0.88);
    --vx-blog-surface-soft: rgba(23, 17, 32, 0.82);
    --vx-blog-text: var(--ink, #f7efe4);
    --vx-blog-muted: var(--muted, #cfc4b5);
    --vx-blog-accent: var(--burgundy, #6b1f36);
    --vx-blog-gold: var(--gold, #d7b36a);
    --vx-blog-border: var(--line, rgba(247, 239, 228, 0.18));
    --vx-blog-radius: 8px;
    --vx-blog-shadow: 0 22px 60px var(--shadow, rgba(0, 0, 0, 0.42));
    --vx-blog-shell: 1180px;
    min-height: 100vh;
    color: var(--vx-blog-text);
    background:
        linear-gradient(180deg, rgba(8, 11, 20, 0.22), rgba(17, 24, 43, 0.5) 52%, rgba(7, 10, 18, 0.8)),
        var(--vx-blog-bg);
}

.vx-blog *,
.vx-blog *::before,
.vx-blog *::after {
    box-sizing: border-box;
}

.vx-blog a,
.vx-blog button {
    -webkit-tap-highlight-color: transparent;
}

.vx-blog img,
.vx-blog video {
    display: block;
    max-width: 100%;
}

.vx-blog [hidden] {
    display: none !important;
}

.vx-blog-shell {
    width: min(var(--vx-blog-shell), calc(100% - 2rem));
    margin-inline: auto;
}

.vx-blog-hero {
    position: relative;
    display: grid;
    min-height: clamp(520px, 66vh, 720px);
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid var(--vx-blog-border);
    background: #080b14;
}

.vx-blog-hero__media,
.vx-blog-hero__media img,
.vx-blog-hero__overlay {
    position: absolute;
    inset: 0;
}

.vx-blog-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 76% center;
}

.vx-blog-hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 8, 16, 0.94) 0%, rgba(8, 11, 20, 0.74) 42%, rgba(8, 11, 20, 0.14) 76%),
        linear-gradient(0deg, rgba(8, 11, 20, 0.98) 0%, rgba(8, 11, 20, 0.2) 56%);
}

.vx-blog-hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 clamp(1rem, 6vw, 6rem) clamp(2.5rem, 7vw, 5rem);
    padding-top: 7rem;
}

.vx-blog-kicker {
    margin: 0 0 0.75rem;
    color: var(--vx-blog-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.vx-blog h1,
.vx-blog h2,
.vx-blog h3,
.vx-blog p {
    margin-top: 0;
}

.vx-blog h1,
.vx-blog h2,
.vx-blog h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0;
}

.vx-blog h1 {
    max-width: 14ch;
    margin-bottom: 1rem;
    font-size: clamp(2.55rem, 5.9vw, 5.15rem);
    line-height: 0.98;
}

.vx-blog h2 {
    font-size: clamp(1.95rem, 3.6vw, 3.25rem);
    line-height: 1.05;
}

.vx-blog-lead {
    max-width: 46rem;
    margin-bottom: 1.55rem;
    color: rgba(247, 239, 228, 0.9);
    font-size: clamp(1.04rem, 1.8vw, 1.24rem);
    line-height: 1.68;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.vx-blog-hero__actions,
.vx-blog-card__actions,
.vx-blog-article__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.vx-blog-button {
    position: relative;
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.82rem 1.1rem;
    border: 1px solid rgba(215, 179, 106, 0.42);
    border-radius: 999px;
    color: var(--vx-blog-text);
    background: linear-gradient(180deg, rgba(215, 179, 106, 0.16), rgba(8, 11, 20, 0.46));
    box-shadow: 0 13px 26px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font: inherit;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vx-blog-button:hover,
.vx-blog-button:focus-visible {
    color: #120b10;
    border-color: rgba(255, 225, 151, 0.92);
    background: linear-gradient(135deg, #f6dea0 0%, #d7b36a 54%, #a8752b 100%);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.54);
    transform: translateY(-3px);
}

.vx-blog-button--primary {
    color: #120b10;
    border-color: rgba(255, 225, 151, 0.92);
    background: linear-gradient(135deg, #f6dea0 0%, #d7b36a 54%, #a8752b 100%);
}

.vx-blog-button--ghost {
    color: var(--vx-blog-text);
    background: rgba(8, 11, 20, 0.52);
}

.vx-blog-button:focus-visible,
.vx-blog a:focus-visible {
    outline: 2px solid var(--vx-blog-gold);
    outline-offset: 4px;
}

.vx-blog-section {
    padding: clamp(3.2rem, 7vw, 5.6rem) 0;
}

#beitraege .vx-blog-shell {
    width: calc(100% - 40px);
    max-width: none;
}

.vx-blog-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(1.6rem, 4vw, 2.4rem);
}

.vx-blog-section__heading h2 {
    margin-bottom: 0;
}

.vx-blog-sync {
    max-width: 18rem;
    margin-bottom: 0;
    color: var(--vx-blog-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    text-align: right;
}

.vx-blog-notice,
.vx-blog-empty {
    padding: 1rem 1.15rem;
    color: var(--vx-blog-muted);
    background: var(--vx-blog-surface);
    border: 1px solid var(--vx-blog-border);
    border-radius: var(--vx-blog-radius);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.vx-blog-empty {
    padding: clamp(2rem, 6vw, 4rem);
    text-align: center;
}

.vx-blog-empty h1,
.vx-blog-empty h2 {
    max-width: none;
}

.vx-blog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 1.35rem);
}

.vx-blog-grid__item {
    min-width: 0;
}

.vx-blog-card {
    position: relative;
    display: flex;
    height: auto;
    min-height: 0;
    min-width: 0;
    align-items: stretch;
    flex-direction: row;
    overflow: hidden;
    color: var(--vx-blog-text);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--vx-blog-border);
    border-radius: var(--vx-blog-radius);
    box-shadow: var(--vx-blog-shadow);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.vx-blog-card:hover,
.vx-blog-card:focus-within,
.vx-blog-card:focus-visible {
    border-color: rgba(215, 179, 106, 0.76);
    background: linear-gradient(180deg, rgba(215, 179, 106, 0.1), rgba(255, 255, 255, 0.026));
    box-shadow: 0 36px 84px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(215, 179, 106, 0.2);
    transform: translateY(-8px);
}

.vx-blog-card__media {
    position: relative;
    display: block;
    flex: 0 0 clamp(15rem, 25vw, 23rem);
    width: clamp(15rem, 25vw, 23rem);
    min-height: 0;
    align-self: flex-start;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(215, 179, 106, 0.08), transparent 62%),
        rgba(8, 11, 20, 0.66);
}

.vx-blog-media {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 420ms ease, filter 220ms ease;
}

.vx-blog-card__media .vx-blog-media {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain !important;
    object-position: center;
}

.vx-blog-card:hover .vx-blog-media,
.vx-blog-card:focus-within .vx-blog-media {
    filter: saturate(1.08) brightness(1.04);
    transform: none;
}

.vx-blog-media--placeholder {
    display: block;
    min-height: 14rem;
    background:
        linear-gradient(135deg, rgba(107, 31, 54, 0.56), rgba(17, 24, 43, 0.96)),
        var(--vx-blog-surface-soft);
}

.vx-blog-media__badge {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: 3.25rem;
    aspect-ratio: 1;
    place-items: center;
    color: #120b10;
    background: linear-gradient(135deg, #f6dea0 0%, #d7b36a 58%, #a8752b 100%);
    border: 1px solid rgba(255, 225, 151, 0.82);
    border-radius: 50%;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.44);
    transform: translate(-50%, -50%);
}

.vx-blog-card__body {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    padding: clamp(1.15rem, 3vw, 1.65rem);
}

.vx-blog-card__meta {
    display: flex;
    min-height: 1.8rem;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
    color: var(--vx-blog-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.vx-blog-badge {
    display: inline-flex;
    min-height: 1.65rem;
    align-items: center;
    padding: 0.26rem 0.58rem;
    color: #120b10;
    background: linear-gradient(135deg, #f6dea0 0%, #d7b36a 60%, #a8752b 100%);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
}

.vx-blog-card__title {
    margin-bottom: 0.72rem;
    font-size: clamp(1.35rem, 2.5vw, 1.72rem);
    line-height: 1.12;
}

.vx-blog-card__title a {
    color: var(--vx-blog-text);
    text-decoration: none;
}

.vx-blog-card__title a:hover {
    color: var(--vx-blog-gold);
}

.vx-blog-card__text {
    display: -webkit-box;
    min-height: 4.7em;
    margin-bottom: 1rem;
    overflow: hidden;
    color: var(--vx-blog-muted);
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.vx-blog-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.68rem 0.95rem;
    margin: auto 0 1rem;
    color: var(--vx-blog-muted);
    font-size: 0.9rem;
}

.vx-blog-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.vx-blog-stat svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-blog-card__actions {
    align-items: stretch;
}

.vx-blog-card__actions .vx-blog-button {
    flex: 1 1 9rem;
}

.vx-blog-comments {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vx-blog-border);
}

.vx-blog-comments__list,
.vx-blog-comment__replies {
    padding: 0;
    margin: 0;
    list-style: none;
}

.vx-blog-comment {
    padding: 0.9rem;
    background: rgba(8, 11, 20, 0.54);
    border: 1px solid rgba(247, 239, 228, 0.1);
    border-radius: var(--vx-blog-radius);
}

.vx-blog-comment + .vx-blog-comment {
    margin-top: 0.75rem;
}

.vx-blog-comment__replies {
    margin-top: 0.75rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(215, 179, 106, 0.28);
}

.vx-blog-comment__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
    margin-bottom: 0.55rem;
    font-size: 0.84rem;
}

.vx-blog-comment__header time {
    margin-left: auto;
    color: var(--vx-blog-muted);
    font-size: 0.76rem;
}

.vx-blog-comment__creator {
    padding: 0.2rem 0.45rem;
    color: #120b10;
    background: var(--vx-blog-gold);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
}

.vx-blog-comment p {
    margin-bottom: 0;
    color: var(--vx-blog-muted);
    font-size: 0.92rem;
    line-height: 1.56;
}

.vx-blog-load-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.vx-blog-cta {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: rgba(5, 8, 16, 0.62);
    border-top: 1px solid var(--vx-blog-border);
}

.vx-blog-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.vx-blog-cta h2 {
    margin-bottom: 0.65rem;
}

.vx-blog-cta p:last-child {
    margin-bottom: 0;
    color: var(--vx-blog-muted);
    line-height: 1.65;
}

.vx-blog--article {
    padding-top: 0;
}

.vx-blog--article-missing {
    padding-top: clamp(5.75rem, 10vw, 7.4rem);
}

.vx-blog-article-hero {
    min-height: clamp(430px, 54vh, 580px);
}

.vx-blog-article-hero__content {
    position: relative;
    z-index: 1;
    max-width: min(58rem, calc(100% - 2rem));
    margin: 0 auto clamp(2rem, 6vw, 4rem);
    padding-top: clamp(7rem, 14vw, 9rem);
}

.vx-blog-article-hero .vx-blog-breadcrumb {
    margin-bottom: clamp(1rem, 3vw, 1.6rem);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.vx-blog-article-hero h1 {
    max-width: 19ch;
    font-size: clamp(2.25rem, 5.5vw, 4.45rem);
}

.vx-blog-article-hero .vx-blog-card__meta,
.vx-blog-article-hero .vx-blog-stats {
    margin-bottom: 0.95rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.vx-blog-article-hero .vx-blog-stats {
    margin: 0;
}

.vx-blog-article-shell {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}

.vx-blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: clamp(1.5rem, 4vw, 2.4rem);
    color: var(--vx-blog-muted);
    font-size: 0.9rem;
}

.vx-blog-breadcrumb a {
    color: var(--vx-blog-gold);
    text-decoration: none;
}

.vx-blog-article {
    max-width: 58rem;
    margin-inline: auto;
}

.vx-blog-article__header {
    margin-bottom: 1.8rem;
}

.vx-blog-article__header h1 {
    max-width: 19ch;
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 5.5vw, 4.45rem);
}

.vx-blog-article__media {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vx-blog-article__media figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: var(--vx-blog-surface);
    border: 1px solid var(--vx-blog-border);
    border-radius: var(--vx-blog-radius);
    box-shadow: var(--vx-blog-shadow);
}

.vx-blog-article__content,
.vx-blog-article__comments {
    padding: clamp(1.2rem, 4vw, 2rem);
    background: var(--vx-blog-surface);
    border: 1px solid var(--vx-blog-border);
    border-radius: var(--vx-blog-radius);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.vx-blog-article__content {
    margin-bottom: 1rem;
}

.vx-blog-article__content p {
    margin-bottom: 0;
    color: var(--vx-blog-text);
    font-size: clamp(1rem, 1.8vw, 1.13rem);
    line-height: 1.78;
}

.vx-blog-article__comments {
    margin-top: 1rem;
}

.vx-blog-article__comments h2 {
    margin-bottom: 1.2rem;
    font-size: clamp(1.55rem, 3.8vw, 2.25rem);
}

.vx-blog-article__footer {
    justify-content: space-between;
    margin-top: 1.4rem;
}

.vx-blog-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 64rem) {
    .vx-blog-card {
        min-height: 0;
        flex-direction: row;
    }

    .vx-blog-card__media {
        flex: 0 0 clamp(9.5rem, 38vw, 23rem);
        width: clamp(9.5rem, 38vw, 23rem);
        min-height: 0;
    }
}

@media (max-width: 44rem) {
    .vx-blog-hero {
        min-height: 640px;
    }

    .vx-blog-hero__media img {
        object-position: 78% center;
    }

    .vx-blog-hero__overlay {
        background:
            linear-gradient(90deg, rgba(5, 8, 16, 0.76) 0%, rgba(8, 11, 20, 0.4) 54%, rgba(8, 11, 20, 0.08) 100%),
            linear-gradient(0deg, rgba(8, 11, 20, 0.98) 0%, rgba(8, 11, 20, 0.86) 26%, rgba(8, 11, 20, 0.16) 68%);
    }

    .vx-blog-hero__content {
        width: min(100% - 2rem, 760px);
        margin: 0 auto 2rem;
        padding-top: 8rem;
    }

    .vx-blog h1 {
        font-size: clamp(2.15rem, 10vw, 3.25rem);
        line-height: 1.02;
    }

    .vx-blog-section__heading,
    .vx-blog-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .vx-blog-sync {
        max-width: none;
        text-align: left;
    }

    .vx-blog-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .vx-blog-card__body {
        padding: 0.95rem;
    }

    .vx-blog-card__title {
        font-size: clamp(1.15rem, 6vw, 1.45rem);
    }

    .vx-blog-card__text {
        min-height: auto;
        margin-bottom: 0.75rem;
        font-size: 0.92rem;
        -webkit-line-clamp: 2;
    }

    .vx-blog-stats {
        gap: 0.45rem 0.65rem;
        margin: 0.15rem 0 0.75rem;
        font-size: 0.82rem;
    }

    .vx-blog-card__actions {
        gap: 0.55rem;
    }

    .vx-blog-card__actions .vx-blog-button {
        min-height: 2.75rem;
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .vx-blog-hero__actions .vx-blog-button,
    .vx-blog-cta .vx-blog-button,
    .vx-blog-article__footer .vx-blog-button {
        width: 100%;
    }

    .vx-blog-comment__header time {
        width: 100%;
        margin-left: 0;
    }

    .vx-blog--article-missing {
        padding-top: 7.75rem;
    }

    .vx-blog-article-hero {
        min-height: 560px;
    }

    .vx-blog-article-hero__content {
        max-width: calc(100% - 2rem);
        margin-bottom: 2rem;
        padding-top: 8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vx-blog *,
    .vx-blog *::before,
    .vx-blog *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .vx-blog-button:hover,
    .vx-blog-button:focus-visible,
    .vx-blog-card:hover,
    .vx-blog-card:focus-within,
    .vx-blog-card:hover .vx-blog-media,
    .vx-blog-card:focus-within .vx-blog-media {
        transform: none !important;
    }
}
