.vote-item {
    height: 27.6042vw; /* 530px -> 530/1920*100 */
    padding: 1.25vw; /* 24px -> 24/1920*100 */
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25vw; /* 24px -> 24/1920*100 */
    border: 0.0521vw solid rgba(255, 255, 255, 0.30); /* 1px -> 1/1920*100 */
    width: calc(33.33% - 1.1115vw); /* 21.33px -> 21.33/1920*100 */
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none;
}
.online-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.vote-item .news-name {
    min-height: 40px;
    color: var(--light);
}
.vote-item:hover .news-name {
    color: var(--light);
}
.grid-col-3 {
    display: flex;
    gap: 64px 32px ;
    flex-wrap: wrap;
    transition: min-height 0.4s ease;
}
.vote-item.active {
    opacity: 1;
    transform: scale(1);
    display: flex;
}

/* Плавное появление с задержкой */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vote-item.showing {
    animation: fadeInUp 0.4s ease forwards;
}
@media (max-width: 680px) {
    .vote-item {
        padding: 24px;
        gap: 24px;
        width: calc(33.33% - 21.33px);
    }
    .vote-item {
        width: calc(50% - 4.266vw);
        height: 80vw;
    }
}
@media (max-width: 480px) {
    .vote-item {
        width: 100%;
        height: 160vw;
    }
}