/* ============================================================
   GLOBAL 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%;
    box-sizing: border-box;
    display: block;
    padding-top: 40px;
}

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

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

.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);
}

/* ============================================================
   ART TEXT BLOCK — UPDATED POSITION + TYPOGRAPHY
   ============================================================ */

.art-text-block {
    max-width: 650px;

    /* Move UP (was 180px) */
    margin-top: 100px;

    /* Move LEFT (was centered with auto) */
    margin-left: 40px;

    margin-bottom: 100px;
    padding-right: 20px;

    /* Body text styling */
    color: #333;          /* dark grey */
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    font-weight: 400;     /* slightly thicker */
}

/* ============================================================
   HEADER — BLACK + THINNER
   ============================================================ */

.art-header {
    font-size: 30px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;

    color: #000;          /* black */
    font-weight: 400;     /* thinner */
}

/* ============================================================
   PROJECT ITEMS
   ============================================================ */

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

.art-project h3 {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;     /* slightly thinner */
    color: #111;
}

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