/* ============================================================
   DigitalKompass – Personal Blog Theme
   Breitband | Streaming | Mobilfunk
   Design: Clean, warm, editorial personal blog style
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --breitband:       #0D9488;
    --breitband-dark:  #0F766E;
    --streaming:       #E11D48;
    --streaming-dark:  #BE123C;
    --mobilfunk:       #6366F1;
    --mobilfunk-dark:  #4F46E5;
    --accent:          #EA580C;
    --dark:            #1E293B;
    --text:            #334155;
    --muted:           #94A3B8;
    --border:          #E2E8F0;
    --bg:              #FFFDF7;
    --white:           #FFFFFF;
    --light:           #F8FAFC;
    --tag-bg:          #F1F5F9;

    --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family:var(--font-body);
    font-size:16px;
    line-height:1.7;
    color:var(--text);
    background:var(--bg);
}
a { color:var(--breitband); text-decoration:none; transition:color .2s; }
a:hover { color:var(--accent); }
img { max-width:100%; height:auto; display:block; }
ul, ol { list-style:none; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ---- Top Bar (thin, elegant) ---- */
.topbar {
    background:var(--dark);
    color:rgba(255,255,255,0.7);
    font-size:12px;
    padding:5px 0;
}
.topbar-inner {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
}
.topbar-date { font-weight:500; }
.topbar-social { display:flex; gap:10px; }
.topbar-social-link {
    color:rgba(255,255,255,0.55);
    transition:color .2s;
}
.topbar-social-link:hover { color:#fff; }

/* ---- Header (clean, white, personal blog style) ---- */
.site-header {
    background:var(--white);
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:1000;
}
.header-inner {
    display:flex;
    align-items:center;
    gap:2rem;
    height:68px;
    padding:0 24px;
}

/* Logo */
.logo {
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}
.logo-icon {
    font-size:2rem;
    line-height:1;
}
.logo-text {
    font-family:var(--font-heading);
    font-size:1.35rem;
    font-weight:700;
    color:var(--dark);
    letter-spacing:-0.3px;
}
.logo-text span {
    color:var(--breitband);
}

/* Navigation */
.main-nav { flex:1; }
.nav-links {
    display:flex;
    gap:4px;
}
.nav-links > li > a {
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 18px;
    border-radius:var(--radius);
    color:var(--text);
    font-weight:600;
    font-size:14px;
    transition:all .2s;
}
.nav-links > li > a:hover {
    background:var(--light);
    color:var(--dark);
}
.nav-breitband a:hover { background:#F0FDFA; color:var(--breitband); }
.nav-streaming a:hover { background:#FFF1F2; color:var(--streaming); }
.nav-mobilfunk a:hover { background:#EEF2FF; color:var(--mobilfunk); }

.header-actions { display:flex; align-items:center; gap:8px; margin-left:auto; }
.search-toggle, .menu-toggle {
    background:none; border:none; cursor:pointer;
    color:var(--muted); padding:8px; border-radius:var(--radius-sm);
    display:flex; align-items:center; transition:all .2s;
}
.search-toggle:hover, .menu-toggle:hover { background:var(--light); color:var(--dark); }
.menu-toggle { display:none; flex-direction:column; gap:5px; }
.menu-toggle span { display:block; width:22px; height:2px; background:var(--dark); border-radius:2px; transition:all .3s; }
.menu-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity:0; }
.menu-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Search Bar */
.header-search {
    background:var(--light);
    border-top:1px solid var(--border);
    max-height:0; overflow:hidden;
    transition:max-height .3s ease, padding .3s ease;
}
.header-search.open { max-height:80px; padding:12px 0; }
.header-search-form { display:flex; gap:8px; max-width:500px; margin:0 auto; }
.header-search-form input {
    flex:1; padding:9px 14px;
    border:2px solid var(--border); background:var(--white);
    color:var(--dark); border-radius:var(--radius);
    font-size:14px; font-family:var(--font-body); outline:none;
    transition:border-color .2s;
}
.header-search-form input:focus { border-color:var(--breitband); }
.header-search-form input::placeholder { color:var(--muted); }
.header-search-form button {
    padding:9px 20px; background:var(--breitband); color:#fff;
    border:none; border-radius:var(--radius); cursor:pointer;
    font-weight:600; font-size:14px; transition:background .2s;
}
.header-search-form button:hover { background:var(--breitband-dark); }

/* ============================================================
   Homepage – Personal Blog Layout
   ============================================================ */
.homepage-wrap { padding:32px 0 48px; }
.home-layout {
    display:grid;
    grid-template-columns:1fr 320px;
    gap:32px;
    align-items:start;
}

/* ---- Hero Carousel (top of main content) ---- */
.hero-carousel {
    position:relative;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow-md);
    background:var(--dark);
    margin-bottom:32px;
    aspect-ratio:16/9;
}
.hero-slide {
    display:none; position:absolute; inset:0;
    background-size:cover; background-position:center;
}
.hero-slide.active { display:block; }
.hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.25) 55%, transparent 100%);
}
.hero-content {
    position:absolute; bottom:0; left:0; right:0;
    padding:32px; z-index:2;
}
.hero-cat {
    display:inline-block;
    font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.8px;
    padding:4px 10px; border-radius:4px; color:#fff;
    margin-bottom:12px;
}
.hero-cat-breitband { background:var(--breitband); }
.hero-cat-streaming { background:var(--streaming); }
.hero-cat-mobilfunk { background:var(--mobilfunk); }
.hero-title {
    font-family:var(--font-heading);
    font-size:1.6rem; font-weight:700; line-height:1.3;
    margin-bottom:8px; color:#fff;
}
.hero-title a { color:#fff; }
.hero-title a:hover { color:rgba(255,255,255,0.85); }
.hero-meta { font-size:12px; color:rgba(255,255,255,0.65); }

.slider-btn {
    position:absolute; top:50%; transform:translateY(-50%); z-index:3;
    background:rgba(255,255,255,0.12); backdrop-filter:blur(4px);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff; width:40px; height:40px; border-radius:50%;
    font-size:20px; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s;
}
.slider-btn:hover { background:rgba(255,255,255,0.25); }
.slider-prev { left:16px; }
.slider-next { right:16px; }
.slider-dots {
    position:absolute; bottom:16px; right:20px;
    display:flex; gap:8px; z-index:3;
}
.slider-dot {
    width:8px; height:8px; border-radius:50%;
    background:rgba(255,255,255,0.35); border:none; cursor:pointer;
    transition:all .2s;
}
.slider-dot.active { background:#fff; transform:scale(1.3); }

/* ---- Section Header ---- */
.section-header {
    display:flex; align-items:center; gap:12px;
    margin-bottom:20px; padding-bottom:12px;
    border-bottom:2px solid var(--border);
}
.section-header h2 {
    font-family:var(--font-heading);
    font-size:1.2rem; font-weight:700; color:var(--dark);
    flex-shrink:0;
}
.section-header-line { flex:1; height:1px; background:var(--border); }

/* ---- Featured Grid (2 columns) ---- */
.featured-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:36px;
}
.featured-card {
    background:var(--white);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:transform .25s, box-shadow .25s;
}
.featured-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.featured-card-img {
    position:relative; display:block;
    aspect-ratio:16/10; overflow:hidden;
}
.featured-card-img img {
    width:100%; height:100%; object-fit:cover;
    transition:transform .4s;
}
.featured-card:hover .featured-card-img img { transform:scale(1.03); }
.featured-card-cat {
    position:absolute; top:10px; left:10px;
    font-size:10px; font-weight:700; text-transform:uppercase;
    padding:3px 8px; border-radius:4px; color:#fff;
}
.featured-card-body { padding:16px 18px 18px; }
.featured-card-body h3 {
    font-family:var(--font-heading);
    font-size:1rem; font-weight:700; line-height:1.4;
    margin-bottom:8px; color:var(--dark);
}
.featured-card-body h3 a { color:var(--dark); }
.featured-card-body h3 a:hover { color:var(--breitband); }
.featured-card-body p {
    font-size:13px; color:var(--muted); line-height:1.5;
    margin-bottom:10px;
}
.featured-card-meta {
    font-size:11px; color:var(--muted);
    display:flex; gap:12px; align-items:center;
}

/* ---- Category Tabs / Section ---- */
.category-section { margin-bottom:36px; }
.cat-section-breitband .section-header h2 { color:var(--breitband); }
.cat-section-streaming .section-header h2 { color:var(--streaming); }
.cat-section-mobilfunk .section-header h2 { color:var(--mobilfunk); }

/* Category-specific section headers */
.section-header-breitband { border-bottom-color:var(--breitband); }
.section-header-streaming { border-bottom-color:var(--streaming); }
.section-header-mobilfunk { border-bottom-color:var(--mobilfunk); }

/* ---- Post Cards Grid ---- */
.post-grid {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
}
.post-card {
    display:flex; gap:14px;
    background:var(--white);
    border-radius:var(--radius);
    padding:14px;
    box-shadow:var(--shadow);
    transition:transform .2s, box-shadow .2s;
    align-items:flex-start;
}
.post-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.post-card-thumb {
    flex-shrink:0; width:120px; height:80px;
    border-radius:var(--radius-sm); overflow:hidden;
}
.post-card-thumb img { width:100%; height:100%; object-fit:cover; }
.post-card-info { flex:1; min-width:0; }
.post-card-info h4 {
    font-family:var(--font-heading);
    font-size:14px; font-weight:600; line-height:1.45;
    margin-bottom:6px; color:var(--dark);
}
.post-card-info h4 a { color:var(--dark); }
.post-card-info h4 a:hover { color:var(--breitband); }
.post-card-info p {
    font-size:12px; color:var(--muted); line-height:1.5;
    margin-bottom:6px;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
    overflow:hidden;
}
.post-card-meta {
    font-size:11px; color:var(--muted);
    display:flex; gap:10px; align-items:center;
}
.post-card-cat {
    font-size:10px; font-weight:600; text-transform:uppercase;
    padding:1px 6px; border-radius:3px;
}

/* Category-specific badge colors */
.cat-breitband { background:var(--breitband); color:#fff; }
.cat-streaming { background:var(--streaming); color:#fff; }
.cat-mobilfunk { background:var(--mobilfunk); color:#fff; }

.badge-breitband { background:var(--breitband); }
.badge-streaming { background:var(--streaming); }
.badge-mobilfunk { background:var(--mobilfunk); }

/* ---- Load More ---- */
.load-more-wrap { text-align:center; margin-top:28px; }
.btn-load-more {
    display:inline-block;
    padding:10px 28px;
    background:var(--white);
    color:var(--breitband);
    border:2px solid var(--breitband);
    border-radius:var(--radius);
    font-weight:600; font-size:14px;
    cursor:pointer;
    transition:all .2s;
}
.btn-load-more:hover { background:var(--breitband); color:#fff; }

/* ============================================================
   Sidebar
   ============================================================ */
.sidebar { position:sticky; top:92px; }
.sidebar-widget {
    background:var(--white);
    border-radius:var(--radius);
    padding:20px;
    box-shadow:var(--shadow);
    margin-bottom:24px;
}
.sidebar-widget h3 {
    font-family:var(--font-heading);
    font-size:13px; font-weight:700; text-transform:uppercase;
    letter-spacing:0.6px;
    color:var(--dark);
    margin-bottom:14px; padding-bottom:10px;
    border-bottom:2px solid var(--border);
}
/* Category-color accent borders */
.widget-neueste-artikel h3 { border-bottom-color:var(--breitband); color:var(--breitband); }
.widget-neueste-kommentare h3 { border-bottom-color:var(--streaming); color:var(--streaming); }
.widget-archiv h3 { border-bottom-color:var(--mobilfunk); color:var(--mobilfunk); }
.widget-kategorien h3 { border-bottom-color:var(--accent); color:var(--accent); }

/* Sidebar: Recent Posts */
.recent-posts li {
    padding:8px 0; border-bottom:1px solid var(--border);
}
.recent-posts li:last-child { border-bottom:none; padding-bottom:0; }
.recent-posts a {
    font-size:13px; font-weight:500; color:var(--text); line-height:1.4;
    display:block;
}
.recent-posts a:hover { color:var(--breitband); }
.recent-posts .post-date {
    font-size:11px; color:var(--muted); margin-top:2px;
}

/* Sidebar: Categories */
.category-list li { margin-bottom:6px; }
.category-list a {
    font-size:13px; color:var(--text);
    display:flex; justify-content:space-between;
    padding:5px 0;
    border-bottom:1px dashed var(--border);
    transition:color .2s;
}
.category-list a:hover { color:var(--breitband); }
.category-list .cat-count {
    font-size:11px; color:var(--muted); font-weight:600;
    background:var(--light); padding:1px 8px; border-radius:10px;
}

/* Sidebar: Archive */
.archive-list li { margin-bottom:6px; }
.archive-list a {
    font-size:13px; color:var(--text);
    padding:4px 0; display:block;
}
.archive-list a:hover { color:var(--breitband); }

/* Sidebar: Comments */
.recent-comments li {
    padding:8px 0; border-bottom:1px solid var(--border);
    font-size:12px; line-height:1.5;
}
.recent-comments li:last-child { border-bottom:none; }
.recent-comments a { font-weight:500; }
.recent-comments .comment-author {
    font-size:11px; color:var(--muted);
}

/* Sidebar: Search */
.sidebar-widget input[type="search"] {
    width:100%; padding:10px 14px;
    border:2px solid var(--border); border-radius:var(--radius);
    font-size:13px; font-family:var(--font-body); outline:none;
    transition:border-color .2s;
}
.sidebar-widget input[type="search"]:focus { border-color:var(--breitband); }

/* ============================================================
   Article (Single Post)
   ============================================================ */
.article-main { padding:32px 0 48px; }
.article-layout {
    display:grid;
    grid-template-columns:1fr 320px;
    gap:32px;
    align-items:start;
}
.article-content {
    background:var(--white);
    border-radius:var(--radius);
    padding:36px;
    box-shadow:var(--shadow);
}
.article-meta-top {
    display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    margin-bottom:16px; font-size:12px; color:var(--muted);
}
.article-category {
    font-size:10px; font-weight:700; text-transform:uppercase;
    padding:3px 10px; border-radius:4px; color:#fff;
}
.article-content h1 {
    font-family:var(--font-heading);
    font-size:2rem; line-height:1.3; margin-bottom:16px; color:var(--dark);
}
.article-author {
    display:flex; align-items:center; gap:10px;
    margin-bottom:24px; padding-bottom:20px;
    border-bottom:1px solid var(--border);
    font-size:13px; color:var(--muted);
}
.article-author img { border-radius:50%; }
.article-featured-image {
    margin:0 0 24px; border-radius:var(--radius); overflow:hidden;
}
.article-featured-image img { width:100%; border-radius:var(--radius); }
.article-body {
    font-size:1.05rem; line-height:1.9;
}
.article-body h2 {
    font-family:var(--font-heading);
    font-size:1.4rem; margin:2.2rem 0 1rem; color:var(--breitband);
}
.article-body h3 {
    font-family:var(--font-heading);
    font-size:1.15rem; margin:1.6rem 0 .8rem; color:var(--dark);
}
.article-body p { margin-bottom:1.3rem; }
.article-body ul, .article-body ol {
    margin-bottom:1.3rem; padding-left:1.5rem; list-style:disc;
}
.article-body li { margin-bottom:.5rem; }
.article-body blockquote {
    border-left:4px solid var(--breitband);
    padding:14px 20px; margin:1.5rem 0;
    background:var(--light); border-radius:0 var(--radius) var(--radius) 0;
    font-style:italic; color:var(--text);
}
.article-body .info-box {
    background:#F0FDFA; border-left:4px solid var(--breitband);
    padding:14px 18px; margin:1.2rem 0; border-radius:0 var(--radius) var(--radius) 0;
    font-size:.95rem;
}
.article-body .warning-box {
    background:#FFF7ED; border-left:4px solid var(--accent);
    padding:14px 18px; margin:1.2rem 0; border-radius:0 var(--radius) var(--radius) 0;
    font-size:.95rem;
}
.article-tags {
    margin:28px 0 0; padding-top:16px;
    border-top:1px solid var(--border);
    display:flex; flex-wrap:wrap; gap:8px;
}
.article-tags a {
    background:var(--tag-bg); color:var(--text);
    padding:5px 14px; border-radius:20px;
    font-size:12px; font-weight:500;
    transition:all .2s;
}
.article-tags a:hover { background:var(--breitband); color:#fff; }
.article-share { margin:24px 0 0; }
.article-share h4 { font-size:13px; font-weight:700; margin-bottom:10px; }
.share-buttons { display:flex; flex-wrap:wrap; gap:8px; }
.share-btn {
    padding:8px 18px; border-radius:6px; font-weight:600;
    font-size:12px; color:#fff; transition:opacity .2s;
}
.share-btn:hover { opacity:.85; color:#fff; }
.share-btn.facebook { background:#1877F2; }
.share-btn.twitter { background:#000; }
.share-btn.linkedin { background:#0A66C2; }
.share-btn.whatsapp { background:#25D366; }

.article-sidebar { position:sticky; top:92px; }

/* Comments */
.article-comments { margin-top:32px; }
.article-comments h3 {
    font-family:var(--font-heading); font-size:1.2rem; margin-bottom:20px;
}
.comment-form input, .comment-form textarea {
    width:100%; padding:10px 14px;
    border:1px solid var(--border); border-radius:var(--radius-sm);
    margin-bottom:12px; font-family:var(--font-body); font-size:14px;
    outline:none; transition:border-color .2s;
}
.comment-form input:focus, .comment-form textarea:focus {
    border-color:var(--breitband);
}
.comment-form textarea { min-height:120px; resize:vertical; }

/* ============================================================
   Page / Archive
   ============================================================ */
.page-main, .archive-main { padding:32px 0 48px; }
.page-layout {
    display:grid;
    grid-template-columns:1fr 320px;
    gap:32px;
}
.page-content {
    background:var(--white);
    border-radius:var(--radius);
    padding:36px;
    box-shadow:var(--shadow);
}
.page-content h1 {
    font-family:var(--font-heading);
    font-size:1.8rem; margin-bottom:24px; padding-bottom:16px;
    border-bottom:2px solid var(--breitband); color:var(--dark);
}
.page-content h2 {
    font-family:var(--font-heading);
    font-size:1.3rem; margin:2rem 0 1rem; color:var(--breitband);
}
.page-content h3 {
    font-family:var(--font-heading);
    font-size:1.1rem; margin:1.5rem 0 .8rem;
}
.page-content p {
    margin-bottom:1.2rem; line-height:1.8;
}
.page-content ul, .page-content ol {
    padding-left:1.5rem; margin-bottom:1.2rem; list-style:disc;
}
.page-content li { margin-bottom:.5rem; }

.archive-header {
    background:var(--white); padding:20px 28px;
    border-radius:var(--radius); box-shadow:var(--shadow);
    margin-bottom:24px;
    display:flex; align-items:center; gap:16px;
}
.archive-header h1 {
    font-family:var(--font-heading); font-size:1.5rem; color:var(--dark);
}
.archive-header .cat-badge-large {
    padding:6px 16px; border-radius:var(--radius-sm);
    color:#fff; font-weight:700;
}
.archive-grid {
    display:grid; grid-template-columns:1fr 1fr; gap:20px;
}

/* ============================================================
   404 Page
   ============================================================ */
.not-found-main { padding:80px 0; text-align:center; }
.not-found-main h1 {
    font-family:var(--font-heading);
    font-size:8rem; font-weight:900; color:var(--breitband);
    line-height:1;
}
.not-found-main h2 {
    font-family:var(--font-heading);
    font-size:1.8rem; margin:16px 0 12px;
}
.not-found-main p { color:var(--muted); margin-bottom:24px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display:inline-block;
    padding:10px 24px; border-radius:var(--radius);
    font-weight:600; font-size:13px; text-align:center;
    cursor:pointer; border:2px solid transparent;
    transition:all .2s;
}
.btn-primary { background:var(--breitband); color:#fff; }
.btn-primary:hover { background:var(--breitband-dark); color:#fff; }
.btn-secondary { background:var(--mobilfunk); color:#fff; }
.btn-secondary:hover { background:var(--mobilfunk-dark); color:#fff; }
.btn-outline { background:transparent; color:var(--breitband); border-color:var(--breitband); }
.btn-outline:hover { background:var(--breitband); color:#fff; }
.btn-sm { padding:6px 14px; font-size:12px; }
.btn-dark { background:var(--dark); color:#fff; }
.btn-dark:hover { background:#000; color:#fff; }

/* ============================================================
   Footer (clean, elegant)
   ============================================================ */
.site-footer {
    background:var(--dark);
    color:rgba(255,255,255,0.7);
    margin-top:48px;
}
.footer-top { padding:48px 0 36px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-top-inner {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:36px;
}
.footer-col-title {
    font-size:11px; font-weight:700; text-transform:uppercase;
    letter-spacing:1px;
    color:rgba(255,255,255,0.85);
    margin-bottom:16px; padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display:flex; align-items:center; gap:8px;
    margin-bottom:12px;
}
.footer-logo-icon { font-size:1.5rem; }
.footer-logo-text {
    font-family:var(--font-heading);
    font-size:1.2rem; font-weight:700; color:#fff;
}
.footer-desc { font-size:13px; line-height:1.7; margin-bottom:16px; }
.footer-social { display:flex; gap:8px; }
.footer-social-link {
    display:flex; align-items:center; justify-content:center;
    width:34px; height:34px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    color:rgba(255,255,255,0.5);
    transition:all .2s;
}
.footer-social-link:hover { background:var(--breitband); color:#fff; }
.footer-links li { margin-bottom:9px; }
.footer-links a {
    font-size:13px; color:rgba(255,255,255,0.6);
    transition:color .2s;
    display:flex; align-items:center; gap:6px;
}
.footer-links a:hover { color:#fff; }
.footer-links a::before { content:'\203A'; color:var(--breitband); font-weight:700; font-size:16px; }
.footer-bottom {
    background:rgba(0,0,0,0.2); padding:16px 0;
}
.footer-bottom-inner {
    display:flex; justify-content:space-between;
    align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-copyright { font-size:12px; color:rgba(255,255,255,0.45); }
.footer-copyright strong { color:rgba(255,255,255,0.75); }
.footer-bottom-nav { display:flex; gap:18px; flex-wrap:wrap; }
.footer-bottom-nav a {
    font-size:11px; color:rgba(255,255,255,0.45);
    text-transform:uppercase; letter-spacing:0.5px;
    font-weight:600; transition:color .2s;
}
.footer-bottom-nav a:hover { color:rgba(255,255,255,0.85); }

/* ============================================================
   Cookie Consent
   ============================================================ */
.cookie-consent {
    position:fixed; bottom:-100%; left:0; right:0; z-index:9999;
    transition:bottom .4s ease; padding:0 20px 20px; pointer-events:none;
}
.cookie-consent.show { bottom:0; pointer-events:auto; }
.cookie-inner {
    background:var(--dark); border:1px solid rgba(255,255,255,0.1);
    border-radius:var(--radius); padding:16px 24px;
    display:flex; align-items:center; justify-content:space-between;
    gap:20px; flex-wrap:wrap;
    box-shadow:0 -4px 30px rgba(0,0,0,0.3);
    max-width:900px; margin:0 auto;
}
.cookie-inner p { font-size:13px; color:rgba(255,255,255,0.75); }
.cookie-inner a { color:var(--breitband); text-decoration:underline; }
.cookie-buttons { display:flex; gap:8px; flex-shrink:0; }
.btn-cookie-accept {
    padding:8px 20px; background:var(--breitband); color:#fff;
    border:none; border-radius:var(--radius-sm);
    font-weight:700; font-size:13px; cursor:pointer;
    transition:background .2s;
}
.btn-cookie-accept:hover { background:var(--breitband-dark); }
.btn-cookie-decline {
    padding:8px 16px; background:transparent;
    color:rgba(255,255,255,0.6); border:1px solid rgba(255,255,255,0.2);
    border-radius:var(--radius-sm); font-weight:600;
    font-size:13px; cursor:pointer; transition:all .2s;
}
.btn-cookie-decline:hover { color:#fff; border-color:rgba(255,255,255,0.5); }

/* ============================================================
   @media Responsive
   ============================================================ */
@media (max-width:1024px) {
    .home-layout { grid-template-columns:1fr; }
    .sidebar { position:static; }
    .article-layout, .page-layout { grid-template-columns:1fr; }
    .article-sidebar { position:static; }
}
@media (max-width:768px) {
    .menu-toggle { display:flex; }
    .main-nav {
        position:absolute; top:68px; left:0; right:0;
        background:var(--white); z-index:999;
        border-top:1px solid var(--border);
        box-shadow:var(--shadow-lg);
    }
    .nav-links {
        flex-direction:column; gap:0; display:none;
    }
    .nav-links.open { display:flex; }
    .nav-links > li > a {
        height:48px; padding:0 24px;
        border-bottom:1px solid var(--border);
        border-radius:0;
    }
    .featured-grid { grid-template-columns:1fr; }
    .post-grid { grid-template-columns:1fr; }
    .archive-grid { grid-template-columns:1fr; }
    .footer-top-inner { grid-template-columns:1fr 1fr; gap:24px; }
    .article-content, .page-content { padding:24px; }
    .hero-title { font-size:1.2rem; }
}
@media (max-width:480px) {
    .post-grid { grid-template-columns:1fr; }
    .footer-top-inner { grid-template-columns:1fr; }
    .footer-bottom-inner { flex-direction:column; text-align:center; }
    .footer-bottom-nav { justify-content:center; }
    .post-card { flex-direction:column; }
    .post-card-thumb { width:100%; height:140px; }
    .share-buttons { flex-direction:column; }
    .cookie-inner { flex-direction:column; align-items:flex-start; }
}
