.fc_box_links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.fc_box_links .box_link {
    background: center / cover no-repeat;
    aspect-ratio: 0.95;
    display: flex;
    justify-content: center;
    align-items: center;
    color: initial;
    text-decoration: none;
    position: relative;
    isolation: isolate;
    flex: 1 1;
    min-width: 350px;
    max-height: 475px;
}

.fc_box_links .box_link p {
    background: white;
    border: 1px solid white;
    padding: 15px 25px;
    border-radius: 5px;
    color: initial;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    word-break: break-word;
    text-align: center;
}

.fc_box_links .box_link:hover {
    opacity: 1;
}

.fc_box_links .box_link:after {
    content: '';
    position: absolute;
    background: var(--rich-gold);
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.fc_box_links .box_link:hover:after {
    opacity: 0.9;
}

.fc_box_links .box_link:hover p {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}