.single {
    .wp-block-post-terms {
        border-radius: 30px;
        width: auto;
        display: inline-block;
        transition: all 0.25s ease-in-out;
        line-height: 16px;
        font-size: 16px;
    
        a {
            transition: all 0.25s ease-in-out;
        }
        
        &:hover {
            background-color: var(--wp--preset--color--primary) !important;
            color: white !important;
    
            a {
                color: white !important;
            }
        }
    }
}

.wp-block-query {
    .wp-block-post-terms {
        border-radius: 0px !important;
        font-weight: 600 !important;
        padding-top: 3px !important;
        padding-bottom: 3px !important;

        &:hover {
            background-color: var(--wp--preset--color--primary) !important;
            color: white !important;

            a {
                color: white !important;
            }
        }

        
    }
}

@media screen and (min-width: 782px) and (max-width: 991px) {
    .wp-block-post-terms {
        line-height: 12px;

        a {
            font-size: 12px;
        }
    }
}