/* EXHIBITS GRID */
        .exhibits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 100%;
        }

        @media (max-width: 600px) {
            .exhibits-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

        .exhibit-card {
            background: #FFFFFF;
            border: 1.5px solid var(--primary-border);
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            box-shadow: 0 10px 25px var(--accent-glow);
            width: 100%;
            max-width: 100%;
        }

        .exhibit-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px var(--accent-glow);
        }

        /* POSTER TRIPLE-STAGE BANNER */
        .exhibit-poster-stage {
            height: 220px;
            background: var(--primary-soft-bg);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 1rem;
            cursor: pointer;
            border-bottom: 1.5px solid var(--primary-border);
            width: 100%;
            max-width: 100%;
        }

        .stage-thumb {
            height: 100%;
            width: 75px;
            border-radius: 10px;
            object-fit: cover;
            border: 1.5px solid #FFFFFF;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .stage-thumb.center {
            width: 90px;
            transform: scale(1.08);
            border-color: var(--primary);
            box-shadow: 0 12px 25px var(--accent-glow);
            z-index: 2;
        }

        .exhibit-card:hover .stage-thumb.center {
            transform: scale(1.15);
        }

        .exhibit-body {
            padding: 1.65rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex: 1;
            justify-content: space-between;
        }

        .exhibit-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: var(--font-mono);
            font-size: 0.75rem;
        }

        .exhibit-theme-badge {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--primary-dark);
        }

        .exhibit-title {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-heading);
            line-height: 1.25;
        }

        .exhibit-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1.5px dashed var(--primary-border);
        }

        .btn-launch-stream {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #BE185D, #F43F5E);
            color: #FFFFFF;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 0.88rem;
            padding: 0.6rem 1.4rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 15px var(--accent-glow);
        }

        .btn-launch-stream:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px var(--accent-glow);
        }
