.blog-hero {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.9), rgba(102, 126, 234, 0.9)), url("../images/blog-hero.d41d8cd98f00.jpg") center/cover no-repeat;
    border-radius: 1.5rem;
    padding: 1.75rem 2.25rem;
    color: #fff;
}

.blog-hero__intro {
    max-width: 38rem;
}

.blog-hero__stats {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 1.25rem;
    padding: 1rem 1.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 9rem;
}

@media (min-width: 768px) {
    .blog-hero__stats {
        align-items: flex-end;
    }
}

.blog-hero__stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.blog-hero__stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.tag-badge {
    background-color: rgba(118, 75, 162, 0.1);
    color: #764ba2;
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.category-widget {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1rem;
}

.post-body img {
    max-width: 100%;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.related-posts .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.related-posts .card:hover {
    transform: translateY(-4px);
}
