/* ──────────────────────────────────────────────────────────────────────────
   Conceito OAB · MEE — Gallery of Approved Students
   gallery.css
   ────────────────────────────────────────────────────────────────────────── */

/* ── Section wrapper ────────────────────────────────────────────────────── */
.gallery-section {
    overflow: hidden;
}

/* ── Stage: full-width, clips the scrolling tracks ─────────────────────── */
.gallery-stage {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* ── Each scrolling row ─────────────────────────────────────────────────── */
.gallery-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
    cursor: default;
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.gallery-card {
    flex-shrink: 0;
    width: 200px;
    background: var(--card);
    border: 1px solid var(--hairline);
    border-radius: 1.125rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition:
        transform 0.4s var(--ease-premium),
        box-shadow 0.4s var(--ease-premium);
    user-select: none;
}

/* Photo wrapper — enforces 4:5 ratio */
.gallery-card-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--secondary);
}

.gallery-card-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition:
        filter 0.4s ease,
        transform 0.4s var(--ease-premium);
}

/* Card info */
.gallery-card-info {
    padding: 0.75rem 1rem 0.875rem;
    border-top: 1px solid var(--hairline);
}

.gallery-card-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-card-badge {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deepest);
    margin-top: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Hover state: hovered card grows, others go greyscale ───────────────── */
.gallery-stage.has-hover .gallery-card img {
    filter: grayscale(1) brightness(0.85);
}

.gallery-stage.has-hover .gallery-card:hover img {
    filter: grayscale(0) brightness(1);
}

.gallery-stage.has-hover .gallery-card:hover {
    transform: scale(1.045);
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .gallery-track {
        animation: none !important;
    }
}
