@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-hero {
    height: 424px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    margin: 0;
    opacity: 0.9;
}

.hero-title {
    margin: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .blog-hero {
        height: 235px !important;
    }

    .hero-content-wrapper {
        padding: 0 24px !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        height: 190px !important;
    }

    .hero-content-wrapper {
        padding: 0 16px !important;
        gap: 8px !important;
    }
}