
.contentRelations .header{
    margin-bottom: 10px;
	font-weight: 350;
}
.contentRelations .item{
    flex-basis: 49%;
	border: 1px solid var(--neutral-color-light);
}

.contentRelations .item a {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    
}

.contentRelations .item .image {
    flex: 1 1 0;   
    height: 160px;           
    aspect-ratio: 2 / 1; 
    overflow: hidden;   
}

.contentRelations .item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform-origin: center center;

}

.contentRelations .item a:hover .image img{
    transform: scale(1.08);
}
.contentRelations .item:hover {
    border-color: transparent;;
}

.contentRelations .item .textblock {
    flex: 2 1 0;             
}

.contentRelations .item .textblock .titel {
    color: var(--logo-color-1);
    font-weight: 700;
    margin-top: 0; 
    margin-bottom: 10px;         
}

.contentRelations .item a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24,57,97,.5);
    opacity: 0;
    transform: scale(1.05);
    transition: opacity .3s, transform .4s;
    z-index: 2;
    pointer-events: none;
}


.contentRelations .item a::after {
    content: "";                        
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;                         
    height: 40px;
    transform: translate(-50%, -50%) scale(1.05);
    background: center / contain no-repeat
                url("../../images/layout/Icon_Link.svg");
    opacity: 0;
    transition: opacity .3s, transform .4s;
    z-index: 3;
    pointer-events: none;
}

.contentRelations .item a:hover::before { opacity: 1; transform: scale(1); }
.contentRelations .item a:hover::after  { opacity: 1; transform: translate(-50%,-50%) scale(1); }

@media (max-width: 1100px) {
    .contentRelations .item{
        flex-basis: 48%;
    }
}

@media (max-width: 763px) {
    .contentRelations .container{
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .contentRelations .item a {
        flex-direction: column;      
    }

    .contentRelations .item .image {
        height: unset; 
        width: 100%;      
        flex: none ;              
    }
    .contentRelations .item .textblock .titel {
        width: 100%;
        flex: none ;
        margin-top: 10px;
    }

}