/* =================================== */
/* HERO SLIDER STYLING */
/* =================================== */

.hero-slider-section {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slider {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(30px);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-slide.active .hero-slide-background img {
    transform: scale(1.05);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(79, 172, 254, 0.8) 0%, 
        rgba(0, 242, 254, 0.7) 25%, 
        rgba(255, 107, 107, 0.6) 75%, 
        rgba(254, 202, 87, 0.8) 100%);
    backdrop-filter: blur(2px);
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-slide-inner {
    max-width: 600px;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero-slide-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-category a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-category a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.hero-date {
    color: rgba(255, 255, 255, 0.8);
}

.hero-slide-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-slide-title a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-slide-title a:hover {
    text-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.hero-slide-excerpt {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-slide-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-read-more {
    background: rgba(255, 255, 255, 0.95);
    color: #1e1b4b;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

.hero-arrow {
    transition: transform 0.3s ease;
}

.hero-read-more:hover .hero-arrow {
    transform: translateX(5px);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.hero-tags a {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-tags a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: white;
    transform: scale(1.2);
}

.hero-arrows {
    display: flex;
    gap: 10px;
}

.hero-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1e1b4b;
    transform: scale(1.1);
}

/* =================================== */
/* HERO SLIDE: KONSUMTAGEBUCH FEATURE  */
/* =================================== */

.hero-slide-background--konsum {
    background: linear-gradient(135deg,
        #1a0533 0%,
        #2d1b69 25%,
        #1e3a5f 60%,
        #0f4c75 100%);
}

.hero-slide-overlay--konsum {
    background: linear-gradient(135deg,
        rgba(88, 28, 135, 0.55) 0%,
        rgba(30, 58, 95, 0.45) 50%,
        rgba(5, 150, 105, 0.35) 100%);
}

.hero-slide--feature .hero-slide-inner,
.hero-slide-inner--feature {
    max-width: 720px;
}

.hero-feature-badge {
    display: inline-block;
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-konsum-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 18px 0 26px;
}

.hero-konsum-pill {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    hyphens: auto;
}

.hero-read-more--feature {
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    color: white !important;
    border: none;
}

.hero-read-more--feature:hover {
    background: linear-gradient(90deg, #6d28d9, #0891b2);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

/* =================================== */
/* Hero Info Bar */
.hero-info-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px 30px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-info-title {
    margin: 0 0 5px 0;
    color: #1e1b4b;
    font-size: 18px;
    background: linear-gradient(135deg, #7c3aed, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-info-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #1e1b4b;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
        border-radius: 15px;
    }
    
    .hero-slide-inner {
        padding: 20px;
    }
    
    .hero-slide-title {
        font-size: clamp(22px, 6vw, 28px);
    }
    
    .hero-slide-excerpt {
        font-size: 16px;
    }
    
    .hero-info-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-slider-controls {
        bottom: 15px;
    }
    
    .hero-arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .hero-slide-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stat-number {
        font-size: 20px;
    }
}

/* Blog Grid - Startseite */
.nx-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.nx-blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(124,58,237,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2,.9,.3,1.2), box-shadow .3s;
    animation: nxBlogIn .5s ease both;
}

.nx-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(124,58,237,0.12);
}

@keyframes nxBlogIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nx-blog-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.06));
}

.nx-blog-card__thumb--empty {
    min-height: 120px;
}

.nx-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.nx-blog-card:hover .nx-blog-card__thumb img {
    transform: scale(1.05);
}

.nx-blog-card__cat {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nx-blog-card__time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 8px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
}

.nx-blog-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nx-blog-card__title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 8px;
}

.nx-blog-card__title a {
    color: #1e1b4b;
    text-decoration: none;
}

.nx-blog-card__title a:hover {
    color: #7c3aed;
}

.nx-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
}

.nx-blog-card__author::before {
    content: "\00B7";
    margin-right: 10px;
}

.nx-blog-card__excerpt {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 12px;
    flex: 1;
}

.nx-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #7c3aed;
    text-decoration: none;
    transition: gap .25s ease;
}

.nx-blog-card__link:hover {
    gap: 10px;
    color: #5b21b6;
}

@media (max-width: 767px) {
    .nx-blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .nx-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nx-blog-card {
        animation: none;
        transition: none;
    }
}

