/******* intersection-links-no-title *******/
.intersection-links-no-title-widgets--content-wrapper { 
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    pointer-events: none;
    padding: 30px;
}

.intersection-links-no-title-widgets--content-inner {
    display: flex;
    align-items: flex-end;
    position: relative;
    width: 100%;
    height: 100%;
}

.intersection-links-no-title-widgets--image {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.intersection-links-no-title-widgets--underline {
    position: absolute;
    bottom:0px;
    left:0px;
    height: 5px;
    width: 60px;
    z-index: 0;
    transition: all linear 0.2s;
}
.intersection-links-no-title-widgets--content-wrapper:hover .intersection-links-no-title-widgets--underline {
    height: 100%;
    width: 100%;
}
.intersection-links-no-title-widgets--single-title {
    position: relative;
    z-index: 2;
    color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: var(--e-global-typography-primary-font-weight);
    text-transform: var(--e-global-typography-primary-text-transform);
    font-size: 22px;
    margin-bottom: 0px;
    padding-bottom: 10px;
    pointer-events: auto;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and (max-width: 1024px){
    .intersection-links-no-title-widgets--content-wrapper { 
        padding:10px;
    }
}
@media screen and (max-width: 991px){
    .intersection-links-no-title-widgets--content-wrapper { 
        padding:10px;
    }
    .intersection-links-no-title-widgets--single-title {
        font-size: 20px;
    }
}