:root {
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --red-light: #ffebee;
  --ink: #14181f;
  --text: #26303c;
  --text-light: #5c6a7a;
  --border: #dde3ea;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Segoe UI", -apple-system, Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }

/* Breaking-news ticker */
.topbar { background: var(--ink); color: #fff; font-size: 13px; overflow: hidden; white-space: nowrap; }
.topbar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 14px; padding: 7px 20px; }
.topbar-label { background: var(--red); color: #fff; font-weight: 800; font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 3px; flex-shrink: 0; }
.topbar-ticker { display: inline-block; animation: ticker 40s linear infinite; }
.topbar-ticker span { margin-right: 48px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Red navbar */
.navbar { background: var(--red); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.nav-inner, .nav-pill { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 56px; }
.logo { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 24px; font-weight: 900; letter-spacing: -.02em; }
.logo-tld { font-weight: 300; opacity: .85; }
.nav-links { list-style: none; display: flex; gap: 4px; }
.nav-links a { color: #fff; font-size: 14.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; padding: 8px 13px; border-radius: 4px; transition: background .15s; }
.nav-links a:hover { background: rgba(255,255,255,.16); }

/* Lead story block */
.lead-wrap { max-width: 1280px; margin: 22px auto 0; padding: 0 20px; }
.lead-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.lead-story { position: relative; border-radius: 8px; overflow: hidden; display: block; min-height: 420px; box-shadow: 0 4px 18px rgba(0,0,0,.14); }
.lead-story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lead-story-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,14,20,.9) 0%, rgba(10,14,20,.25) 55%, transparent 100%); }
.lead-story-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 30px; color: #fff; }
.lead-story-text h2 { font-size: 29px; line-height: 1.22; margin: 10px 0; }
.lead-story-text p { font-size: 15px; opacity: .9; margin-bottom: 8px; }
.kicker { display: inline-block; background: var(--red); color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; padding: 4px 12px; border-radius: 3px; }
.kicker-anzeige { background: #fff; color: var(--red); }
.side-stories { display: flex; flex-direction: column; gap: 16px; }
.side-story { position: relative; border-radius: 8px; overflow: hidden; display: block; flex: 1; min-height: 134px; box-shadow: 0 3px 12px rgba(0,0,0,.12); }
.side-story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.side-story-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,14,20,.88) 0%, rgba(10,14,20,.1) 70%); }
.side-story-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px; color: #fff; }
.side-story-text h3 { font-size: 17px; line-height: 1.3; margin-top: 6px; }

/* News list (dense rows) */
.news-list { max-width: 1280px; margin: 26px auto 0; padding: 0 20px; }
.news-list-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 3px solid var(--ink); padding-bottom: 8px; margin-bottom: 4px; }
.news-list-head h2 { font-size: 22px; text-transform: uppercase; letter-spacing: .02em; }
.news-list-head h2 span { color: var(--red); }
.news-row { display: flex; gap: 18px; align-items: center; padding: 14px 4px; border-bottom: 1px solid var(--border); transition: background .15s; }
.news-row:hover { background: var(--bg-alt); }
.news-row img { width: 150px; height: 92px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.news-row-cat { font-size: 11.5px; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .06em; }
.news-row-title { font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--ink); margin: 3px 0 4px; }
.news-row-desc { font-size: 14px; color: var(--text-light); }
.news-row-meta { font-size: 12.5px; color: var(--text-light); margin-top: 4px; }

/* Category sections */
.cat-section { max-width: 1280px; margin: 46px auto 0; padding: 0 20px; }
.cat-head { border-left: 6px solid var(--red); padding-left: 14px; margin-bottom: 6px; display: flex; justify-content: space-between; align-items: baseline; }
.cat-head h2 { font-size: 24px; text-transform: uppercase; letter-spacing: .01em; }
.cat-head p { font-size: 14px; color: var(--text-light); margin-top: 2px; }
.article-grid { max-width: 1280px; margin: 0 auto; padding: 14px 20px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.art-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.art-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.13); }
.art-card-img img { width: 100%; height: 180px; object-fit: cover; }
.art-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; }
.art-card-cat { align-self: flex-start; font-size: 11.5px; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 9px; }
.art-card-title { font-size: 17.5px; font-weight: 700; line-height: 1.32; color: var(--ink); margin-bottom: 8px; }
.art-card-desc { font-size: 14px; color: var(--text-light); flex: 1; }
.art-card-meta { font-size: 12.5px; color: var(--text-light); margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); }

