/***** intersection-link-buttons ******/
.intersection-link-buttons--single {
    position: relative;
    display: flex;
    align-items: flex-end;
    aspect-ratio: 1;
    padding: 50px;
}

@media screen and (max-width: 1200px) {
    .intersection-link-buttons--single {
        padding: 30px;
    }
}
@media screen and (max-width: 768px) {
    .intersection-link-buttons--single {
        justify-content: center;
    }
}

.intersection-link-buttons--single-thumbnail {
    position: absolute;
    top: 0;
    left:0;
    right:0;
    bottom: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.intersection-link-buttons--title-container {
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px;
    aspect-ratio: 1;
    min-width: 240px;
    text-decoration: none;
    text-align: center;
    justify-content: center;
}
@media screen and (max-width: 1200px) {
    .intersection-link-buttons--title-container {
        padding: 15px;
    }
}

.intersection-link-buttons--title-inner {
    content: '';
    position: absolute;
    top: 0;
    left:0;
    right:0;
    bottom:0;
    display: block;
    width: 100%;
    height: 100%;
    transition: all ease-out 0.3s;
}
.intersection-link-buttons--title-inner:hover {
    transform: rotate(-16deg);
}


.intersection-link-buttons--title {
    color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .intersection-link-buttons--title-container{
        min-width: 200px;
    }
    .intersection-link-buttons--title{
        font-size: 25px;
    }
}
@media screen and (max-width: 768px){
    .intersection-link-buttons .container-fluid{
        padding: 0;
    }
}