:root {
    --color-primary: #937107; /* GOLD/BRONZE */
    --color-text-body: #222222;
    --color-bg: #ffffff;
    
    --font-body: 'Noto Serif', serif;
    --font-heading: 'Playfair Display', serif;
    --font-ui: 'Roboto', sans-serif;

    --width-content: 660px;
    --spacing-text: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--color-bg);
    color: var(--color-text-body);
    font-family: var(--font-body);
    font-size: 18px; 
    line-height: 1.8;
    overflow-x: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    margin-top: 45px; 
}

/* --- STICKY HEADER --- */
.sp-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    font-family: Arial, sans-serif;
}

.left-group { display: flex; align-items: center; height: 100%; }

.sp-back-to-k14 {
    display: flex; align-items: center; justify-content: center;
    width: 45px; height: 45px;
    background-color: #007f74; color: white;
    text-decoration: none; font-size: 18px;
    transition: background 0.3s;
}
.sp-back-to-k14:hover { background-color: #00665d; }

.sp-mag-logo { margin-left: 15px; display: flex; align-items: center; text-decoration: none; }
.sp-mag-logo img { height: 24px; width: auto; display: block; }

.center-logo {
    position: absolute; left: 50%; transform: translateX(-50%);
    pointer-events: none; user-select: none;
    display: flex; align-items: center; justify-content: center;
}
.center-logo img { height: 26px; width: auto; display: block; }

.right-group { display: flex; align-items: center; padding-right: 15px; }

.fb-custom-btn {
    display: flex; align-items: center; gap: 6px;
    color: white; text-decoration: none;
    font-size: 13px; font-family: Helvetica, Arial, sans-serif;
    font-weight: bold; cursor: pointer;
    opacity: 0.9; transition: opacity 0.2s;
}
.fb-custom-btn:hover { opacity: 1; text-decoration: underline; }
.fb-custom-btn i { font-size: 15px; }

@media (max-width: 600px) {
    .center-logo { display: none; }
}

/* --- TYPOGRAPHY & LAYOUT --- */
.title-wrapper { padding: 80px 20px 60px 20px; text-align: center; max-width: 1100px; margin: 0 auto; }

.main-title {
    font-family: var(--font-heading); 
    font-size: 2.8rem;
    font-weight: 900;
    color: #111; line-height: 1.3; margin-bottom: 30px;
}

.highlight-title { 
    color: var(--color-primary); display: block; 
    font-size: 20px;
    font-weight: 700; margin-bottom: 15px; font-style: normal;
    font-family: var(--font-body);
}

.article-body { width: 100%; max-width: var(--width-content); margin: 0 auto; padding: 0 15px; position: relative; z-index: 1; }

p { margin-bottom: var(--spacing-text); text-align: justify; }
.sapo { font-weight: 700; font-size: 22px; margin-bottom: 40px; }
.dropcap {
    float: left; font-family: var(--font-heading); font-size: 5.8rem;
    line-height: 0.8; font-weight: 900; color: var(--color-primary);
    margin-right: 16px; margin-top: 5px;
}
i { font-style: italic; } 
strong { font-weight: bold; }

/* --- MEDIA HELPERS --- */
.media-container {
    width: 100%; max-width: 660px; 
    margin: 0 auto var(--spacing-text) auto; 
    position: relative; display: flex; justify-content: center;
    flex-direction: column; 
}
.media-img { width: 100%; height: auto; display: block; object-fit: cover; }

.caption {
    font-family: var(--font-ui); font-size: 14px; color: #777;
    font-style: italic; text-align: center; 
    margin-top: 10px; 
    display: block;
}

.max-width-media {
    width: 100vw; 
    position: relative; 
    left: 50%; 
    margin-left: -50vw;
    display: flex; 
    justify-content: center;
    margin-bottom: var(--spacing-text);
}
.max-width-media img {
    width: 100%; 
    max-width: 1300px;
    height: auto; 
    display: block;
}

.full-width-media {
    width: 100vw; position: relative; left: 50%; margin-left: -50vw;
    margin-bottom: var(--spacing-text);
}

/* --- SLIDER 3D --- */
.slider-wrapper {
    width: 100vw; position: relative; left: 50%; margin-left: -50vw;
    margin-bottom: var(--spacing-text);
    overflow: hidden;
    background: transparent; 
    padding: 40px 0; 
}
.slider-container { display: flex; width: 100%; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }
.slider-item {
    width: 60vw; flex-shrink: 0; margin: 0 10px; position: relative;
    transition: all 0.5s ease; opacity: 0.5; transform: scale(0.85); 
    border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); overflow: hidden;
    max-width: 640px; 
}
@media (max-width: 768px) { .slider-item { width: 85vw; } }
.slider-item.active { opacity: 1; transform: scale(1); box-shadow: 0 20px 50px rgba(0,0,0,0.3); z-index: 10; }
.slider-item img { width: 100%; height: 100%; display: block; object-fit: cover; }
.slider-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px;
    background: rgba(255,255,255,0.8); color: #333; border: none; border-radius: 50%; cursor: pointer;
    z-index: 20; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: background 0.3s;
}
.slider-nav-btn:hover { background: #fff; color: var(--color-primary); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; cursor: pointer; transition: 0.3s; }
.slider-dot.active { background: var(--color-primary); transform: scale(1.2); }

/* --- TIMELINE STATS --- */
.timeline-wrapper {
    background: transparent;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    padding: 60px 0; margin: 60px 0; 
    width: 100vw; position: relative; left: 50%; margin-left: -50vw;
}
.timeline-container { 
    max-width: 1300px;
    margin: 0 auto; padding: 0 20px; position: relative; 
}

.stat-big { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; color: var(--color-primary); line-height: 1; display: block; }
.stat-label { font-family: var(--font-ui); font-size: 14px; font-weight: 600; text-transform: uppercase; color: #666; letter-spacing: 1px; margin-top: 5px; }

/* Mobile / Vertical Layout (< 1300px) */
.timeline-line {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #ddd; transform: translateX(-50%);
}
.timeline-item {
    position: relative; width: 50%; padding: 20px 40px; box-sizing: border-box;
    opacity: 0; transform: translateY(50px);
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-dot {
    position: absolute; top: 25px; width: 20px; height: 20px; border-radius: 50%;
    background: #fff; border: 4px solid var(--color-primary); z-index: 2;
}
.timeline-item.left .timeline-dot { right: -10px; }
.timeline-item.right .timeline-dot { left: -10px; }

/* Desktop / Horizontal Layout (>= 1300px) */
@media (min-width: 1300px) {
    .timeline-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .timeline-line {
        width: 100%; height: 2px; 
        top: 35px;
        left: 0; right: 0; bottom: auto;
        transform: none;
    }
    .timeline-item {
        width: auto; flex: 1;
        left: auto !important; right: auto !important;
        text-align: center !important;
        padding: 60px 10px 0 10px;
        transform: translateY(30px);
    }
    .timeline-dot {
        top: 25px; left: 50% !important; right: auto !important;
        transform: translateX(-50%);
    }
}

/* --- DUAL IMAGES --- */
.dual-img-breakout {
    width: 100vw; position: relative; left: 50%; margin-left: -50vw;
    display: flex; justify-content: center; margin-bottom: var(--spacing-text); padding: 0 10px; 
}
.dual-img-grid { display: flex; gap: 10px; width: 100%; max-width: 1100px; justify-content: center; }
.dual-img-item { flex: 1; position: relative; background: #333; cursor: zoom-in; transition: transform 0.2s ease; aspect-ratio: auto; height: auto; }
.dual-img-item:hover { transform: scale(1.01); }
.dual-img-item img { width: 100%; height: auto; object-fit: cover; display: block; }
@media (max-width: 600px) {
    .dual-img-grid { flex-direction: column; align-items: center; }
    .dual-img-item { width: 100%; max-width: 640px; }
}

/* --- BOX & CREDITS --- */
.credit-wrapper-soha {
    max-width: 660px; margin: 60px auto 40px auto;
    border-left: 3px solid var(--color-primary); padding: 20px;
    font-family: var(--font-ui); background: #f9f9f9; 
}
.credit-row { display: grid; grid-template-columns: 120px 1fr; margin-bottom: 8px; align-items: baseline; font-size: 16px; }
.credit-row:last-child { margin-bottom: 0; }
.credit-label { font-weight: 700; text-transform: uppercase; color: #666; font-size: 14px; }
.credit-value { color: #222; font-weight: 500; }

.quote-box-wrap {
    margin: 30px 0; padding: 25px; background: #fffcf5; 
    border-left: 4px solid var(--color-primary);
}
.quote-box-wrap p { margin-bottom: 15px; }
.quote-box-wrap p:last-child { margin-bottom: 0; }

/* Lightbox */
.lightbox-modal {
    display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease;
}
.lightbox-modal.active { display: flex; opacity: 1; }
.lightbox-content { max-width: 95%; max-height: 95%; object-fit: contain; box-shadow: 0 0 20px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.3s ease; }
.lightbox-modal.active .lightbox-content { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; z-index: 10000; }

.cms-cover-wrapper { margin-top: 0; width: 100%; height: auto; min-height: 100vh; background: #222; position: relative; }