/**
 * resource-cards.css
 *
 * - Remove link styling from post-terms (category) on resource cards.
 * - Remove the arrow/chevron that follows the terms block.
 */

/* Strip link appearance from category terms */
.wp-block-post-terms a {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}

/* Kill the caret/arrow — TT5 injects it via ::after on the <a> tag */
.wp-block-post-terms a::after,
.wp-block-post-terms::after,
.wp-block-post-terms a:last-child::after {
    content: none !important;
    display: none !important;
}

/* Hide separator character between terms if present */
.wp-block-post-terms .wp-block-post-terms__separator {
    display: none !important;
}
