/* EUROMODA 2 — Homepage Styles · Navy Blue Design */

:root {
    --header-bg: #1a2542;
    --header-border: #2d3a5c;
    --breaking-bg: #0d1b2e;
    --breaking-label: #1a4e9e;
    --breaking-text: #9BBAD8;
    --breaking-dot: #2D6BC4;
    --bg: #EBF0F7;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F4F7FC;
    --bg-sidebar: #F0F4FA;
    --sidebar-right-bg: #1a2542;
    --text: #1a1a1a;
    --text-muted: #666;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-light-muted: rgba(255, 255, 255, 0.5);
    --border: #DBDBDB;
    --accent: #1a4e9e;
    --accent-hover: #2D6BC4;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ===== Breaking Bar ===== */
.breaking-bar {
    background: var(--breaking-bg);
    padding: 8px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    border-bottom: 1px solid var(--header-border);
}

.breaking-label {
    background: var(--breaking-label);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 4px;
    margin-left: 8px;
}

.breaking-track {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.breaking-scroll {
    display: flex;
    gap: 0;
    animation: scroll-left 55s linear infinite;
    will-change: transform;
}

.breaking-scroll:hover { animation-play-state: paused; }

.breaking-scroll span {
    color: var(--breaking-text);
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    white-space: nowrap;
    padding: 0 2rem 0 0;
    flex-shrink: 0;
}

.breaking-scroll span::before {
    content: '\u25C6';
    margin-right: 14px;
    font-size: 6px;
    color: var(--breaking-dot);
    opacity: 0.7;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Header ===== */
.site-header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.site-logo {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity var(--transition);
}

.site-logo:hover { opacity: 0.85; }

.site-nav { display: flex; gap: 1.5rem; }

.site-nav a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.site-nav a:hover { color: #fff; }

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease, left 0.3s ease;
}

.site-nav a:hover::after { width: 100%; left: 0; }

.header-meta {
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 400;
}

.header-meta .date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.header-user-btn,
.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.header-user-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.header-login-btn {
    background: var(--accent);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.header-login-btn:hover {
    background: var(--accent-hover);
    color: #fff;
}

.header-login-btn svg,
.header-user-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-logout-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.header-logout-btn:hover {
    color: #fff;
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
}

/* ===== Page Body — 3 Spalten ===== */
.page-body {
    display: grid;
    grid-template-columns: 1.5fr 6fr 1.5fr;
    gap: 16px;
    padding: 20px;
    max-width: none;
}

.sidebar, .right-sidebar { overflow: hidden; position: relative; }

/* ===== Linke Sidebar ===== */
.sidebar {
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: calc(100vh - 140px);
    border-radius: var(--radius-md);
}

.sidebar-block {
    flex: 3;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.375rem;
    border-bottom: 1px solid var(--border);
}

.block-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
}

/* ===== Horizontaler Logo-Slider (oben links) ===== */
.logo-scroll-horizontal {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-scroll-track {
    display: flex;
    gap: 0.5rem;
    height: 100%;
    width: max-content;
    animation: scroll-right 50s linear infinite;
}

.logo-scroll-track:hover { animation-play-state: paused; }

.logo-scroll-h-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    aspect-ratio: 3/2;
    flex-shrink: 0;
    background: var(--bg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.logo-scroll-h-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.logo-scroll-h-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-scroll-wrap-left {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 0;
    min-width: 0;
}

.logo-scroll-left {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    height: 100%;
    width: max-content;
    animation: scroll-right 50s linear infinite;
}

.logo-scroll-left:hover { animation-play-state: paused; }

.logo-scroll-item-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    aspect-ratio: 3/4;
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-scroll-item-left:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.logo-scroll-item-left img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition), opacity var(--transition);
}

.logo-scroll-item-left:hover img { transform: scale(1.03); }

/* ===== User-Logos (horizontaler Slider, unten links) ===== */
.user-logos {
    flex: 7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.feed-wrap {
    overflow: hidden;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 140px);
    border-radius: var(--radius-md);
}

.feed-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.25rem;
}

.feed-header { margin-bottom: 1.25rem; }

.feed-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feed-title-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
}

.feed-title-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===== Schaufenster Grid ===== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* ── Kachel ── */
.showcase-card {
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    /* Breite wird per JS gesetzt */
}

/* ── Bild 3:4 ── */
.showcase-card-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg);
    position: relative;
}

