.category-grid {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
}
.category-card {
flex: 1 1 175px;
max-width: 175px;
padding: 8px;
box-sizing: border-box;
text-align: center;
}
.category-card__title {
margin-top: 8px;
}
.category-card__link {
text-decoration: none;
font-weight: 700;
color: var(--wp--preset--color--midnight);
}
.category-card__link:hover .category-card__title {
text-decoration: underline;
}
.category-card__image {
aspect-ratio: 16/9;
object-fit: cover;
}
@media screen and (min-width: 620px) {
.hub__main-container {
margin-top: 48px !important;
}
}
@media screen and (min-width: 1024px) {
.category-card {
max-width: 182px;
}
}