.main-content__container.container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.main-content {
    margin: 0;
    width: 100%;
}

.main-content__container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.region--content {
    width: 100%;
    display: block;
    margin: 0;
    padding-block-end: 3rem;
}

.layout-main-wrapper {
    background-image: linear-gradient(180deg, transparent 60%, #c2012030);
}


.block.block-system.block-system-breadcrumb-block {
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem 2rem;
}

.taxonomy-term__hero{
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;

    & img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    &::before{
        z-index: 1;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(90deg, #000000d1, transparent, #ff00004f);
        mix-blend-mode: multiply;
    }

    & .container{
        z-index: 2;
    }

    & h1{
        color: var(--color-white);
    }
}

.teaser-large {
    box-shadow: 0 4px 10px #00000040;
    border-radius: 1rem;
    padding: 1rem;
    background-color: #fff;

    & img{
        border-radius: 0.5rem;
    }

    & .teaser-large__title{
        font-size: 1.5rem;
        line-height: 1em;
        margin-block: 1rem;
        & a{
            color: var(--color-text);
            text-decoration: none;
            &:hover{
                text-decoration: underline;
            }
        }
    }

    & .field--name-body * {
        font-size: 1rem;
    }
}

.content__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;

    & .content__item__icon{
        color: var(--color-primary);
        font-size: 1.25em;
        display: flex;
    }
}

.teaser-taxonomy-term{
    position: relative;
    &::before{
        z-index: 1;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(90deg, #000000d1, transparent, #ff000087);
        mix-blend-mode: multiply;
    }

    & .teaser__title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .taxonomy-term__hero {
        height: 300px;
        & h1 {
            color: var(--color-white);
            font-size: 3rem;
        }
    }   
}