Dateien
Website/lagebild/lagebild.css
2026-03-07 16:05:00 +01:00

1204 Zeilen
27 KiB
CSS

/* ==========================================================================
AegisSight Lagebild Page - Dark Theme Design Refresh
========================================================================== */
/* ---------- Variables ---------- */
.lagebild-page {
--lb-bg: #0B1121;
--lb-bg-card: #151D2E;
--lb-bg-secondary: #1A2440;
--lb-border: #1E2D45;
--lb-text: #E8ECF4;
--lb-text-sec: #8896AB;
--lb-accent: #C8A851;
--lb-accent-hover: #B5923E;
--lb-success: #10B981;
--lb-warning: #F59E0B;
--lb-error: #EF4444;
}
/* ---------- Page Base ---------- */
.lagebild-page {
background: var(--lb-bg);
min-height: 100vh;
color: var(--lb-text);
}
/* ---------- Navigation Dark Override ---------- */
.lagebild-page .navbar {
background: rgba(11, 17, 33, 0.95) !important;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--lb-border) !important;
box-shadow: none !important;
}
.lagebild-page .logo-img {
background: rgba(160, 175, 200, 0.85);
padding: 4px 10px;
border-radius: 6px;
}
.lagebild-page .nav-menu a {
color: var(--lb-text) !important;
}
.lagebild-page .nav-menu a:hover {
color: var(--lb-accent) !important;
}
.lagebild-page .nav-menu a.nav-active {
color: var(--lb-accent) !important;
}
.lagebild-page .lang-toggle {
color: var(--lb-text-sec) !important;
border-color: var(--lb-border) !important;
}
.lagebild-page .lang-toggle:hover {
color: var(--lb-accent) !important;
border-color: var(--lb-accent) !important;
}
.lagebild-page .hamburger span {
background: var(--lb-text) !important;
}
/* ---------- Footer Dark Override ---------- */
.lagebild-page .footer {
background: #080D1A !important;
border-top: 1px solid var(--lb-border);
}
.lagebild-page .footer h4 {
color: var(--lb-accent) !important;
}
.lagebild-page .footer p,
.lagebild-page .footer a,
.lagebild-page .footer li,
.lagebild-page .footer ul li a {
color: var(--lb-text-sec) !important;
}
.lagebild-page .footer a:hover {
color: var(--lb-accent) !important;
}
.lagebild-page .copyright {
color: var(--lb-text-sec) !important;
opacity: 0.5;
}
/* ---------- Hero Section ---------- */
.lagebild-hero {
background: linear-gradient(135deg, #0a0f1c 0%, #111B30 50%, #0B1121 100%);
padding: 150px 20px 70px;
text-align: center;
color: #fff;
position: relative;
overflow: hidden;
}
.hero-bg-pattern {
position: absolute;
inset: 0;
background:
radial-gradient(circle at 20% 80%, rgba(200, 168, 81, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(200, 168, 81, 0.05) 0%, transparent 50%),
radial-gradient(circle at 50% 50%, rgba(15, 114, 181, 0.06) 0%, transparent 60%);
pointer-events: none;
}
.lagebild-hero .container {
position: relative;
z-index: 1;
}
/* Hero Badge */
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(200, 168, 81, 0.12);
border: 1px solid rgba(200, 168, 81, 0.25);
padding: 6px 16px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 1.5px;
color: var(--lb-accent);
margin-bottom: 1.5rem;
}
.badge-dot {
width: 8px;
height: 8px;
background: var(--lb-accent);
border-radius: 50%;
animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.4; transform: scale(0.7); }
}
/* Hero Title */
.lagebild-hero h1 {
font-family: 'Bebas Neue', sans-serif;
font-size: 3.5rem;
letter-spacing: 5px;
color: #fff;
margin: 0 0 0.3rem;
line-height: 1;
}
.hero-incident-title {
font-size: 1.5rem;
font-weight: 300;
color: rgba(255, 255, 255, 0.85);
margin: 0 0 0.5rem;
}
.hero-date-info {
font-size: 0.85em;
color: rgba(255, 255, 255, 0.5);
font-weight: 400;
}
/* Hero Stat Cards */
.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
margin-top: 2rem;
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
.stat-card {
display: flex;
align-items: center;
gap: 12px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.08);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
padding: 14px 16px;
border-radius: var(--radius-md, 8px);
transition: border-color 0.3s, background 0.3s;
}
.stat-card:hover {
border-color: rgba(200, 168, 81, 0.3);
background: rgba(255, 255, 255, 0.08);
}
.stat-card-icon {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(200, 168, 81, 0.1);
border-radius: var(--radius-md, 8px);
color: var(--lb-accent);
flex-shrink: 0;
}
.stat-card-icon svg {
width: 18px;
height: 18px;
}
.stat-card-content {
min-width: 0;
}
.stat-card-value {
display: block;
font-size: 1.35rem;
font-weight: 700;
color: #fff;
line-height: 1.1;
}
.stat-card-label {
display: block;
font-size: 0.72rem;
color: rgba(255, 255, 255, 0.55);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-top: 2px;
}
/* ---------- Control Bar ---------- */
.control-bar {
background: var(--lb-bg-card);
border-bottom: 1px solid var(--lb-border);
padding: 0 20px;
}
.control-bar .container {
max-width: 1000px;
margin: 0 auto;
}
/* Timeline Strip */
.timeline-wrapper {
padding: 12px 0;
border-bottom: 1px solid var(--lb-border);
}
.timeline-strip {
display: flex;
gap: 4px;
overflow-x: auto;
scroll-behavior: smooth;
padding: 4px 0;
scrollbar-width: thin;
scrollbar-color: var(--lb-border) transparent;
}
.timeline-strip::-webkit-scrollbar {
height: 4px;
}
.timeline-strip::-webkit-scrollbar-track {
background: transparent;
}
.timeline-strip::-webkit-scrollbar-thumb {
background: var(--lb-border);
border-radius: 2px;
}
.timeline-day {
display: flex;
flex-direction: column;
align-items: center;
padding: 8px 14px;
border-radius: var(--radius-sm, 4px);
border: 1px solid var(--lb-border);
background: transparent;
cursor: pointer;
transition: all 0.2s;
flex-shrink: 0;
min-width: 64px;
position: relative;
color: var(--lb-text-sec);
font-family: inherit;
}
.timeline-day:hover {
background: var(--lb-bg-secondary);
border-color: rgba(200, 168, 81, 0.4);
}
.timeline-day.active {
background: rgba(200, 168, 81, 0.1);
border-color: var(--lb-accent);
}
.timeline-dot {
position: absolute;
top: -4px;
right: -4px;
width: 10px;
height: 10px;
background: var(--lb-accent);
border-radius: 50%;
animation: pulse-dot 2s infinite;
border: 2px solid var(--lb-bg-card);
}
.timeline-day-num {
font-size: 1.1rem;
font-weight: 700;
line-height: 1;
}
.timeline-day.active .timeline-day-num {
color: var(--lb-accent);
}
.timeline-day-month {
font-size: 0.62rem;
text-transform: uppercase;
letter-spacing: 0.5px;
opacity: 0.7;
margin-top: 1px;
}
.timeline-day-count {
font-size: 0.68rem;
margin-top: 4px;
padding-top: 4px;
border-top: 1px solid var(--lb-border);
width: 100%;
text-align: center;
opacity: 0.6;
}
.timeline-day.active .timeline-day-count {
opacity: 1;
color: var(--lb-accent);
}
.timeline-day-updates {
font-size: 0.58rem;
opacity: 0.4;
}
.timeline-day-label {
font-size: 0.58rem;
color: var(--lb-accent);
font-weight: 600;
margin-top: 2px;
}
/* Timeline Dropdown */
.timeline-dropdown {
display: none;
background: var(--lb-bg-secondary);
border: 1px solid var(--lb-border);
border-top: none;
border-radius: 0 0 var(--radius-sm, 4px) var(--radius-sm, 4px);
padding: 10px 14px;
margin-top: 4px;
}
.timeline-dropdown.open {
display: block;
}
.timeline-dropdown-header {
font-size: 0.78rem;
color: var(--lb-text-sec);
margin-bottom: 8px;
font-weight: 500;
}
.timeline-snap-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
gap: 6px;
}
.timeline-snap-item {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 12px;
border-radius: var(--radius-sm, 4px);
border: 1px solid var(--lb-border);
background: transparent;
color: var(--lb-text-sec);
font-size: 0.78rem;
cursor: pointer;
font-family: inherit;
transition: all 0.2s;
}
.timeline-snap-item:hover {
background: var(--lb-bg-card);
border-color: rgba(200, 168, 81, 0.4);
color: var(--lb-text);
}
.timeline-snap-item.active {
background: rgba(200, 168, 81, 0.1);
border-color: var(--lb-accent);
color: var(--lb-accent);
}
.timeline-snap-time {
font-weight: 600;
}
.timeline-snap-meta {
font-size: 0.7rem;
opacity: 0.7;
}
/* Tab Navigation */
.tab-nav {
display: flex;
gap: 0;
}
.tab-btn {
padding: 12px 20px;
border: none;
background: transparent;
cursor: pointer;
font-size: 0.9rem;
font-weight: 600;
color: var(--lb-text-sec);
border-bottom: 3px solid transparent;
transition: all 0.2s;
font-family: inherit;
}
.tab-btn:hover {
color: var(--lb-text);
}
.tab-btn.active {
color: var(--lb-accent);
border-bottom-color: var(--lb-accent);
}
.tab-badge {
display: inline-block;
background: rgba(200, 168, 81, 0.12);
color: var(--lb-accent);
padding: 1px 8px;
border-radius: 10px;
font-size: 0.7rem;
font-weight: 600;
margin-left: 4px;
vertical-align: middle;
}
.tab-btn.active .tab-badge {
background: rgba(200, 168, 81, 0.22);
}
/* Tab Panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }
/* ---------- Main Content ---------- */
.lagebild-main {
padding: 2rem 20px 4rem;
}
.lagebild-main .container {
max-width: 1000px;
margin: 0 auto;
}
/* ---------- Content Cards ---------- */
.content-card {
background: var(--lb-bg-card);
border-radius: var(--radius-sm, 4px);
border: 1px solid var(--lb-border);
margin-bottom: 1.5rem;
overflow: hidden;
position: relative;
}
.content-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--lb-accent);
}
.card-header {
padding: 24px 32px 0;
display: flex;
justify-content: space-between;
align-items: baseline;
flex-wrap: wrap;
gap: 8px;
}
.card-header h2 {
font-size: 1.3rem;
font-weight: 700;
color: var(--lb-text);
margin: 0;
}
.card-timestamp {
font-size: 0.85rem;
color: var(--lb-text-sec);
font-weight: 500;
}
.card-description {
font-size: 0.85rem;
color: var(--lb-text-sec);
margin: 4px 0 0;
width: 100%;
}
.card-body {
padding: 20px 32px 28px;
}
.card-footer {
padding: 0 32px 28px;
border-top: 1px solid var(--lb-border);
padding-top: 20px;
margin: 0 32px;
}
/* ---------- Lagebild Summary ---------- */
#summary-content {
line-height: 1.85;
font-size: 1.02rem;
color: var(--lb-text);
}
#summary-content h2 {
font-size: 1.15rem;
font-weight: 700;
color: var(--lb-accent);
margin: 1.8rem 0 0.8rem;
padding-bottom: 0.4rem;
border-bottom: 2px solid var(--lb-border);
}
#summary-content h2:first-child {
margin-top: 0;
}
#summary-content h3 {
font-size: 1.05rem;
font-weight: 600;
color: var(--lb-text);
margin: 1.5rem 0 0.6rem;
}
#summary-content p {
margin: 0 0 1rem;
}
#summary-content ul {
margin: 0 0 1rem;
padding-left: 1.5rem;
}
#summary-content li {
margin-bottom: 0.4rem;
color: var(--lb-text);
}
#summary-content strong {
color: #fff;
}
/* Citations */
.citation-ref {
color: var(--lb-accent);
font-weight: 700;
cursor: pointer;
text-decoration: none;
font-size: 0.78em;
vertical-align: super;
line-height: 1;
padding: 0 1px;
transition: color 0.2s;
}
.citation-ref:hover {
color: var(--lb-accent-hover);
text-decoration: underline;
}
/* Source Highlight (smooth scroll target) */
.source-highlight {
background: rgba(200, 168, 81, 0.15) !important;
border-radius: 4px;
transition: background 1.5s ease-out;
}
/* Sources List */
.sources-section h3 {
font-size: 1.1rem;
font-weight: 700;
color: var(--lb-text);
margin: 0 0 12px;
}
.section-subtitle {
font-size: 1.1rem;
font-weight: 700;
color: var(--lb-text);
margin: 2rem 0 12px;
padding-top: 1.5rem;
border-top: 1px solid var(--lb-border);
}
.sources-list {
list-style: none;
padding: 0;
margin: 0;
counter-reset: src;
columns: 2;
column-gap: 24px;
}
.sources-list li {
counter-increment: src;
padding: 4px 0;
font-size: 0.88rem;
color: var(--lb-text);
break-inside: avoid;
}
.sources-list li::before {
content: "[" counter(src) "]";
color: var(--lb-accent);
font-weight: 700;
font-size: 0.82rem;
margin-right: 6px;
}
.sources-list a {
color: var(--lb-accent);
text-decoration: none;
}
.sources-list a:hover { text-decoration: underline; }
.source-name {
font-weight: 600;
color: var(--lb-text);
}
/* Inline sources (Lagebild tab footer) - Collapsible */
.inline-sources-toggle {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
font-weight: 600;
color: var(--lb-text-sec);
cursor: pointer;
padding: 10px 16px;
user-select: none;
transition: all 0.2s;
background: var(--lb-bg-secondary);
border: 1px solid var(--lb-border);
border-radius: var(--radius-sm, 4px);
}
.inline-sources-toggle:hover {
color: var(--lb-accent);
border-color: rgba(200, 168, 81, 0.4);
background: rgba(200, 168, 81, 0.06);
}
.inline-sources-arrow {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
font-size: 1.1rem;
transition: transform 0.2s;
color: var(--lb-accent);
}
#inline-sources.open .inline-sources-arrow {
transform: rotate(90deg);
}
.inline-sources-body {
display: none;
padding: 8px 0 0;
font-size: 0.82rem;
line-height: 1.8;
color: var(--lb-text-sec);
}
#inline-sources.open .inline-sources-body {
display: block;
}
.src-inline .src-nr {
color: var(--lb-accent);
font-weight: 700;
}
.src-sep {
color: var(--lb-border);
margin: 0 2px;
}
.inline-sources-body a {
color: var(--lb-accent);
text-decoration: none;
}
.inline-sources-body a:hover {
text-decoration: underline;
}
/* ---------- Article Cards ---------- */
.article-card {
display: flex;
gap: 16px;
padding: 16px 0;
border-bottom: 1px solid var(--lb-border);
}
.article-card:last-child { border-bottom: none; }
.article-date {
flex-shrink: 0;
width: 60px;
text-align: center;
}
.article-date .day {
display: block;
font-size: 1.3rem;
font-weight: 700;
color: var(--lb-accent);
line-height: 1;
}
.article-date .month {
display: block;
font-size: 0.72rem;
color: var(--lb-text-sec);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.article-info {
flex: 1;
min-width: 0;
}
.article-headline {
font-size: 0.95rem;
font-weight: 600;
color: var(--lb-text);
margin: 0 0 6px;
line-height: 1.4;
}
.article-headline a {
color: inherit;
text-decoration: none;
}
.article-headline a:hover {
color: var(--lb-accent);
}
.article-meta {
display: flex;
align-items: center;
gap: 12px;
font-size: 0.8rem;
color: var(--lb-text-sec);
flex-wrap: wrap;
}
.article-source {
font-weight: 600;
color: var(--lb-text);
display: inline-flex;
align-items: center;
gap: 4px;
}
.article-favicon {
width: 16px;
height: 16px;
border-radius: 2px;
vertical-align: middle;
}
.article-lang {
background: var(--lb-bg-secondary);
border: 1px solid var(--lb-border);
padding: 1px 6px;
border-radius: 3px;
font-size: 0.7rem;
text-transform: uppercase;
color: var(--lb-text-sec);
}
.article-link {
color: var(--lb-accent) !important;
text-decoration: none !important;
font-size: 0.78rem;
display: inline-flex;
align-items: center;
gap: 3px;
}
.article-link:hover {
text-decoration: underline !important;
}
/* ---------- Map ---------- */
#map-container {
background: var(--lb-bg-secondary);
}
.lagebild-page .map-legend {
background: var(--lb-bg-card) !important;
color: var(--lb-text) !important;
border: 1px solid var(--lb-border) !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}
/* Leaflet controls dark */
.lagebild-page .leaflet-control-zoom a {
background: var(--lb-bg-card) !important;
color: var(--lb-text) !important;
border-color: var(--lb-border) !important;
}
.lagebild-page .leaflet-control-zoom a:hover {
background: var(--lb-bg-secondary) !important;
}
.lagebild-page .leaflet-control-attribution {
background: rgba(11, 17, 33, 0.8) !important;
color: var(--lb-text-sec) !important;
}
.lagebild-page .leaflet-control-attribution a {
color: var(--lb-accent) !important;
}
/* ---------- Fact Check Cards ---------- */
.fc-stats {
display: flex;
gap: 12px;
margin-bottom: 24px;
flex-wrap: wrap;
}
.fc-stat {
background: var(--lb-bg-secondary);
border-radius: var(--radius-sm, 4px);
padding: 14px 20px;
text-align: center;
min-width: 80px;
border: 1px solid var(--lb-border);
}
.fc-stat.confirmed {
background: rgba(16, 185, 129, 0.08);
border-color: rgba(16, 185, 129, 0.2);
}
.fc-stat.unconfirmed {
background: rgba(245, 158, 11, 0.08);
border-color: rgba(245, 158, 11, 0.2);
}
.fc-stat.contradicted {
background: rgba(239, 68, 68, 0.08);
border-color: rgba(239, 68, 68, 0.2);
}
.fc-stat-num {
display: block;
font-size: 1.6rem;
font-weight: 800;
color: var(--lb-text);
}
.fc-stat.confirmed .fc-stat-num { color: var(--lb-success); }
.fc-stat.unconfirmed .fc-stat-num { color: var(--lb-warning); }
.fc-stat.contradicted .fc-stat-num { color: var(--lb-error); }
.fc-stat-label {
font-size: 0.75rem;
color: var(--lb-text-sec);
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 600;
}
.factcheck-card {
background: var(--lb-bg-secondary);
border-radius: var(--radius-sm, 4px);
padding: 20px;
margin-bottom: 12px;
border-left: 4px solid var(--lb-border);
transition: transform 0.2s, box-shadow 0.2s;
}
.factcheck-card:hover {
transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.factcheck-card.highlight {
background: rgba(200, 168, 81, 0.06);
border-left-color: var(--lb-accent);
box-shadow: 0 2px 12px rgba(200, 168, 81, 0.1);
}
.factcheck-card[data-status="confirmed"],
.factcheck-card[data-status="established"] {
border-left-color: var(--lb-success);
}
.factcheck-card[data-status="unconfirmed"],
.factcheck-card[data-status="unverified"] {
border-left-color: var(--lb-warning);
}
.factcheck-card[data-status="contradicted"],
.factcheck-card[data-status="disputed"] {
border-left-color: var(--lb-error);
}
.factcheck-card[data-status="developing"] {
border-left-color: #3b82f6;
}
.factcheck-card[data-status="false"] {
border-left-color: #dc2626;
}
.factcheck-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
}
.factcheck-sources {
font-size: 0.8rem;
color: var(--lb-text-sec);
}
.factcheck-claim {
font-size: 0.95rem;
color: var(--lb-text);
margin: 0 0 4px;
line-height: 1.5;
}
/* Status Badges */
.status-badge {
display: inline-block;
padding: 3px 10px;
border-radius: var(--radius-sm, 4px);
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.status-badge.confirmed, .status-badge.established {
background: rgba(16, 185, 129, 0.15);
color: #34d399;
}
.status-badge.unconfirmed, .status-badge.unverified {
background: rgba(245, 158, 11, 0.15);
color: #fbbf24;
}
.status-badge.contradicted, .status-badge.disputed {
background: rgba(239, 68, 68, 0.15);
color: #f87171;
}
.status-badge.developing {
background: rgba(59, 130, 246, 0.15);
color: #60a5fa;
}
.status-badge.false {
background: rgba(220, 38, 38, 0.15);
color: #f87171;
}
/* Status Progression */
.status-progression {
display: flex;
align-items: center;
gap: 6px;
margin-top: 10px;
padding-top: 10px;
border-top: 1px solid var(--lb-border);
font-size: 0.78rem;
flex-wrap: wrap;
}
.progression-label {
color: var(--lb-text-sec);
font-weight: 500;
margin-right: 4px;
}
.progression-arrow {
color: var(--lb-accent);
font-size: 1rem;
}
.progression-step {
display: flex;
align-items: center;
gap: 4px;
}
.progression-time {
color: var(--lb-text-sec);
font-size: 0.7rem;
}
/* Evidence block */
.factcheck-evidence {
font-size: 0.82rem;
color: var(--lb-text-sec);
margin: 10px 0 0;
line-height: 1.6;
padding: 10px 14px;
background: rgba(0, 0, 0, 0.2);
border-radius: var(--radius-sm, 4px);
border: 1px solid var(--lb-border);
}
.factcheck-evidence strong {
color: var(--lb-text);
}
.factcheck-evidence a {
color: var(--lb-accent) !important;
word-break: break-all;
}
/* ---------- Floating CTA Pill ---------- */
.floating-cta {
position: fixed;
bottom: 24px;
left: 50%;
transform: translateX(-50%) translateY(100px);
display: flex;
align-items: center;
gap: 16px;
background: rgba(21, 29, 46, 0.92);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(200, 168, 81, 0.25);
border-radius: 50px;
padding: 10px 14px 10px 24px;
z-index: 1000;
opacity: 0;
transition: opacity 0.4s, transform 0.4s;
pointer-events: none;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.floating-cta.visible {
opacity: 1;
transform: translateX(-50%) translateY(0);
pointer-events: auto;
}
.floating-cta.dismissed {
opacity: 0;
transform: translateX(-50%) translateY(100px);
pointer-events: none;
}
.floating-cta-text {
font-size: 0.88rem;
color: var(--lb-text-sec);
font-weight: 500;
white-space: nowrap;
}
.floating-cta-btn {
display: inline-block;
background: var(--lb-accent);
color: #0a0f1c;
padding: 8px 20px;
border-radius: 50px;
font-weight: 700;
text-decoration: none;
font-size: 0.85rem;
white-space: nowrap;
transition: background 0.2s, transform 0.2s;
}
.floating-cta-btn:hover {
background: var(--lb-accent-hover);
transform: scale(1.03);
}
.floating-cta-close {
background: none;
border: none;
color: var(--lb-text-sec);
font-size: 1.3rem;
cursor: pointer;
padding: 0 4px;
line-height: 1;
transition: color 0.2s;
font-family: inherit;
}
.floating-cta-close:hover {
color: var(--lb-text);
}
@media (max-width: 768px) {
.floating-cta {
left: 12px;
right: 12px;
transform: translateX(0) translateY(100px);
border-radius: 16px;
gap: 10px;
padding: 10px 12px 10px 16px;
}
.floating-cta.visible {
transform: translateX(0) translateY(0);
}
.floating-cta.dismissed {
transform: translateX(0) translateY(100px);
}
.floating-cta-text {
font-size: 0.8rem;
white-space: normal;
}
.floating-cta-btn {
font-size: 0.8rem;
padding: 7px 14px;
flex-shrink: 0;
}
}
/* ---------- Loading Skeleton ---------- */
.loading-skeleton { padding: 20px 0; }
.skeleton-line {
height: 16px;
background: linear-gradient(90deg, var(--lb-bg-secondary) 25%, var(--lb-border) 50%, var(--lb-bg-secondary) 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
border-radius: var(--radius-sm, 4px);
margin-bottom: 12px;
}
.skeleton-line.short { width: 60%; }
@keyframes shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
/* Error */
.lagebild-error {
text-align: center;
padding: 40px 20px;
color: var(--lb-text-sec);
}
/* ---------- Scroll Reveal ---------- */
.reveal {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.reveal.revealed {
opacity: 1;
transform: translateY(0);
}
/* ---------- Responsive ---------- */
/* Tablet */
@media (max-width: 1024px) {
.hero-stats {
max-width: 550px;
}
.stat-card {
padding: 12px 14px;
}
.stat-card-value {
font-size: 1.15rem;
}
}
/* Mobile */
@media (max-width: 768px) {
.lagebild-hero {
padding: 120px 16px 50px;
}
.lagebild-hero h1 {
font-size: 2.5rem;
letter-spacing: 3px;
}
.hero-incident-title {
font-size: 1.2rem;
}
.hero-stats {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin-top: 1.5rem;
}
.stat-card {
padding: 10px 12px;
gap: 10px;
}
.stat-card-icon {
width: 32px;
height: 32px;
}
.stat-card-value {
font-size: 1.1rem;
}
.stat-card-label {
font-size: 0.65rem;
}
.control-bar .container {
flex-direction: column;
align-items: stretch;
}
.timeline-strip {
gap: 3px;
}
.timeline-day {
padding: 6px 10px;
min-width: 54px;
}
.timeline-day-num {
font-size: 0.95rem;
}
.timeline-dropdown {
padding: 8px 10px;
}
.timeline-snap-list {
grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
gap: 4px;
}
.timeline-snap-item {
padding: 5px 10px;
font-size: 0.72rem;
}
.tab-nav {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.tab-btn {
padding: 10px 14px;
font-size: 0.82rem;
white-space: nowrap;
}
.card-header {
padding: 16px 20px 0;
}
.card-body {
padding: 16px 20px 20px;
}
.card-footer {
margin: 0 20px;
padding: 16px 20px 20px;
}
.lagebild-main {
padding: 1rem 12px 3rem;
}
.factcheck-header {
flex-direction: column;
align-items: flex-start;
gap: 6px;
}
.article-card {
flex-direction: column;
gap: 8px;
}
.article-date {
width: auto;
text-align: left;
display: flex;
gap: 6px;
align-items: baseline;
}
.article-date .day {
font-size: 1rem;
}
#map-container {
height: 350px !important;
}
.fc-stats {
gap: 8px;
}
.fc-stat {
padding: 10px 14px;
min-width: 70px;
}
.status-progression {
gap: 4px;
}
.sources-list {
columns: 1;
}
}