.grid-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-40);
    box-shadow: 3px 4px 12px 0 rgba(27, 28, 28, 0.20);
    background-color: var(--wp--preset--color--light);
    gap: var(--spacing-20);
}

.grid-link::after {
    content: 'EN SAVOIR PLUS';
    position: absolute;
    inset: 0;
    background-color: var(--wp--preset--color--blue);
    color: var(--wp--preset--color--dark);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.9px;
    font-family: var(--wp--preset--font-family--inter);
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.grid-link:hover::after {
    opacity: 1;
}

.grid-link-text p:not(.grid-link-subtext) {
    letter-spacing: 0.9px;
    font-size: var(--wp--preset--font-size--callout) !important;
    font-family: var(--wp--preset--font-family--inter);
    text-transform: uppercase;
}

.text-mobile {
    display: none;
}

@media not all and (min-width: 1025px) {
    .text-mobile {
        display: block;
    }

    .grid-link-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: var(--spacing-20);
    }
}