.gg-community-showcase {
    background: linear-gradient(180deg, rgba(241, 236, 228, 0.9) 0%, rgba(236, 229, 220, 0.98) 100%);
    padding: 4.5rem 0 5.5rem;
}

.gg-community-showcase__header {
    margin-bottom: 2rem;
    text-align: center;
}

.gg-community-showcase__header h2 {
    margin: 0;
    color: var(--gg-ink-strong);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gg-community-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
}

.gg-community-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(70, 60, 50, 0.12);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    text-decoration: none;
}

.gg-community-card:hover,
.gg-community-card:focus-visible {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.gg-community-card img {
    position: relative;
    left: 50%;
    display: block;
    max-width: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.gg-community-card:hover img,
.gg-community-card:focus-visible img {
    transform: translateX(-50%) scale(1.1);
}

.gg-community-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 20, 17, 0.02) 25%, rgba(24, 20, 17, 0.7) 100%);
}

.gg-community-card__label {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 3px 10px;
    background: var(--gg-legacy-brown);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.05vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 30px;
    font-family: "Century Gothic", "Avenir Next", Avenir, sans-serif;
    text-transform: uppercase;
}

.gg-community-card:focus-visible {
    outline: 3px solid rgba(154, 187, 182, 0.92);
    outline-offset: 4px;
}

@media (max-width: 991.98px) {
    .gg-community-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    .gg-community-showcase__header {
        margin-bottom: 1.5rem;
    }

    .gg-community-showcase {
        padding: 4rem 0 4.75rem;
    }
}

@media (max-width: 575.98px) {
    .gg-community-showcase__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .gg-community-card {
        aspect-ratio: 1 / 1;
    }

    .gg-community-showcase {
        padding: 3.25rem 0 4rem;
    }
}