/* TITLE */
.category-title {
    transition: 0.3s !important;
}

.category-title:hover {
    color:  var(--primary) !important;
    text-decoration: underline !important;
};

/* LINKS */
.category-link {
    transition: 0.3s !important;
}

.category-link:hover {
    color:  var(--primary) !important;
    text-decoration: underline !important;
}   

.group-links {
    column-count: 2 !important;
    column-gap: 1em !important;
}

@media screen and (min-width: 768px) {
    .group-links {
        column-count: 3 !important;
        column-gap: 1em !important;
    }
}

@media screen and (min-width: 992px) {
    .group-links {
        column-count: 5 !important;
        column-gap: 1em !important;
    }
}

.link-show {
    color:  var(--primary) !important;
}

.link-show:hover {
    color:  var(--secondary) !important;
    text-decoration: underline !important;
}

/* TRUNKED TEXT */
.full-text {
    width: 100% !important;
    white-space: nowrap !important;
}

.full-paragraph {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}