.popular-block__header {
    margin-bottom: 24px;
}

.popular-block__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 12px;
    max-width: 880px;
}

.popular-block__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    max-width: 880px;
}

.popular-block__list {
    display: flex;
    gap: 32px;
}

.popular-item {
    min-width: 33.333%;
}


/* Название */
.popular-item__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 12px;
    color: #000;
}

/* Теги */
.popular-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: calc((6 * 32px) + (5 * 4px)); /* 4 строки по 24px */
    overflow: hidden;
    transition: max-height .3s ease;
}

.popular-tag {
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, .08);
    box-sizing: border-box;
    height: 32px;
}

/* Кнопка показать ещё */
.popular-item__more {
    margin-top: 4px;
    border-radius: 16px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    display: flex;
    gap: 8px;
    background: #F4F4F4;
    border: none;
}

.popular-item__more svg {
    transition: transform .3s ease;
}

.popular-item__more.open svg {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .popular-block__list {
        flex-direction: column;
        gap: 24px;
    }
}