.title-listing {
    margin-bottom: 10px !important;
}

.tag-description {
    font-family: var(--roboto);
    color: #707070;
    background-color: #F3F3F3;
    padding: 20px;
    border-radius: 10px;

    display: flex;
    gap: 15px;
    align-items: center;
}

.tag-description figure {
    margin-bottom: 0;
    width: 90px;
    height: 90px;
}

.tag-description figure img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.tag-description h2 {
    font-size: 18px;
    margin: 0;
}

.listagem-banner {
    margin-top: 30px;
}

.listing-tags {
    max-width: 860px;
    margin: 50px auto 0;
}

.listing-tags__links:not(:first-child) {
    border-top: 1px solid #F3F3F3;
    margin-top: 1.875rem;
    padding-top: 1.875rem;
}

.listing-tags__title.mob {
    background-image: url(https://opovo.com.br/reboot_portal/public/assets/img/icon/icon-mais-preto.webp);
    background-position: center right;
    background-repeat: no-repeat;
}

.listing-tags__title.mob.active {
    background-image: url(https://opovo.com.br/reboot_portal/public/assets/img/icon/icon-menos-preto.webp);
}

.listing-tags__title h4 {
    color: var(--graydefault);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.listing-tags__links ul {
    list-style: none;
    gap: 1.25rem;
}

.listing-tags__links ul li {
    width: 190px;
}

.listing-tags__links a {
    color: var(--bluedefault);
    font-size: 1.125rem;
    line-height: 1.375rem;
    font-weight: 600;
    transition: .2s;
}

.listing-tags__links a:hover {
    color: var(--lightblue);
}

@media (max-width: 992px) {
    .listing-tags__links ul li {
        width: 224px;
    }
}

@media(max-width: 600px) {
    .listing-tags__links:not(:first-child) {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .listing-tags__title {
        display: none;
    }

    .listing-tags__title.mob {
        display: block !important;
    }

    .listing-tags__links ul {
        display: none !important;
    }

    .listing-tags__links ul.active {
        display: flex !important;
        animation: fadeOpen 1s;
    }
}

@keyframes fadeOpen {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}