/* PAGE WRAPPER */
.explore-container {
    max-width: 720px;
    margin: auto;
    padding: 16px;
}

/* HEADER */
.explore-header {
    padding: 10px 4px;
}

.explore-title {
    font-size: 22px;
    font-weight: 700;
}

.explore-sub {
    font-size: 14px;
    color: #6c7a89;
}

/* BANNER */
.explore-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 22px;
}

.explore-banner img {
    width: 100%;
}

/* OVERLAY */
.banner-text {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, .45);
    color: white;
    border-radius: 10px;
}

/* HORIZONTAL CARDS */
.explore-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
}

.explore-cards::-webkit-scrollbar {
    display: none;
}

.explore-card {
    min-width: 180px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

/* LOCAL GRID */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gitem img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
}

/* DESKTOP */
@media (min-width:900px) {
    .explore-container {
        max-width: 900px;
        padding: 24px 0;
    }

    .gitem img {
        height: 180px;
    }
}