.taxonomy-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-taxonomy {
    overflow: hidden;
    height: 300px;
    position: relative
}

.taxonomy-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.term-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.term-item img:hover {
    transform: scale(1.05);
}

.taxonomy-bg-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    backface-visibility: hidden;
    background-color:#000000; 
    opacity: 0.3;
}

