@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    --red-700: #8f0f18;
    --red-500: #b71d2b;
    --red-300: #e36a73;
    --cream: #f7f1ea;
    --paper: white;
    --ink: #1a1a1a;
    --muted: #5b5b5b;
    --shadow-lg: 0 30px 80px rgba(20, 20, 20, 0.18);
    --shadow-md: 0 16px 40px rgba(20, 20, 20, 0.12);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', 'Source Sans 3', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top left, #ffffff 0%, var(--cream) 45%, #f1e2dc 100%);
    min-height: 100vh;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(115deg, rgba(183, 29, 43, 0.08) 0%, rgba(183, 29, 43, 0) 55%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0px, rgba(255, 255, 255, 0.5) 1px, transparent 1px, transparent 120px);
    pointer-events: none;
    z-index: -1;
}

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

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

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 250, 246, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(183, 29, 43, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 54px;
    height: auto;
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(183, 29, 43, 0.2);
    background: #fff;
    cursor: pointer;
    padding: 0;
}

.nav-toggle-lines {
    display: grid;
    gap: 4px;
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    background: var(--red-500);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.is-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-nav.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.site-nav.is-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.nav-list a {
    position: relative;
    padding-bottom: 4px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--red-500);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 18px;
    background: var(--red-500);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(183, 29, 43, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.site-main {
    display: block;
}

.focus-card--small .category-card-body h3 {
    margin-top: 0px;
}
.section {
    padding: 40px 0;
}

.hero {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 10%;
    width: 55%;
    height: 80%;
    background: linear-gradient(135deg, rgba(183, 29, 43, 0.25), rgba(183, 29, 43, 0.02));
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-500);
    font-weight: 700;
}

.hero h1 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    margin: 12px 0 18px;
    letter-spacing: 1px;
}

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-note {
    margin-top: 22px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--red-500);
    color: #fff;
    box-shadow: 0 12px 30px rgba(183, 29, 43, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: var(--red-700);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: rgba(183, 29, 43, 0.2);
}

.hero-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-card {
    background: linear-gradient(160deg, var(--red-700), #4d090f);
    color: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: min(420px, 100%);
    display: grid;
    gap: 22px;
    animation: float-in 0.8s ease both;
}

.yt-card-top {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 999px;
}

.play-ring {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: grid;
    place-items: center;
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    transform: translateX(4px);
}

.yt-card-actions {
    display: grid;
    gap: 12px;
}

.yt-hint {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.section-header h2 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    margin: 0 0 12px;
}
.live-embed.live-embed--full {
    max-width: 1160px;
    margin: auto;
}
.section-header p {
    color: var(--muted);
    max-width: 520px;
}

.live-copy {
    display: grid;
    gap: 18px;
    margin-bottom: 26px;
}

.live-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0f0f0f;
}

body ol.commentlist {
    list-style: none;
    margin: 0px;
    padding: 0px;
} 
section.section.post-comments {
    padding: 0px;
}
.live-embed--full {
    width: 100vw;
 
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(20, 20, 20, 0.2);
}

.live-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.live-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.latest-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-rows: auto 1fr;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.latest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.16);
}

.latest-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(130deg, #2a0e12, #5f1620);
    overflow: hidden;
}

.latest-embed iframe,
.latest-embed .latest-thumb,
.latest-embed .latest-thumb-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.latest-embed iframe {
    border: 0;
}

.latest-thumb {
    position: relative;
    display: block;
}

.latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-thumb-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 60%);
}

.latest-body {
    padding: 18px 20px 22px;
    display: grid;
    gap: 8px;
}

.latest-body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.latest-body a {
    color: inherit;
}

.latest-meta {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.latest-empty {
    margin-top: 20px;
    color: var(--muted);
}

.latest-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.spotlight {
    background: linear-gradient(120deg, rgba(183, 29, 43, 0.08), rgba(255, 255, 255, 0.9));
}

.spotlight-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.spotlight-card {
    background: var(--paper);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 10px;
}

.spotlight-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-500);
    font-weight: 700;
}

.spotlight-text a,
.footer-text a,
.impressum-text a {
    color: var(--red-500);
}

