:root {
    --bg-color: #080808;
    --text-primary: #e8e8e8;
    --text-muted: #6b7280;
    --accent: #ffffff;
    --font-display: 'Archivo', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --max-width: 1400px;
    --page-padding: 4rem;
    --header-height: 104px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

section[id] {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.75;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

/* ─── HEADER ─────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: inherit;
    border-bottom: inherit;
    z-index: -1;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav a {
    font-family: var(--font-display);
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    transition: color 0.25s;
}

.nav a:hover { color: #ffffff; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    left: 0;
    transition: all 0.3s;
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* ─── SIDEBAR MENU ─────────────────────── */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: clamp(280px, 82vw, 360px);
    height: 100vh;
    background-color: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    border-left: 1px solid rgba(255,255,255,0.05);
    overflow-y: auto;
}

.sidebar-menu.open {
    transform: translateX(0);
}

.sidebar-close {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    font-family: var(--font-body);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.sidebar-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.2s;
}

.sidebar-link:hover {
    color: var(--text-muted);
}

/* ─── HERO ────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 340px;
    max-height: 580px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

#digitalCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem var(--page-padding);
    pointer-events: none;
    z-index: 2;
}

.hero-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    line-height: 1.0;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(0.78rem, 1.05vw, 0.92rem);
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-cta {
    pointer-events: all;
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: border-color 0.25s, color 0.25s;
    width: fit-content;
}
.hero-cta:hover {
    border-color: #ffffff;
    color: #ffffff;
}

/* ─── SECTIONS ───────────────────────── */
.section {
    padding: 6rem 0;
    position: relative;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
}

.works.section {
    padding-top: 4rem;
}

/* ─── SECTION LABEL (for Works) ────── */
.works-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.works-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
}

/* ─── 2-COLUMN SECTIONS ─────────────── */
.grid-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}

.section-header { min-width: 0; }
.section-content { min-width: 0; }

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    position: sticky;
    top: 3rem;
}

/* ─── WORKS GRID ─────────────────────── */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

.work-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
}

.work-image-wrapper {
    background-color: #0e0e0e;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    width: 100%;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.work-item:hover .work-image-wrapper img {
    transform: scale(1.03);
    opacity: 0.9;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 3px;
}

.work-item:hover .overlay { opacity: 1; }
.overlay span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.5rem 1.1rem;
    border-radius: 2px;
}

.work-info { padding: 0.1rem 0; }

.work-title {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.work-details {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ─── LIGHTBOX ───────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.94);
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: lbFadeIn 0.3s ease;
}

.lightbox.open {
    display: flex;
}

@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    font-family: var(--font-body);
    transition: color 0.25s;
    z-index: 10;
}
.lightbox-close:hover { color: #ffffff; }

.lightbox-inner {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
}

.lightbox-img-wrap {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    min-width: 0;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    display: block;
}

.lightbox-info {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lightbox-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.lightbox-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.lightbox-medium,
.lightbox-size,
.lightbox-year {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

.lightbox-year {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.lightbox-inquire {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #ffffff;
    background-color: #ffffff;
    color: #080808;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 2px;
    transition: background-color 0.25s, transform 0.2s;
}
.lightbox-inquire:hover {
    background-color: #e2e2e2;
    transform: translateY(-1px);
}

.lightbox-youtube {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 2px;
    transition: background-color 0.25s, border-color 0.25s, transform 0.2s;
    text-align: center;
}
.lightbox-youtube:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    transform: translateY(-1px);
}

/* ─── BACK TO TOP ────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background-color: #ffffff;
    color: #080808;
    transform: translateY(-3px);
}

/* ─── ABOUT ──────────────────────────── */
.credentials {
    margin-bottom: 2.5rem;
}

.cred-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.statement {
    font-size: 1.05rem;
    line-height: 2;
    font-weight: 300;
    color: var(--text-primary);
}
.statement em { font-style: italic; color: rgba(255,255,255,0.7); }
.statement p { margin-bottom: 2rem; }
.statement p:last-child { margin-bottom: 0; }

/* ─── CONTACT ────────────────────────── */
.contact-desc {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
}

.email-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--bg-color);
    background-color: var(--accent);
    text-decoration: none;
    padding: 0.9rem 2rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    transition: background-color 0.25s, transform 0.25s;
    border-radius: 3px;
}
.email-btn:hover {
    background-color: #e2e2e2;
    transform: translateY(-2px);
}
.gallery-form {
    margin-top: 2.5rem;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.gallery-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.gallery-form label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.gallery-form input,
.gallery-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 3px;
    transition: border-color 0.25s, background-color 0.25s;
}
.gallery-form input:focus,
.gallery-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}
.gallery-form .submit-btn {
    align-self: flex-start;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--bg-color);
    background-color: var(--accent);
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    transition: background-color 0.25s, transform 0.25s, opacity 0.25s;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}
.gallery-form .submit-btn:hover {
    background-color: #e2e2e2;
    transform: translateY(-2px);
}
.gallery-form .submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.gallery-form .form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-bbx {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.contact-bbx a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
}
.contact-bbx a:hover {
    color: #ffffff;
}