.showcase-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-card-img img {
    transform: scale(1.04);
}

/* ── Overlay: Titel / Art.-Nr. / Preis ── */
.showcase-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
        rgba(10, 18, 40, 0.88) 0%,
        rgba(10, 18, 40, 0.55) 55%,
        transparent 100%);
    padding: 2rem 0.625rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-ol-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.sc-ol-artno {
    font-size: 0.5625rem;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.sc-ol-price {
    font-family: 'Sora', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    line-height: 1.3;
    margin-top: 1px;
}

/* ── Lock Overlay (nicht zugängliche Schaufenster) ── */
.showcase-card-locked { position: relative; }

.showcase-card-lock {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 40, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
    color: #fff;
}

.showcase-card:hover .showcase-card-lock { opacity: 1; }

.showcase-card-lock svg {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

.showcase-card-lock span {
    font-family: 'Sora', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ===== Hover-Modal ===== */
.sc-hover-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.12);
    pointer-events: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.sc-hover-modal.active { display: block; opacity: 1; }
.sc-hover-modal { opacity: 0; transition: opacity 0.15s ease; }

.sc-hover-inner { display: flex; flex-direction: column; }

.sc-hover-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    flex-shrink: 0;
}

.sc-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc-hover-info {
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sc-hover-tenant {
    font-family: 'Sora', sans-serif;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.sc-hover-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-top: 2px;
}

.sc-hover-artno {
    font-size: 0.6875rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.sc-hover-price {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 2px;
}

.sc-hover-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 4px;
}

.sc-hover-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 14px;
    background: var(--accent);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    transition: background var(--transition);
    align-self: flex-start;
}

.sc-hover-btn:hover { background: var(--accent-hover); }

/* ── WhatsApp Kanal Button ── */
.sc-hover-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #25D366;
    margin-top: 10px;
    padding: 7px 14px;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    transition: background var(--transition), opacity 0.2s;
    align-self: flex-start;
}
.sc-hover-btn-wa:hover { background: #1da851; }

/* ── Button-Reihe (Schaufenster + WA nebeneinander) ── */
.sc-hover-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.sc-hover-buttons .sc-hover-btn,
.sc-hover-buttons .sc-hover-btn-wa {
    margin-top: 0;
}

/* ── Hover-Modal: Locked State ── */
.sc-hover-locked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 10px;
    background: #fef3c7;
    border-radius: var(--radius-sm);
    text-align: center;
}

.sc-hover-locked svg {
    width: 20px;
    height: 20px;
    color: #d97706;
    flex-shrink: 0;
}

.sc-hover-locked span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #92400e;
}

.sc-hover-locked small {
    font-size: 0.65rem;
    color: #b45309;
    line-height: 1.3;
}

/* ── Hover-Modal: Zugriff anfordern Button ── */
.sc-hover-request-btn {
    display: none;
    width: 100%;
    padding: 8px 12px;
    font-family: 'Sora', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
    text-align: center;
}
.sc-hover-request-btn:hover {
    background: var(--accent-hover);
}

/* ===== Login-Toast ===== */
.sc-login-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1f2937;
    color: #f9fafb;
    padding: 12px 24px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    font-size: 0.875rem;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sc-login-toast.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* ===== Access Request Modal ===== */
.em-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.em-access-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.em-access-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.em-access-header h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.em-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.15s;
}

.em-modal-close:hover {
    background: var(--bg);
    color: var(--text);
}

.em-access-body {
    padding: 1.25rem;
}

.em-access-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    position: sticky;
    bottom: 0;
    background: #fff;
}