.site-footer {
    background: #120507;
    color: #f5f1ee;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.footer-logo {
    width: 60px;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.footer-text {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-link {
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.impressum-card {
    background: var(--paper);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 8px;
}

.impressum-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-500);
    font-weight: 700;
}

.impressum-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.impressum-text {
    margin: 0;
    color: var(--muted);
}

.content h1 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 42px;
}

.post-preview {
    background: var(--paper);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.post-preview h2 {
    margin-top: 0;
}

.post-meta {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.category-hero {
    --cat-accent: var(--red-500);
    --cat-accent-soft: rgba(183, 29, 43, 0.12);
    --cat-accent-dark: #5f1620;
    position: relative;
    padding: 110px 0 70px;
    background: linear-gradient(120deg, var(--cat-accent-soft), rgba(255, 255, 255, 0.95) 60%);
    overflow: hidden;
}

.category-hero::after {
    content: '';
    position: absolute;
    right: -12%;
    top: -10%;
    width: 55%;
    height: 120%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 65%),
        linear-gradient(140deg, var(--cat-accent), transparent 70%);
    opacity: 0.5;
    transform: rotate(8deg);
    pointer-events: none;
}

.category-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.category-badge,
.post-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cat-accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.category-hero h1 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(42px, 6vw, 70px);
    margin: 16px 0 12px;
}

.category-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 0 18px;
}

.category-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.category-hero-media {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 14px;
}

.category-hero-media img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.category-section {
    padding-top: 70px;
}

.category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    align-items: start;
}

.home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    align-items: start;
}

.home-feed {
    display: grid;
    gap: 48px;
}

.home-category .section-header {
    margin-bottom: 18px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-rows: auto 1fr;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.16);
}

.category-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 280px;
}

.category-card--featured .category-card-media {
    aspect-ratio: auto;
    height: 100%;
}

.category-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.category-card-body {
    padding: 20px 22px 24px;
    display: grid;
    gap: 10px;
}

.category-card-body h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
}

.category-card--featured .category-card-body h2 {
    font-size: 26px;
}

.category-card-body p {
    margin: 0;
    color: var(--muted);
}

.home-dev .section-header p {
    max-width: 620px;
}

.focus-grid {
    display: grid;
    gap: 24px;
}
.section-actions {
    text-align: center;
    margin-top: 50px;
}

.focus-grid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.focus-grid--bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.focus-card--large .category-card-body h2,
.focus-card--large .category-card-body h3 {
    font-size: 20px;
}

.focus-card--small .category-card-body h2,
.focus-card--small .category-card-body h3 {
    font-size: 18px;
}

.focus-card--small .category-card-body p {
    display: none;
}

.category-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--cat-accent-dark);
    opacity: 0.4;
}

.rail-card {
    background: var(--paper);
    padding: 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 12px;
}

.rail-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cat-accent);
    font-weight: 700;
}

.rail-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.rail-text {
    margin: 0;
    color: var(--muted);
}

.rail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.rail-list li {
    border-left: 3px solid var(--cat-accent);
    padding-left: 12px;
}

.sidebar {
    display: grid;
    gap: 20px;
}

.sidebar-card {
    background: var(--paper);
    padding: 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 12px;
}

.sidebar-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cat-accent);
    font-weight: 700;
}

.sidebar-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-tabs-header {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.sidebar-tab {
    appearance: none;
    border: none;
    background: transparent;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--muted);
    cursor: pointer;
}

.sidebar-tab.is-active {
    background: var(--cat-accent);
    color: #fff;
}

.sidebar-tab-panel {
    display: none;
}

.sidebar-tab-panel.is-active {
    display: block;
}

.sidebar-posts,
.sidebar-tabs .wpp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
body .wpp-list li {
    margin: 0px;
}
.sidebar-post,
.sidebar-tabs .wpp-list li {
    display: grid;
    gap: 4px;
}
.category-hero h1 {
    margin: 0px;
}
section.category-hero {
    padding: 35px 0px;
}
.sidebar-post-link,
.sidebar-tabs .wpp-post-title,
.sidebar-tabs .wpp-list a {
    font-weight: 600;
    line-height: 1.35;
}

.sidebar-post-meta,
.sidebar-tabs .wpp-meta {
    font-size: 12px;
    color: var(--muted);
}

.sidebar-tabs .wpp-views,
.sidebar-tabs .wpp-stats,
.sidebar-tabs .wpp-comments {
    display: none;
}