/* ─── FOOTER ─────────────────────────── */
.footer {
    padding: 3.5rem 0;
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.04);
    letter-spacing: 0.03em;
}

/* ─── ARCHIVE FILTERS ────────────────── */
.archive-filters {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.3rem 0;
    margin-right: 1.5rem;
    border-radius: 0;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.25s ease;
    border-bottom: 1px solid transparent;
}

.filter-btn:hover {
    color: rgba(255,255,255,0.85);
}

.filter-btn.active {
    background-color: transparent;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    font-weight: 500;
}

/* ─── ARCHIVE ACCORDION TABLE ─────────── */
.archive-row {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background-color 0.25s;
}

.archive-row-header {
    display: grid;
    grid-template-columns: 80px 1fr 1.2fr 28px;
    gap: 2rem;
    align-items: center;
    padding: 1.6rem 0.5rem;
    cursor: pointer;
    transition: background-color 0.25s, padding-left 0.25s;
    user-select: none;
}

.archive-row-header:hover {
    background-color: rgba(255,255,255,0.015);
    padding-left: 1rem;
}

.row-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.row-year {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.88rem;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.row-type {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}

.row-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.row-desc-preview {
    font-size: 0.84rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

.row-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: color 0.25s, transform 0.3s;
    font-family: var(--font-body);
}

.archive-row.expanded .row-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

/* ─── ARCHIVE DRAWER ─────────────────── */
.archive-row-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.detail-content {
    padding: 1.5rem 0.5rem 3rem calc(80px + 2rem + 0.5rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 680px;
    font-weight: 400;
}

/* ─── HORIZONTAL IMAGE CAROUSEL ─────── */
.carousel-container {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.carousel-container::-webkit-scrollbar { height: 4px; }
.carousel-container::-webkit-scrollbar-track { background: transparent; }
.carousel-container::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.carousel-item {
    flex: 0 0 auto;
    width: clamp(260px, 30vw, 400px);
    scroll-snap-align: start;
    border-radius: 3px;
    overflow: hidden;
    background-color: #0e0e0e;
    aspect-ratio: 4/3;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25,1,0.5,1), opacity 0.35s;
    opacity: 0.78;
}

.carousel-item img:hover {
    transform: scale(1.03);
    opacity: 1;
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
    :root {
        --page-padding: 2.5rem;
        --header-height: 88px;
    }
    .header { padding: 2rem 0; }
    .nav,
    .lang-switcher { display: none; }
    .menu-toggle { display: block; }
    .hero { height: min(62vh, 620px); min-height: 430px; }
    .hero-overlay { width: 58%; }
    .works-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.8rem; }
    .archive-row-header { grid-template-columns: 70px 1fr 1fr 28px; }
    .detail-content { padding-left: calc(70px + 2rem + 0.5rem); }
}

@media (max-width: 768px) {
    :root {
        --page-padding: clamp(1rem, 4vw, 1.4rem);
        --header-height: 76px;
    }
    .container { width: 100%; }
    .header {
        min-height: var(--header-height);
        padding: 1.2rem 0;
    }
    .logo {
        font-size: clamp(1rem, 5vw, 1.2rem);
        letter-spacing: 0.18em;
    }
    .hero {
        height: clamp(520px, 78svh, 680px);
        min-height: 520px;
        max-height: 680px;
    }
    .hero-overlay {
        width: 100%;
        padding: clamp(1.1rem, 5vw, 1.5rem);
        justify-content: flex-start;
        padding-top: clamp(2.2rem, 8vw, 3.5rem);
    }
    .hero-title {
        font-size: clamp(2.45rem, 12vw, 4.15rem);
        max-width: 8.5ch;
    }
    .hero-subtitle {
        max-width: 24rem;
        margin-top: 0.25rem;
    }
    .hero-cta { margin-top: auto; }
    .nav { display: none; } /* Hide desktop nav */
    .menu-toggle { display: block; } /* Show hamburger */
    .menu-toggle,
    .hamburger,
    .hamburger::before,
    .hamburger::after { width: 28px; }
    .grid-layout { grid-template-columns: 1fr; gap: 1.8rem; }
    .section-title { position: static; margin-bottom: 0; }
    .works-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .works-header { flex-direction: column; gap: 0.4rem; }

    /* Archive mobile */
    .archive-row-header {
        grid-template-columns: 70px 1fr 28px;
        gap: 1rem;
        padding: 1.4rem 0.2rem;
    }
    .row-desc-preview { display: none; }
    .row-title { font-size: 0.95rem; }
    .detail-content { padding: 1.5rem 0.2rem 2rem 0.2rem; }
    .carousel-item { width: 75vw; }

    /* Lightbox mobile: stack vertically */
    .lightbox-inner {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        overflow-y: auto;
    }
    .lightbox-info { flex: none; width: 100%; }
    .lightbox-img-wrap { width: 100%; max-height: 50vh; }

    .footer { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 2.5rem 0; }
    .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; }
}

