/* Global Storytelling Widget Styles */
.gs-wrapper {
    display: flex;
    padding: 60px 5%;
    gap: 80px;
    background: transparent;
    /* Editorial neutral background */
    min-height: 100vh;
    align-items: center;
    position: relative;
    /* Anchor for absolute scroll hint */
}

/* LEFT CONTENT (Sticky) */
.gs-left {
    flex: 0 0 520px;
    position: relative;
}

.gs-content-sticky {
    position: relative;
    padding-bottom: 40px;
}

.gs-title {
    margin-bottom: 25px;
    line-height: 0.9;
}

.gs-title-bold {
    font-family: sans-serif;
    font-weight: 900;
    font-size: 64px;
    color: #000;
    letter-spacing: -2px;
}

.gs-title-light {
    font-family: sans-serif;
    font-weight: 300;
    font-size: 64px;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gs-accent-line {
    width: 60px;
    height: 2px;
    background: #E87722;
    margin-bottom: 40px;
}

.gs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.gs-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gs-list-bullet {
    color: #E87722;
    font-size: 20px;
}

.gs-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gs-cta-arrow {
    color: #E87722;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.gs-cta:hover .gs-cta-arrow {
    transform: translateX(10px);
}

.gs-scroll-hint {
    position: absolute;
    bottom: -181px;
    left: 5%;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    z-index: 20;
}

.gs-scroll-icon {
    margin-top: 10px;
    font-size: 18px;
}

/* RIGHT GRID */
.gs-right {
    flex: 1;
    position: relative;
}

.gs-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 60px);
    gap: 15px;
}

.gs-grid-item {
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gs-img-zoom-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.gs-grid-item:hover .gs-img-zoom-wrap {
    transform: scale(1.08);
}

.gs-img-parallax {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
}

/* ITEM PLACEMENT (Compact Asymmetrical) */
.gs-item-1 {
    grid-column: 1 / 7;
    grid-row: 1 / 9;
}

.gs-item-2 {
    grid-column: 7 / 13;
    grid-row: 1 / 5;
}

.gs-item-3 {
    grid-column: 7 / 13;
    grid-row: 5 / 9;
}

.gs-item-4 {
    grid-column: 1 / 6;
    grid-row: 9 / 13;
}

.gs-item-5 {
    grid-column: 6 / 13;
    grid-row: 9 / 13;
}

/* BADGE */
.gs-badge-wrap {
    position: absolute;
    top: -40px;
    right: -20px;
    z-index: 20;
    border: 10px solid #F1EBE5;
    border-radius: 100%;
}

.gs-badge {
    width: 100px;
    /* Slightly larger for better impact */
    height: 100px;
    background: #F1EBE5;
    border: 3px dotted rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rot 20s linear infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.gs-badge-inner {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-badge-star {
    color: #E87722;
    font-size: 24px;
}

@keyframes rot {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .gs-wrapper {
        flex-direction: column;
        padding: 60px 5%;
    }

    .gs-left {
        flex: none;
    }

    .gs-content-sticky {
        position: static;
    }

    .gs-grid {
        grid-template-rows: repeat(10, 50px);
    }
}

@media (max-width: 768px) {

    .gs-title-bold,
    .gs-title-light {
        font-size: 48px;
    }
}