.category-card {
    transition: transform 0.7s ease;
}

/* .category-card:hover {
    transform: translateY(-4px);
} */

.category-image {
    transition: transform 0.7s ease;
}

.category-card:hover .category-image {
    transform: scale(1.15);
}

.category-link {
    font-weight: 700;
    font-size: 3rem;
    line-height: 34px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-left: 5rem;
    padding-bottom: 5rem;
    text-underline-offset: -2px;
    transition: all 0.2s ease;
}

.category-card:hover .category-link {
    text-underline-offset: 2px;
    text-decoration-line: underline;
}

@media (max-width: 1024px) {
    .category-link {
        font-size: 1.8rem;
        padding-left: 2.6rem;
        padding-bottom: 2.6rem;
    }
}