/* Word Cloud Styles */
.hero__wordcloud {
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
    margin: 20px -40px;
    padding: 10px 0;
    max-width: none;
}

.hero__wordcloud svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__wordcloud text.word {
    cursor: default;
    user-select: none;
    paint-order: stroke;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 2px;
}

/* Hide word cloud on mobile devices */
@media screen and (max-width: 768px) {
    .hero__wordcloud {
        display: none;
    }
}