.em-form-group {
    margin-bottom: 14px;
}

.em-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.em-form-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    box-sizing: border-box;
}

.em-form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 78, 158, 0.1);
}

.em-form-input[disabled] {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.em-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    text-decoration: none;
    white-space: nowrap;
}

.em-btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.em-btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.em-btn-primary:disabled {
    background: #9ca3af;
    border-color: #9ca3af;
    cursor: not-allowed;
}

.em-btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: transparent;
}

.em-btn-ghost:hover {
    background: var(--bg);
    color: var(--text);
}


/* ===== Rechte Sidebar ===== */
.right-sidebar {
    background: var(--sidebar-right-bg);
    border-left: 1px solid var(--header-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: calc(100vh - 140px);
    border-radius: var(--radius-md);
}

.right-sidebar-header {
    padding: 1rem 1.25rem 0.75rem;
    flex-shrink: 0;
}

.right-sidebar-header .block-label {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.logo-scroll-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.logo-scroll {
    display: flex;
    flex-direction: column;
    animation: scroll-up 50s linear infinite;
}

.logo-scroll:hover { animation-play-state: paused; }

@keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.logo-scroll-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition), opacity var(--transition);
    text-decoration: none;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-scroll-item:hover { background: rgba(255, 255, 255, 0.06); }

.logo-scroll-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity var(--transition);
}

.logo-scroll-item:hover img { opacity: 1; }


/* ===== Site Footer ===== */
.site-footer {
    background: #1e2028;
    border-top: 1px solid #2a2d38;
    margin-top: 4px;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-footer-logo {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-footer-tagline {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
}

.site-footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.site-footer-nav a:hover { color: #fff; }

.site-footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: right;
    white-space: nowrap;
}

/* Help-Info im Footer */
.site-footer-quickinfo {
    width: 100%;
    order: -1;
    margin-bottom: 0.75rem;
}

.site-footer-quickinfo p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.site-footer-quickinfo p strong {
    color: #fff;
    font-weight: 600;
}

/* ===== Scrollbar ===== */
.feed-content::-webkit-scrollbar { width: 5px; }
.feed-content::-webkit-scrollbar-track { background: transparent; }
.feed-content::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 10px; }
.feed-content::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ===== Page Load Animation ===== */
.breaking-bar { animation: fadeSlideDown 0.5s ease-out; }
.site-header { animation: fadeSlideDown 0.5s ease-out 0.1s both; }
.sidebar { animation: fadeIn 0.6s ease-out 0.2s both; }
.feed-wrap { animation: fadeIn 0.6s ease-out 0.3s both; }
.right-sidebar { animation: fadeIn 0.6s ease-out 0.4s both; }

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .page-body { grid-template-columns: 1fr 4fr 1fr; }
}

@media (max-width: 900px) {
    .page-body { grid-template-columns: 1fr; }
    .sidebar, .right-sidebar, .feed-wrap {
        height: auto;
        max-height: 60vh;
        min-height: 280px;
    }
    .logo-scroll-h-item { width: clamp(140px, 40vw, 220px); }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .breaking-label { font-size: 0.625rem; padding: 0 0.75rem; margin-left: 4px; }
    .breaking-scroll span { font-size: 0.8125rem; padding: 0 1rem 0 0; }
    .header-meta { text-align: center; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .sidebar, .right-sidebar { border-radius: 0; }
}

@media (max-width: 480px) {
    .page-body { gap: 12px; padding: 12px; }
    .sidebar-block { padding: 0.875rem 1rem; }
    .logo-scroll-h-item { aspect-ratio: 3/2; }
    .logo-scroll-item-left { height: var(--tile-h, clamp(76px, 18vw, 104px)); }
    .logo-scroll-item { height: var(--tile-h, clamp(68px, 18vw, 98px)); }
    .site-logo { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
        padding: 1rem;
    }
    .site-footer-copy { text-align: left; white-space: normal; }
}