/* Topic cloud block: heading + tag cloud (white text, border; dashboard = blue) */
.bsi-topic-cloud {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
}
#content .bsi-topic-cloud h2.bsi-topic-cloud__heading {
    font-size: clamp(120px, 9vw, 180px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
    margin-top: 0px;
    word-break: keep-all;
    white-space: nowrap;
    flex-shrink: 0;
    flex-grow: 0;
    line-height: 1;
}
.bsi-topic-cloud__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    align-items: center;
    align-self: center;
    flex-grow: 1;
    height:fit-content;
}
.bsi-tc-tag {
    display: block;
    padding: 0.35em 0.75em;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    text-decoration: none;
    border-radius: 0px;
    transition:  0.2s ease;
}
.bsi-tc-tag:hover {
    opacity: 0.9;
    color: #fff;
    border-radius: 60px;
    background-color: #0076D6;
}
.bsi-tc-tag--dashboard {
    background: #0076D6;
    border-color: #fff;
}

@media screen and (max-width: 676px) {
    .bsi-topic-cloud{
        flex-direction: column;
        gap: 5px;
    }
    #content .bsi-topic-cloud h2.bsi-topic-cloud__heading {
        font-size: clamp(52px, 15vw, 64px);
    }
}
