.fc_box_links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--gap-l);
}

.fc_box_links a {
    background: none;
    display: flex;
    flex-direction: column;
}

.fc_box_links a .image {
    aspect-ratio: 10 / 6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.fc_box_links a:hover {
    background: no-repeat center / cover;
}

.fc_box_links a p {
    margin: 0;
    background: rgba(48, 62, 71, 1);
    color: #fff;
    padding: clamp(5px, 2vw, 15px) clamp(15px, 3vw, 40px);
    transition: .3s;
    font-weight: 600;
    flex-grow: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc_box_links a:hover p {
    background: rgba(253, 129, 3, 0.90);
}
.fc_box_links a.contain {
    background-color: #fff;
    background-size: contain;
}

@media (max-width: 1024px) {
    .fc_box_links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .fc_box_links {
        grid-template-columns: 1fr;
    }
}