.news-hero {
    height: 70vh;
    background: linear-gradient(to right, #243949 0%, #517fa4 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085') center/cover no-repeat;
    opacity: 0.3;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.news-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    color: #FDF5E6;
}

.news-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.news-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.news-hero-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-hero-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.news-hero-category {
    background: #8B593E;
    color: #FDF5E6;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 2.5rem;
    }
    
    .news-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
}