/* ─── LANDSCAPE MOBILE ────────────────── */
@media (max-width: 932px) and (orientation: landscape) {
    :root { --header-height: 68px; }
    .header { min-height: var(--header-height); padding: 0.9rem 0; }
    .works-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .hero { height: clamp(360px, 78svh, 520px); min-height: 360px; padding-bottom: 0; }
    .hero-overlay {
        position: absolute;
        width: 58%;
        padding: 2rem var(--page-padding);
        justify-content: center;
    }
    .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
    .hero-cta { margin-top: 0; }
    .carousel-item { width: 42vw; aspect-ratio: auto; min-height: 200px; }
    #digitalCanvas { opacity: 0.72; }

    /* Lightbox side-by-side optimization for landscape */
    .lightbox-inner {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        max-height: 85vh;
        overflow-y: visible;
    }
    .lightbox-img-wrap {
        flex: 1 1 50%;
        max-height: 80vh;
        width: auto;
    }
    .lightbox-img-wrap img {
        max-height: 80vh;
    }
    .lightbox-info {
        flex: 0 0 200px;
        gap: 0.5rem;
        width: auto;
    }
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
    }
}

/* ─── LANGUAGE SWITCHER ──────────────── */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-switcher .lang-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.35rem 0.65rem;
    border-radius: 15px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
}

.lang-switcher .lang-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}

.lang-switcher .lang-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

/* Sidebar language switcher */
.sidebar-lang-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    border-radius: 12px;
    width: 100%;
    max-width: 240px;
    justify-content: center;
}

.sidebar-lang-switcher .lang-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.4rem 0.75rem;
    border-radius: 15px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.sidebar-lang-switcher .lang-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

