.fc_block_links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.fc_block_links.gap_none {
    gap: 2px;
}
.fc_block_links.count_2 {
    grid-template-columns: repeat(2, 2fr);
}
.fc_block_links.padding_full {
    padding-left: 0;
    padding-right: 0;
}

.fc_block_links a {
    text-decoration: none;
    aspect-ratio: 10 / 7.5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}
.fc_block_links a:hover {
    opacity: 1;
}
.fc_block_links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.fc_block_links.overlay_blue a:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #044068 85.5%);

}

.fc_block_links.content_position_bottom a {
    justify-content: flex-start;
    align-items: flex-end;
    padding: clamp(20px, 3vw, 60px);
}


.fc_block_links a .wp_content {
    width: 90%;
    max-width: 360px;
    text-align: center;
    position: relative;
}

.fc_block_links.content_position_bottom a .wp_content {
    max-width: 80%;
    text-align: left;
}
.fc_block_links a:after {
    transition: .3s;
    content: '';
    top: 0;
    right: 0;
    aspect-ratio: 1 / 1;
    width: clamp(45px, 4vw, 75px);
    position: absolute;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='75' height='75' fill='none'%3E%3Cpath fill='%23044068' d='M0 0h75v75H0z'/%3E%3Cmask id='a' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='18' y='18' width='39' height='39'%3E%3Cpath transform='matrix(-1 0 0 1 57 18)' fill='%23D9D9D9' d='M0 0h39v39H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath d='m32.9 52.3 13.7-13.7.3-.5.1-.6-.1-.6c0-.2-.2-.4-.3-.5L32.9 22.7a2 2 0 0 0-1.5-.6 2 2 0 0 0-1.4.6 2 2 0 0 0 0 2.9l12 11.9-12 12c-.4.3-.6.8-.6 1.3 0 .6.2 1 .6 1.5a2 2 0 0 0 2.9 0Z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
}

.fc_block_links a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='75' height='75' fill='none'%3E%3Cpath fill='%23DE0000' d='M0 0h75v75H0z'/%3E%3Cmask id='a' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='18' y='18' width='39' height='39'%3E%3Cpath transform='matrix(-1 0 0 1 57 18)' fill='%23D9D9D9' d='M0 0h39v39H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath d='m32.9 52.3 13.7-13.7.3-.5.1-.6-.1-.6c0-.2-.2-.4-.3-.5L32.9 22.7a2 2 0 0 0-1.5-.6 2 2 0 0 0-1.4.6 2 2 0 0 0 0 2.9l12 11.9-12 12c-.4.3-.6.8-.6 1.3 0 .6.2 1 .6 1.5a2 2 0 0 0 2.9 0Z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 850px) {
    .fc_block_links.count_2,
    .fc_block_links {
        grid-template-columns: 1fr;
    }

    .fc_block_links a {
        aspect-ratio: 10 / 7;
        padding: 20px;
    }
    .fc_block_links a:after {
        display: none;
    }
}

