:root {
    /* --- BALANCE THEME --- */
    --balance-bg: radial-gradient(ellipse at center, #2a2a2a 0%, #1a1a1a 70%);
    --balance-accent: #FFD700;
    --balance-accent-dark: #cca300;
    --balance-text: #ffffff;
    --balance-tag-bg: rgba(255, 215, 0, 0.1);
    --balance-tag-text: #FFD700;
}
/* --- 1. CUSTOM FONT INTEGRATION --- */
@font-face {
    font-family: 'Adlery Pro';
    src: url('../fonts/AdleryPro.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

/* --- THEATRICAL SECTION LAYOUT --- */
.shows-section {
    position: relative;
    background-color: transparent;
    color: var(--text-color); /* Default dark text for light sections */
    padding: 0;
    overflow: hidden;
    background-attachment: fixed;
}

/* Theatrical Curtain Dividers */
.curtain-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(-95%); /* Pulls it up to overlap the previous section */
}

.bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(2px);
}

/* --- 3. SHOWS HEADER --- */
.shows-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shows-header .section-title {
    color: #6B2C91;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.shows-subtitle {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* --- 4. SHOW CARD BASE --- */
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.show-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    grid-template-areas:
        "visual info"
        "details details";
    align-items: start;
    gap: 40px 60px;
    background-color: transparent;
    padding: 36px 40px 40px;
    border-radius: 18px;
    transition: transform 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.show-card:nth-child(2) {
    animation-delay: 0.2s;
}

.show-card.reverse {
    grid-template-areas:
        "info visual"
        "details details";
}

.show-info {
    grid-area: info;
    padding: 8px 10px 0;
}

.show-visual {
    grid-area: visual;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.show-details {
    grid-area: details;
    padding: 26px 32px;
    border-radius: 16px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.show-details:empty {
    display: none;
}

.show-poster-frame {
    width: 300px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 5;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.show-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta Tags (Pills) */
.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.1);
    color: #ccc;
}

.show-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 40px;
}

.show-info .show-desc {
    margin-bottom: 24px;
}

.show-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.show-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: start;
}

.style-stella .show-desc {
    color: #94a3b8; /* Lighter, soft gray */
}

.style-stella .tag {
    background: #1e293b; /* Dark blue background */
    color: #93c5fd; /* Light blue text */
}


/* --- STELLA'S IMAGINARIUM (Wintery / Light) --- */
.style-stella {
    background: #356FE8 !important;
    border: 1px solid #2f5fd0 !important;
    box-shadow: 0 15px 30px rgba(10, 40, 120, 0.2) !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.style-stella::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 60% at 15% 20%, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 65%),
        radial-gradient(70% 55% at 85% 25%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 65%),
        radial-gradient(100% 80% at 50% 85%, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
    opacity: 0.95;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.show-logo-img {
    max-width: 480px;
    margin-bottom: -40px;
    filter: drop-shadow(0 0 15px rgba(43, 134, 197, 0.3));
}

.style-stella .show-tagline {
    color: #ffffff;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.style-stella .show-desc,
.style-stella .show-info,
.style-stella .tag {
    color: #ffffff;
}

.style-stella .show-info,
.style-stella .show-visual,
.style-stella .show-details {
    position: relative;
    z-index: 1;
}

.style-stella .show-details {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 36px rgba(10, 40, 120, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.style-stella .tag {
    background: rgba(255, 255, 255, 0.15);
}

/* --- Show Gallery --- */
.show-gallery {
    margin-top: 28px;
}

.show-gallery-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.show-gallery-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.show-gallery-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.show-gallery-grid {
    display: none;
}

.show-gallery-loading {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Slider layout */
.show-gallery-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.show-gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    grid-template-rows: repeat(2, 130px);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding: 4px 2px 6px;
}

.show-gallery-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.show-gallery-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
}

.show-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-nav:hover {
    transform: scale(1.05);
    background: rgba(30, 41, 59, 0.9);
}

.show-gallery-footer {
    margin-top: 12px;
}

.show-gallery-more {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.show-gallery-more:hover {
    transform: translateY(-1px);
    background: rgba(15, 23, 42, 0.5);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.show-gallery-more.is-hidden {
    display: none;
}

@media (max-width: 900px) {
    .show-gallery-slider {
        grid-template-columns: 1fr;
    }
    .gallery-nav {
        display: none;
    }
    .show-gallery-track {
        grid-auto-columns: minmax(180px, 1fr);
        grid-template-rows: repeat(2, 110px);
    }
}

/* --- Trailer Embed --- */
.show-trailer {
    margin-top: 26px;
}

.show-trailer-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.show-trailer-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.show-trailer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.show-trailer-frame {
    position: relative;
    padding-top: 52%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.show-trailer-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.trailer-trigger {
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.trailer-trigger img {
    width: 100%;
    display: block;
    height: auto;
}

.trailer-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.65) 70%);
}

.trailer-play::before {
    content: '';
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    position: absolute;
}

.trailer-play::after {
    content: '';
    position: absolute;
    border-left: 14px solid #1e293b;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    transform: translateX(2px);
}

.frame-stella {
    border: 8px solid #fff;
    box-shadow: 0 0 20px rgba(43, 134, 197, 0.2);
    transform: translateY(var(--parallax-offset, 0px)) rotate(2deg);
    transition: transform 0.5s ease;
}

.show-card.style-stella:hover .frame-stella {
    transform: translateY(var(--parallax-offset, 0px)) rotate(0deg) scale(1.05);
}

/* Magical Effects */
.magical-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(43, 134, 197, 0.2) 0%, transparent 70%);
    animation: pulse-glow 4s infinite ease-in-out;
    transform: translateY(var(--parallax-offset, 0px));
}

.particle {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
    opacity: 0.9;
    box-shadow: 0 0 10px #fff;
}
.p1 { width: 8px; height: 8px; top: 10%; left: 10%; animation-delay: 0s; }
.p2 { width: 12px; height: 12px; bottom: 15%; right: 5%; animation-delay: 1s; }
.p3 { width: 6px; height: 6px; top: 60%; left: 85%; animation-delay: 2s; }
.p4 { width: 10px; height: 10px; top: 20%; right: 20%; animation-delay: 0.5s; }
.p5 { width: 7px; height: 7px; bottom: 25%; left: 15%; animation-delay: 1.5s; }
.p6 { width: 9px; height: 9px; top: 45%; left: 5%; animation-delay: 2.5s; }
.p7 { width: 5px; height: 5px; top: 5%; right: 35%; animation-delay: 3s; }
.p8 { width: 11px; height: 11px; bottom: 8%; right: 30%; animation-delay: 3.5s; }
.p9 { width: 6px; height: 6px; top: 75%; right: 10%; animation-delay: 4s; }

.btn-stella-primary {
    padding: 16px 35px;
    background: #ffffff;
    color: #356FE8;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.btn-stella-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.btn-stella-outline {
    padding: 14px 33px;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-stella-outline:hover {
    background: #ffffff;
    color: #356FE8;
}

/* --- BALANCE (Theatrical / Dark) --- */
.style-balance {
    background: radial-gradient(ellipse at center, #4b4b4b 0%, #2a2a2a 85%) !important;
    color: var(--balance-text) !important;
    border: 1px solid #4a4a4a !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
    position: relative;
    overflow: hidden;
}

.style-balance .show-info,
.style-balance .show-visual,
.style-balance .show-details {
    position: relative;
    z-index: 1;
}

.style-balance .show-details {
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
}

.style-balance::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 100% at 10% 20%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 60%),
        radial-gradient(120% 100% at 90% 80%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 65%),
        radial-gradient(60% 50% at 30% 70%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}

.style-balance .show-title {
    font-family: 'Adlery Pro', cursive;
    font-size: 5.5rem;
    color: var(--balance-accent);
    margin-top: 8px;
    margin-bottom: 0px;
    transform: rotate(-3deg);
    font-weight: normal;
}

.style-balance .show-tagline {
    font-family: 'Courier New', monospace;
    background: var(--balance-accent);
    color: #000;
    padding: 4px 12px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 25px;
    transform: rotate(1deg);
}

.frame-balance {
    border: 2px solid var(--balance-accent);
    border-radius: 0; /* Sharp corners for industrial feel */
    transform: translateY(var(--parallax-offset, 0px)) rotate(-3deg);
    box-shadow: 10px 10px 0px var(--balance-accent-dark);
    transition: all 0.3s ease;
}

.show-card.style-balance:hover .frame-balance {
    transform: translateY(var(--parallax-offset, 0px)) rotate(-1deg) scale(1.03);
    box-shadow: 5px 5px 0px var(--balance-accent-dark);
}

.industrial-shape {
    position: absolute;
    width: 350px;
    height: 450px;
    background: var(--balance-accent);
    opacity: 0.05;
    clip-path: polygon(10% 0, 100% 15%, 90% 100%, 0% 85%);
    z-index: 1;
    transform: translateY(var(--parallax-offset, 0px));
}

[data-parallax-speed] {
    will-change: transform;
}

.btn-balance-primary {
    padding: 16px 35px;
    background: var(--balance-accent);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    box-shadow: 5px 5px 0px #000;
    border: 2px solid #000;
    margin-right: 15px;
    transition: all 0.2s ease-in-out;
}

.btn-balance-primary:hover {
    background: var(--balance-accent-dark);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px #000;
}

.btn-balance-outline {
    padding: 14px 33px;
    border: 3px solid var(--balance-accent);
    color: var(--balance-accent);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

.btn-balance-outline:hover {
    background: var(--balance-accent);
    color: #000;
    box-shadow: 0 0 15px var(--balance-accent);
}

.style-balance .tag {
    background: var(--balance-tag-bg);
    color: var(--balance-tag-text);
}

/* --- 7. ARCHIVE SECTION (THE VAULT) --- */
.archive-container {
    margin-top: 100px;
    background: #222;
    padding: 60px 0;
    border-top: 4px dashed rgba(255,255,255,0.1);
}

.archive-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.archive-text { text-align: center; }
.archive-text h3 { color: #fff; font-size: 2rem; margin-bottom: 5px; }
.archive-text p { color: #888; }
.archive-credit-note {
    margin-top: 10px;
    color: #9aa0a6;
    font-size: 0.9rem;
}

.btn-archive {
    padding: 15px 30px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-archive:hover {
    background: #fff;
    color: #000;
}

/* --- 8. ANIMATIONS --- */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

@keyframes industrial-glow {
    0%, 100% { box-shadow: 0 0 20px -10px var(--balance-accent); }
    50% { box-shadow: 0 0 30px 0px var(--balance-accent); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 9. MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .show-card, .show-card.reverse {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "info"
            "details";
        text-align: center;
        padding: 30px 20px;
    }

    .show-media-grid {
        grid-template-columns: 1fr;
    }

    .tags { justify-content: center; }
    
    .show-logo-img { max-width: 240px; margin: 0 auto 20px auto; }
    
    .style-balance .show-title { font-size: 3.5rem; }
    
    .archive-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* Reduce the Current Productions title size on small screens so it never overflows */
@media (max-width: 900px) {
    .shows-header .section-title {
        font-size: 2rem;
        padding: 0 12px;
        box-sizing: border-box;
        word-break: break-word;
        max-width: 100%;
        margin: 0 auto 8px auto;
    }
    .archive-container { padding: 28px 0; }
}

/* Improved archive layout: two-column on desktop with photo grid */
.archive-inner { align-items: center; }
.archive-text { text-align: left; max-width: 520px; padding: 6px 0; }
.archive-list { margin-top: 12px; color: #ccc; list-style: none; padding: 0; }
.archive-list li { margin: 8px 0; color: #bbb; font-size: 0.95rem; }
.archive-action { align-self: flex-start; margin-top: 14px; }

/* Archive eye-candy stack */
.archive-photos {
    position: relative;
    width: 380px;
    height: 300px;
    margin: 0;
    cursor: pointer;
    perspective: 900px;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.archive-photos:hover {
    transform: scale(1.035);
    filter: saturate(1.08);
}

.archive-figure {
    position: absolute;
    margin: 0;
    width: 220px;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.archive-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stack-a { top: 0; left: 0; transform: rotate(-5deg); z-index: 1; }
.stack-b { top: 24px; right: 0; transform: rotate(4deg); z-index: 2; }
.stack-c { bottom: 0; left: 24px; transform: rotate(3deg); z-index: 3; }
.stack-d { bottom: 18px; right: 18px; transform: rotate(-4deg); z-index: 4; }

.archive-photos:hover .archive-figure {
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.archive-photos:hover .stack-a { transform: translate3d(-10px, -6px, 0) rotate(-7deg) scale(1.02); }
.archive-photos:hover .stack-b { transform: translate3d(10px, -8px, 0) rotate(6deg) scale(1.03); }
.archive-photos:hover .stack-c { transform: translate3d(-8px, 10px, 0) rotate(5deg) scale(1.03); }
.archive-photos:hover .stack-d { transform: translate3d(12px, 8px, 0) rotate(-6deg) scale(1.04); }

/* Archive project folders (inside overlay) */
.archive-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 14px;
}

.project-folder {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-folder:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.project-folder img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.folder-info {
    padding: 10px 12px 12px;
}

.folder-info small {
    color: #9aa0a6;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.folder-info h4 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 0.98rem;
}

.archive-gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 16, 0.92);
    z-index: 2200;
    padding: 60px 24px 24px;
    overflow-y: auto;
}

.archive-overlay-close {
    position: fixed;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.archive-gallery-content {
    max-width: 1100px;
    margin: 0 auto;
}

.archive-gallery-content h3 {
    color: #fff;
    margin: 0 0 16px;
}

.archive-overlay-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.archive-overlay-back {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
}

.archive-full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.archive-full-gallery-grid .gallery-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.archive-full-gallery-grid .gallery-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.archive-full-gallery-grid .photo-credit,
.archive-full-gallery-grid .photo-title {
    color: #cdd3db;
    font-size: 0.78rem;
    margin-top: 6px;
}

@media (max-width: 900px) {
    .archive-photos {
        width: 100%;
        max-width: 360px;
        height: 280px;
    }

    .archive-figure {
        width: 200px;
        height: 130px;
    }
}