@media (max-width: 1024px) {
    .lang-switcher { display: none; }
}

/* ─── ARABIC TEXT SUPPORT ────────────── */
html[data-lang="ar"] [data-i18n^="statement"],
html[data-lang="ar"] .contact-desc,
html[data-lang="ar"] .contact-bbx,
html[data-lang="ar"] .detail-desc,
html[data-lang="ar"] .detail-paragraph {
    direction: rtl;
    text-align: right;
}

/*
 * Arabic text support: layout stays LTR (US-first site).
 * Only the actual Arabic text content is right-aligned.
 */
html[data-lang="ar"] [data-i18n^="statement"],
html[data-lang="ar"] .contact-desc,
html[data-lang="ar"] .contact-bbx,
html[data-lang="ar"] .detail-desc,
html[data-lang="ar"] .detail-paragraph,
html[data-lang="ar"] .row-title,
html[data-lang="ar"] .row-desc-preview,
html[data-lang="ar"] .row-type,
html[data-lang="ar"] .lightbox-info p,
html[data-lang="ar"] .lightbox-title {
    direction: rtl;
    text-align: right;
}

/* Works Pagination */
.works-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
}

.works-pagination .pag-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted, #888);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.works-pagination .pag-btn:hover:not(:disabled) {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.works-pagination .pag-btn.active {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.works-pagination .pag-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   ARCHIVE CARD GRID & PAGINATION SYSTEM
   ========================================================================== */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.archive-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.archive-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.archive-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #0d0d0d;
}

.archive-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.archive-card:hover .archive-card-img {
    transform: scale(1.06);
}

.archive-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #171717 100%);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.archive-card-placeholder .placeholder-text {
    font-family: var(--font-mono, monospace);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.1em;
}

.archive-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white, #fff);
    font-family: var(--font-mono, monospace);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    letter-spacing: 0.05em;
}

.archive-card-meta {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.archive-card-year {
    font-family: var(--font-mono, monospace);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    display: block;
}

.archive-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white, #fff);
    line-height: 1.4;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.archive-card:hover .archive-card-title {
    color: #ffffff;
}

.archive-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted, #888);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Archive Pagination */
.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
}

.archive-pagination .pag-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted, #888);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.archive-pagination .pag-btn:hover:not(:disabled) {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.archive-pagination .pag-btn.active {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.archive-pagination .pag-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   ARCHIVE DETAIL MODAL SYSTEM
   ========================================================================== */
.archive-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.archive-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.archive-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 2100;
}

