.fc_box_links {
    /*padding: var(--gap-s);*/
}

.fc_box_links .the_links{
    display: grid;
    flex-wrap: wrap;
    gap: clamp(15px, 4vw, 40px);
    grid-template-columns: repeat(3, 1fr);
}
.fc_box_links .the_links.grid_2 {
    grid-template-columns: repeat(2, 1fr);
}
.fc_box_links .the_links.grid_4 {
    grid-template-columns: repeat(4, 1fr);
}


.fc_box_links .the_links .the_link {
    flex: 1 1 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    aspect-ratio: 1.27;
    background: center / cover no-repeat;
    position: relative;
    isolation: isolate;
    transition: .3s;
    text-decoration: none;
    padding: 40px;
}
.fc_box_links .the_links.grid_2 .the_link {
    aspect-ratio: 1.54;
}

.the_link h4{
    margin: 0;
    font-weight: 800;
    color: var(--white);
    padding-right: 40px;
    position: relative;
}
.the_link h4:after{
    content: '';
    position: absolute;
    top: calc(50% - 17px);
    left: 0;
    background: calc(100% - 5px) / contain no-repeat var(--secondary-chevron);
    width: 100%;
    height: 34px;
    transition: .3s;
}

.the_link:hover h4 {
    color: var(--secondary);
}

.the_link:hover h4:after {
    background: calc(100% - 0px) / contain no-repeat var(--secondary-chevron);
}

.fc_box_links .the_links .the_link:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #001137 100%);
    /*opacity: 0.4;*/
    z-index: -1;
}

@media (min-width: 750px) and (max-width: 1160px) {
    .fc_box_links .the_links.grid_4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .fc_box_links .the_links.grid_3{
        grid-template-columns: repeat(2, 1fr);
    }
    .fc_box_links .the_links.grid_3 .the_link:last-child{
        grid-column: span 2;
        aspect-ratio: 2.54;
    }
}

@media (max-width: 750px) {
    .fc_box_links .the_links.grid_2,
    .fc_box_links .the_links.grid_3,
    .fc_box_links .the_links.grid_4{
        grid-template-columns: 1fr;
    }
}