.discovery-tags {
    display: flex;
    gap: 5vw;
    overflow-x: auto;
    justify-content: center;
}

.discovery-tags.expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.tag {
    color: var(--tertiary-text);
    transition: .3s;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0px;
    position: relative;
    white-space: nowrap;
}
.tag::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: transparent;
    border-radius: 50px;
    transition: .3s;
}

.tag iconify-icon {
    font-size: 25px;
    display: flex;
    justify-content: center;
    position: relative;
}
.tag span {
    display: block;
}
.tag:hover,
.tag.active {
    color: var(--primary-text);
}
.tag:hover::before,
.tag.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--primary-text);
    border-radius: 50px;
}

.locations {
    margin: 25px 0;
    display: none;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.locations.active {
    display: grid;
}
