.popular__list {
    display: flex;
    flex-wrap: wrap;
}
.popular__item {
    flex: 0 0 calc(33% - 16px);
    text-decoration: none;
    flex-direction: column;
}
.popular__images {
    width: 100%;
    height: 306px;
    border-radius: 16px;
    overflow: hidden;
}
.popular__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 1s;
}
.description__title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #131619;
    margin: 20px 0 8px;
}
.description__time {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #6C757D;
}
.popular__item:hover .popular__img {
    transform: scale(1.2);
}

@media screen and (max-width: 1440px) {
    .popular__item {
        flex: 0 0 calc(33% - 1.5%);
    }
}
@media screen and (max-width: 1240px) {
    .popular__item {
        flex: 0 0 calc(33% - 1.8%);
    }
}
@media screen and (max-width: 1024px) {
    .popular__list {
        gap: 10px;
    }
    .popular__item {
        flex: 0 0 32%;
    }
}
@media screen and (max-width: 640px) {
    .popular__item {
        flex: 0 0 100%;
    }
}