.categories {
    padding: 96px 0;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-text);
}

.section-heading p {
    margin-top: 12px;

    font-size: 18px;
    color: var(--color-text-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.category-card {
    position: relative;
    overflow: hidden;

    border-radius: 24px;

    aspect-ratio: 4 / 3;

    text-decoration: none;
}

.category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;

    display: block;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.05)
    );
}

.category-card span {
    position: absolute;

    left: 24px;
    bottom: 20px;

    color: white;

    font-size: 26px;
    font-weight: 600;

    z-index: 2;
}