.live-dot {
    animation: pulseDot 1.45s infinite;
}

.news-card-shell,
.section-card,
.sidebar-card,
.live-update {
    animation: fadeUp 0.45s ease both;
}

.news-card-shell,
.latest-card,
.horizontal-card,
.sidebar-card {
    transition: all 0.25s ease;
}

.news-card-shell:hover,
.latest-card:hover,
.horizontal-card:hover,
.sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.image-box img {
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.news-card-shell:hover .image-box img,
.latest-card:hover .image-box img,
.horizontal-card:hover .image-box img {
    transform: scale(1.045);
}

.preview-box {
    animation: modalZoom 0.25s ease both;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes liveScroll {
    from {
        transform: translateX(72px);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalZoom {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
