/* ============================================================
   GLOBAL 20/80 LAYOUT
   ============================================================ */

.global-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.global-sidebar {
    width: 20%;
    min-width: 180px;
    padding: 60px 32px 40px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-sidebar-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 40px;
}

.global-sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.global-sidebar-menu li {
    margin-bottom: 12px;
}

.global-sidebar-menu a {
    text-decoration: none;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.global-sidebar-menu a.is-active {
    color: #111;
    font-weight: 600;
}

/* ============================================================
   RIGHT CONTENT AREA
   ============================================================ */

.global-content {
    width: 80%;
    display: flex;
    justify-content: center;
    padding-top: 60px;
    box-sizing: border-box;
}

/* ============================================================
   SLIDESHOW AREA
   ============================================================ */

.wg-slideshow-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.wg-slideshow {
    width: 70%;
    max-width: 900px;
    height: calc((100vh - 60px) * 0.65);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.wg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wg-slide.is-active {
    opacity: 1;
}

.wg-slide img,
.wg-slide video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* ============================================================
   NAVIGATION ZONES
   ============================================================ */

.wg-nav-zone {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 20;
}

.wg-prev-zone { left: 0; }
.wg-next-zone { right: 0; }

.wg-prev-zone:hover,
.wg-next-zone:hover {
    cursor: none;
}

.wg-prev-zone:hover::after {
    content: "";
    position: fixed;
    width: 11px;
    height: 11px;
    border-left: 1.4px solid #999;
    border-bottom: 1.4px solid #999;
    transform: translate(-14px, -50%) rotate(45deg);
    pointer-events: none;
    top: var(--mouse-y);
    left: var(--mouse-x);
}

.wg-next-zone:hover::after {
    content: "";
    position: fixed;
    width: 11px;
    height: 11px;
    border-right: 1.4px solid #999;
    border-bottom: 1.4px solid #999;
    transform: translate(14px, -50%) rotate(-45deg);
    pointer-events: none;
    top: var(--mouse-y);
    left: var(--mouse-x);
}

.global-sidebar {
    cursor: default;
}

/* ============================================================
   ART PAGE TEXT BLOCK
   ============================================================ */

.art-text-block {
    max-width: 650px;
    margin: 140px auto 100px;
    padding: 0 20px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

.art-header {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.art-project {
    margin-bottom: 50px;
}

.art-project h3 {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.art-project a {
    font-size: 12px;
    text-decoration: underline;
    color: #111;
    letter-spacing: 0.05em;
}