/* Explore by Category Grid — f52352e4 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500&display=swap');

.ebcg-f52352e4-section {
    background-color: #FAF8F5;
    padding: 60px 0;
    width: 100%;
    box-sizing: border-box;
}

.ebcg-f52352e4-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ebcg-f52352e4-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: #1C1410;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 0;
    line-height: 1.3;
}

.ebcg-f52352e4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.ebcg-f52352e4-tile {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 280px;
    overflow: hidden;
    text-decoration: none;
    border-radius: 2px;
    background-color: #2a2520;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebcg-f52352e4-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(14, 12, 10, 0.2);
}

.ebcg-f52352e4-tile:hover .ebcg-f52352e4-overlay {
    opacity: 0.55;
}

.ebcg-f52352e4-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0E0C0A;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.ebcg-f52352e4-label {
    position: relative;
    z-index: 2;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 28px;
    text-align: center;
    line-height: 1;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .ebcg-f52352e4-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ebcg-f52352e4-heading {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
    .ebcg-f52352e4-section {
        padding: 40px 0;
    }

    .ebcg-f52352e4-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ebcg-f52352e4-tile {
        min-height: 200px;
    }

    .ebcg-f52352e4-heading {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .ebcg-f52352e4-label {
        font-size: 11px;
        letter-spacing: 2px;
        padding-bottom: 20px;
    }
}
