.featured-categories {
    margin-top: 20px;
}

.category-block {
    transition: transform 0.3s ease;
    width: calc(33.33% - 14px);
}

.category-block:nth-child(3n-1) {
    width: calc(33.34% - 14px);
}

.category-block:hover {
    transform: translateY(-5px);
}

.featured-categories__grid {
	display: flex;
	justify-content: space-between;
	gap: 21px;
	flex: row;
	flex-wrap: wrap;
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    overflow: hidden;
}

.category-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-block:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 20px 15px;
    text-align: center;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {

    .category-block,
    .category-block:nth-child(3n-1) {
        width: calc(50% - 10px);
    }

    .featured-categories__grid {
        gap: 20px;
    }

}

@media (max-width: 599px) {

    .category-block,
    .category-block:nth-child(3n-1) {
        width: 100%;
    }

      
    .category-info {
        padding: 15px 10px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}