.yjmh-updates-layout {
    min-height: 100vh;
}

.yjmh-updates-hero {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(6, 182, 212, 0.1));
}

.yjmh-new-work {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yjmh-new-work:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.15);
}

.yjmh-new-badge {
    animation: yjmhNewPulse 2s ease-in-out infinite;
}

@keyframes yjmhNewPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.yjmh-day-schedule {
    transition: all 0.3s ease;
}

.yjmh-day-schedule:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .yjmh-today-updates {
        grid-template-columns: 1fr;
    }
    
    .yjmh-schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}