@media not all and (min-width: 640px) {
    .custom-link {
        flex-direction: column !important;
    }
    .custom-link span {
        text-align: center;
    }
}

.wp-block-acf-custom-link {
    width: 100%;
}

.custom-link {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px;
    width: 100%;
    border-radius: 18px;
    background: rgba(59, 56, 60, 0.10);
    transition: background 0.3s ease-out;
}

.custom-link:hover {
    background: #DE2124;
}

.custom-link svg {
    fill: #3B383C;
    transition: fill 0.3s ease-out;
}

.custom-link:hover svg {
    fill: #FBFBFB;
}

.custom-link span {
    color: #3B383C;
    text-transform: uppercase;
    transition: color 0.3s ease-out;
}

.custom-link:hover span {
    color: #FBFBFB;
}