.archive-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.archive-modal-inner {
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.archive-modal-carousel-section {
    background-color: #090909;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.archive-carousel-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-slide-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.archive-carousel-wrap .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.archive-carousel-wrap .carousel-nav.prev { left: 10px; }
.archive-carousel-wrap .carousel-nav.next { right: 10px; }

.archive-carousel-wrap .carousel-nav:hover:not(:disabled) {
    background: #fff;
    color: #000;
}

.archive-carousel-wrap .carousel-nav:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #ffffff;
    width: 18px;
    border-radius: 4px;
}

.archive-modal-info {
    padding: 45px;
    overflow-y: auto;
    max-height: 90vh;
}

.archive-modal-label {
    font-family: var(--font-display), sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.archive-modal-meta-row {
    display: flex;
    gap: 15px;
    align-items: center;
    font-family: var(--font-mono, monospace);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.archive-modal-year {
    color: #ffffff;
    font-weight: 700;
}

.archive-modal-type {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.72rem;
}

.archive-modal-title {
    font-family: var(--font-display), sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.archive-modal-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
}

.archive-modal-desc .modal-desc-p {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 12px;
}

.archive-modal-desc .modal-para-p {
    margin-bottom: 1rem;
    opacity: 0.85;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .archive-modal-inner {
        grid-template-columns: 1fr;
        max-height: 85vh;
        overflow-y: auto;
    }
    .archive-modal-info {
        padding: 30px;
        max-height: none;
    }
    .archive-modal-carousel-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
    .archive-modal {
        padding: 15px;
    }
    .archive-modal-inner {
        max-height: 90vh;
    }
    .archive-modal-carousel-section {
        padding: 15px;
    }
    .archive-modal-info {
        padding: 20px;
    }
    .archive-modal-title {
        font-size: 1.4rem;
    }
}

/* ─── ARCHIVE CONTROLS & VIEW TOGGLE ─── */
.archive-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.archive-controls .archive-filters {
    margin-bottom: 0 !important;
}

.archive-view-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.25s ease;
    padding: 0.3rem;
}

.toggle-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}

.toggle-btn.active {
    background-color: transparent;
    color: #ffffff;
    border-color: transparent;
}

.toggle-icon {
    stroke: currentColor;
    transition: stroke 0.25s ease;
}

/* ─── ARCHIVE TIMELINE LIST VIEW ─── */
.archive-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.archive-list-row {
    display: grid;
    grid-template-columns: 80px 1.5fr 140px 1.2fr 40px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    background-color: transparent;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.archive-list-row:hover {
    background-color: transparent;
    padding-left: 0.8rem;
}

.archive-list-year {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

.archive-list-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.archive-list-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

.archive-list-row:hover .archive-list-title {
    color: #ffffff;
}

.archive-list-cat-mobile {
    display: none;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.archive-list-badge-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    background-color: transparent;
    padding: 0;
}

/* Achnochromatic Minimal categories (text-only) */

.archive-list-venue {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.archive-list-arrow {
    display: flex;
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.archive-list-row:hover .archive-list-arrow {
    color: #ffffff;
}

/* ─── ACCORDION STYLES ─── */
.archive-list-item {
    display: flex;
    flex-direction: column;
}

.archive-list-item.active .archive-list-row {
    background-color: transparent;
}

.archive-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: transparent;
}

.archive-accordion-inner {
    padding: 1rem 0.5rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.accordion-desc-p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.accordion-para-p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}

/* Accordion Image Grid */
.accordion-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.accordion-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0;
    background: #0d0d0d;
}

.accordion-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.accordion-grid-img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Youtube Embed */
.accordion-youtube-wrapper {
    margin-top: 1.5rem;
}

.youtube-embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.youtube-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Accordion Carousel */
.archive-accordion-carousel-section {
    margin-top: 1.5rem;
    position: relative;
    max-width: 800px;
}

.accordion-carousel-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #050505;
}

.accordion-carousel-track {
    display: flex;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.accordion-carousel-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.accordion-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.accordion-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.accordion-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

.accordion-carousel-nav:hover {
    background: rgba(0,0,0,0.8);
}

.accordion-carousel-nav.prev { left: 10px; }
.accordion-carousel-nav.next { right: 10px; }
.accordion-carousel-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.accordion-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.accordion-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-carousel-dot.active {
    background: #ffffff;
}

/* ─── RESPONSIVE STYLES FOR LIST VIEW ─── */
@media (max-width: 900px) {
    .archive-list-row {
        grid-template-columns: 70px 1.5fr 1fr 40px;
        gap: 1rem;
    }
    .archive-list-cat-badge {
        display: block;
    }
    .archive-list-venue {
        display: none; /* Hide venue on tablets if tight */
    }
}

@media (max-width: 650px) {
    .archive-list-row {
        grid-template-columns: 60px 1fr 30px;
        gap: 0.75rem;
        padding: 1.25rem 0.25rem;
    }
    .archive-list-row:hover {
        padding-left: 0.5rem;
    }
    .archive-list-cat-badge {
        display: none; /* Hide desktop pills on mobile */
    }
    .archive-list-cat-mobile {
        display: inline-block; /* Show simple category below title */
    }
    .archive-list-year {
        font-size: 0.88rem;
    }
    .archive-list-title {
        font-size: 0.95rem;
    }
    .archive-list-arrow {
        font-size: 0.95rem;
    }
}
