/* Blog Stat Counter Block */
.blog-stat-counter {
    position: relative;
    overflow: hidden;
}

.blog-stat-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.blog-stat-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Dunkler Hintergrund */
.blog-stat-dark .blog-stat-title {
    color: white;
}

.blog-stat-dark .blog-stat-zahl {
    color: white;
}

.blog-stat-dark .blog-stat-beschreibung {
    color: rgba(255, 255, 255, 0.85);
}

.blog-stat-dark .blog-stat-quelle {
    color: rgba(255, 255, 255, 0.5);
}

.blog-stat-dark .blog-stat-icon i {
    color: #ea6463;
}

.blog-stat-dark .blog-stat-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-stat-dark .blog-stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Heller Hintergrund */
.blog-stat-light .blog-stat-title {
    color: #37556b;
}

.blog-stat-light .blog-stat-zahl {
    color: #37556b;
}

.blog-stat-light .blog-stat-beschreibung {
    color: #555;
}

.blog-stat-light .blog-stat-quelle {
    color: #999;
}

.blog-stat-light .blog-stat-icon i {
    color: #ea6463;
}

.blog-stat-light .blog-stat-item {
    background: white;
    border-color: rgba(55, 85, 107, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-stat-light .blog-stat-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Gemeinsame Styles */
.blog-stat-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.blog-stat-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ea6463 0%, #f47776 100%);
    border-radius: 2px;
}

.blog-stat-grid {
    display: grid;
    gap: 24px;
}

.blog-stat-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.blog-stat-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.blog-stat-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.blog-stat-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.blog-stat-icon {
    margin-bottom: 16px;
}

.blog-stat-icon i {
    font-size: 28px;
}

.blog-stat-emoji {
    font-size: 32px;
    line-height: 1;
}

.blog-stat-zahl {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.blog-stat-beschreibung {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.blog-stat-quelle {
    font-size: 12px;
    font-style: italic;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-stat-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-stat-zahl {
        font-size: 40px;
    }

    .blog-stat-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .blog-stat-cols-2,
    .blog-stat-cols-3,
    .blog-stat-cols-4 {
        grid-template-columns: 1fr;
    }

    .blog-stat-zahl {
        font-size: 36px;
    }

    .blog-stat-item {
        padding: 24px 20px;
    }

    .blog-stat-title {
        font-size: 22px;
    }
}