.sidebar-empty {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.weather-now {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.weather-temp {
    font-size: 32px;
    font-weight: 700;
}

.weather-desc {
    color: var(--muted);
}

.weather-range {
    font-size: 14px;
    color: var(--muted);
}

.weather-list {
    display: grid;
    gap: 8px;
}

.weather-day {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.rates-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.rates-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    padding-bottom: 8px;
}

.rates-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-hero {
    --post-accent: var(--red-500);
    --post-accent-soft: rgba(183, 29, 43, 0.12);
    --post-accent-dark: #5f1620;
    position: relative;
    padding: 110px 0 80px;
    background: linear-gradient(120deg, var(--post-accent-soft), rgba(255, 255, 255, 0.95) 60%);
    overflow: hidden;
}

.post-hero::after {
    content: '';
    position: absolute;
    left: -15%;
    top: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.4), transparent 60%),
        linear-gradient(140deg, var(--post-accent), transparent 70%);
    opacity: 0.5;
    transform: rotate(-6deg);
    pointer-events: none;
}

.post-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.post-breadcrumbs {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.post-kicker {
    margin-top: 16px;
    background: var(--post-accent);
}

.post-hero h1 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    margin: 14px 0 12px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.post-meta span + span::before {
    content: '•';
    margin-right: 8px;
    color: var(--post-accent);
}


.post-hero-media {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 14px;
}

.post-hero-media img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    align-items: start;
}

.post-article {
    background: var(--paper);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 36px;
}

.post-article > * + * {
    margin-top: 18px;
}

.post-article .post-lead {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 12px;
}

.post-article h2,
.post-article h3 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.post-article blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    background: rgba(183, 29, 43, 0.08);
    border-left: 4px solid var(--post-accent);
    border-radius: 12px;
    color: var(--muted);
}

.post-article img {
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(20, 20, 20, 0.12);
}

.post-article a {
    color: var(--post-accent);
}

.post-tags {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.post-tags-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--post-accent);
    font-weight: 700;
}

.post-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.06);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.post-tag:hover {
    transform: translateY(-2px);
    background: rgba(26, 26, 26, 0.12);
}

.post-comments .comments-area {
    background: var(--paper);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
}

.post-comments .comments-title,
.post-comments .comment-reply-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.post-comments .comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.post-comments .comment-body {
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 16px;
    padding: 18px 20px;
    background: #fff;
}

.post-comments .comment-meta {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.post-comments .comment-content {
    color: var(--ink);
}

.post-comments .comment-respond {
    margin-top: 24px;
}

.post-comments .comment-form label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.post-comments .comment-form input,
.post-comments .comment-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    padding: 10px 12px;
    font-family: inherit;
    font-size: 14px;
}

.post-comments .comment-form textarea {
    min-height: 140px;
    resize: vertical;
}

.post-comments .comment-form .submit {
    margin-top: 10px;
    background: var(--post-accent);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.post-article ul,
.post-article ol {
    padding-left: 22px;
    margin: 0;
}

.post-article li + li {
    margin-top: 8px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.latest-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0px;
}
@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1000px) {
    .hero-inner,
    .spotlight-inner,
    .category-hero-inner,
    .post-hero-inner {
        grid-template-columns: 1fr;
    }

    .category-layout,
    .home-layout,
    .post-layout {
        grid-template-columns: 1fr;
    }

    .category-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .category-card--featured .category-card-media {
        aspect-ratio: 16 / 9;
    }

    .focus-grid--top,
    .focus-grid--bottom {
        grid-template-columns: 1fr;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 800px) {
    .footer-grid,
    .impressum-grid {
        grid-template-columns: 1fr;
    }

    .latest-grid {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
        background: var(--paper);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        min-width: 220px;
        display: none;
    }

    .site-nav.is-open .nav-panel {
        display: grid;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-list a {
        padding-bottom: 0;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .site-header {
        position: static;
    }

    .brand-title {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 10%;
    width: 125%;
    height: 80%;
    background: linear-gradient(135deg, rgba(183, 29, 43, 0.25), rgba(183, 29, 43, 0.02));
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
    z-index: 0;
    transform: rotate(55deg);
}
header.site-header {
    padding: 0px 20px;
}
header.site-header {
    z-index: 9999999999;
    position: relative;
}
section.post-hero {
    padding: 40px 0px;
}
}