/* Hero carousel (kept for featured ads/topics) */
.hero-wrap { max-width: 1280px; margin: 22px auto 0; padding: 0 20px; }
.hero-carousel-wrap { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.14); }
.hero-carousel { position: relative; height: 400px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; display: block; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,14,20,.85) 0%, rgba(10,14,20,.3) 55%, transparent 100%); }
.hero-slide-text { position: absolute; left: 0; top: 50%; transform: translateY(-50%); max-width: 640px; padding: 0 44px; color: #fff; z-index: 3; }
.hero-slide-text h2 { font-size: 30px; line-height: 1.22; margin: 12px 0 10px; }
.hero-slide-text p { font-size: 15.5px; opacity: .9; margin-bottom: 16px; }
.read-more { display: inline-block; background: var(--red); color: #fff; padding: 10px 22px; border-radius: 4px; font-weight: 700; font-size: 14.5px; text-transform: uppercase; letter-spacing: .03em; }
.hero-slide:hover .read-more { background: var(--red-dark); }
.hero-cat-tag { display: inline-block; background: var(--red); color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 4px 12px; border-radius: 3px; margin-right: 8px; }
.hero-tag-anzeige { background: #fff; color: var(--red); }
.hero-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(255,255,255,.9); border: none; width: 42px; height: 42px; border-radius: 4px; font-size: 17px; cursor: pointer; color: var(--ink); }
.hero-carousel-prev { left: 12px; }
.hero-carousel-next { right: 12px; }
.hero-carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 5; }
.hero-carousel-dot { width: 26px; height: 5px; border-radius: 2px; border: none; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-carousel-dot.active { background: var(--red); }

/* Quick-tips band */
.tips-band { background: var(--bg-alt); border-top: 3px solid var(--red); border-bottom: 1px solid var(--border); padding: 30px 20px; margin-top: 46px; }
.tips-inner { max-width: 1280px; margin: 0 auto; }
.tips-inner h2 { font-size: 22px; text-transform: uppercase; margin-bottom: 16px; }
.tips-inner h2 span { color: var(--red); }
.tips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tip-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 18px 20px; }
.tip-card h3 { font-size: 15.5px; margin: 10px 0 6px; }
.tip-card .tip-ico { font-size: 26px; }
.tip-card p { font-size: 13.5px; color: var(--text-light); }

/* CTA */
.compare-banner { max-width: 1280px; margin: 40px auto; padding: 0 20px; }
.compare-box { background: var(--ink); border-radius: 8px; padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #fff; }
.compare-box h3 { font-size: 20px; margin-bottom: 6px; }
.compare-box p { opacity: .85; font-size: 15px; }
.compare-btn { background: var(--red); color: #fff; padding: 12px 26px; border-radius: 4px; font-weight: 700; white-space: nowrap; text-transform: uppercase; letter-spacing: .03em; }
.compare-btn:hover { background: var(--red-dark); }

/* Footer */
.footer { background: var(--ink); color: #b8c2cd; margin-top: 56px; border-top: 4px solid var(--red); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 42px 24px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 { color: #fff; font-size: 14.5px; margin-bottom: 13px; text-transform: uppercase; letter-spacing: .07em; border-bottom: 2px solid var(--red); display: inline-block; padding-bottom: 5px; }
.footer-col a, .footer-col span { display: block; color: #b8c2cd; font-size: 14px; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2a3440; text-align: center; padding: 16px; font-size: 13px; color: #7f8c9b; }

/* Article page */
.article-wrap { max-width: 800px; margin: 28px auto; padding: 0 20px; }
.article-breadcrumb { font-size: 13.5px; color: var(--text-light); margin-bottom: 12px; }
.article-breadcrumb a { color: var(--text-light); }
.article-breadcrumb a:hover { color: var(--red); }
.article-title { font-size: 32px; line-height: 1.2; margin-bottom: 12px; color: var(--ink); font-weight: 900; }
.article-meta { font-size: 13.5px; color: var(--text-light); margin-bottom: 22px; padding-bottom: 16px; border-bottom: 3px solid var(--red); }
.article-hero-img { border-radius: 8px; overflow: hidden; margin-bottom: 26px; box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.article-content { background: #fff; padding: 30px 34px; border: 1px solid var(--border); border-radius: 8px; }
.article-content h2 { font-size: 23px; margin: 30px 0 12px; padding-left: 12px; border-left: 5px solid var(--red); }
.article-content h3 { font-size: 18px; margin: 22px 0 10px; }
.article-content p { margin-bottom: 14px; font-size: 16px; }
.article-content ul, .article-content ol { margin: 0 0 16px 22px; }
.article-content li { margin-bottom: 7px; font-size: 15.5px; }
.data-table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 14.5px; }
.data-table th { background: var(--ink); color: #fff; text-align: left; padding: 10px 12px; }
.data-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) { background: var(--bg-alt); }
.article-note { background: var(--red-light); border-left: 4px solid var(--red); padding: 14px 18px; margin: 18px 0; font-size: 15px; border-radius: 0 6px 6px 0; }
.article-faq { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 16px 20px; margin-bottom: 12px; }
.article-faq h3 { margin: 0 0 8px; font-size: 16px; }
.article-faq p { margin: 0; }

/* Legal */
.legal-wrap { max-width: 800px; margin: 36px auto; padding: 0 20px 40px; }
.legal-wrap h1 { font-size: 30px; margin-bottom: 22px; border-bottom: 3px solid var(--red); padding-bottom: 10px; }
.legal-wrap h2 { font-size: 19px; margin: 26px 0 10px; padding-left: 10px; border-left: 4px solid var(--red); }
.legal-wrap p { margin-bottom: 12px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-story { min-height: 300px; }
  .news-row img { width: 110px; height: 72px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .compare-box { flex-direction: column; text-align: center; }
  .article-content { padding: 22px 20px; }
  .hero-slide-text { padding: 0 24px; }
  .hero-slide-text h2 { font-size: 24px; }
}
@media (max-width: 560px) {
  .article-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .news-row img { display: none; }
}
