/* Global Storytelling Widget Styles */
.gs-wrapper {
    display: flex;
    padding: 60px 5%;
    gap: 80px;
    background: transparent;
    min-height: 100vh;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

.gs-wrapper *, 
.gs-wrapper *::before, 
.gs-wrapper *::after {
    box-sizing: border-box;
}

/* 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;
    flex-shrink: 0;
}

.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: 0;
    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;
    width: 100%;
}

.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;
    height: 100px;
    background: #F1EBE5;
    border: 3px dotted rgba(0, 0, 0, 0.05);
    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 FIXES */
@media (max-width: 1024px) {
    .gs-wrapper {
        flex-direction: column !important;
        padding: 50px 20px !important;
        gap: 40px !important;
    }

    .gs-left {
        flex: none !important;
        width: 100% !important;
    }

    .gs-content-sticky {
        position: static !important;
        padding-bottom: 0 !important;
    }

    .gs-scroll-hint {
        display: none !important;
    }

    /* Reset Grid into a clean single-column vertical stack */
    .gs-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 20px !important;
    }

    .gs-grid-item {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100% !important;
        height: 320px !important;
    }

    .gs-badge-wrap {
        top: -30px !important;
        right: 10px !important;
        border-width: 6px !important;
        transform: scale(0.8) !important;
    }
}

@media (max-width: 767px) {
    .gs-wrapper {
        padding: 30px 15px !important;
    }

    .gs-title-bold,
    .gs-title-light {
        font-size: 38px !important;
        letter-spacing: -1px !important;
    }

    .gs-list li {
        font-size: 15px !important;
    }

    .gs-grid-item {
        height: 280px !important;
    }
}