/* Toonz Global Stories - Page 5 Design */

.toonz-global-stories-wrapper {
    width: 100%;
    padding: 60px 0;
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
    overflow: hidden;
}

.gs-container {
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    gap: 0;
}

/* Left Section */
.gs-left {
    flex: 0 0 30%;
    z-index: 10;
}

.gs-header {
    margin-bottom: 50px;
}

.gs-title-top {
    font-size: 110px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    color: #111;
    margin: 0;
    text-transform: uppercase;
}

.gs-title-mid,
.gs-title-bot {
    font-size: 56px;
    font-weight: 200;
    line-height: 1.1;
    margin: 0;
    color: #333;
}

.gs-title-dot {
    color: #E87722;
}

.gs-story-list {
    margin-bottom: 50px;
}

.gs-story-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

.gs-story-thumb {
    flex: 0 0 160px;
    /* Slightly larger thumbnail like design */
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gs-story-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gs-story-icon {
    flex: 0 0 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-story-icon img {
    width: 100%;
    height: auto;
}

.gs-story-line {
    width: 2px;
    height: 70px;
    background: #E87722;
    opacity: 0.8;
}

.gs-story-h {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: #111;
    text-transform: uppercase;
}

.gs-story-d {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    max-width: 260px;
}

/* Center: Globe */
.gs-center {
    flex: 0 0 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gs-globe-container {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.gs-globe-svg-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.gs-globe-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(232, 119, 34, 0.15));
}

.gs-globe-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.15) 0%, transparent 70%);
    z-index: 1;
}

/* 3 Orbit Lines */
.gs-orbit-line {
    position: absolute;
    border: 2px dashed rgba(232, 119, 34, 0.4);
    /* Thicker and more opaque */
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(232, 119, 34, 0.3));
}

.gs-orbit-dot {
    position: absolute;
    width: 10px;
    /* Bigger dots */
    height: 10px;
    background: #E87722;
    border-radius: 50%;
    box-shadow: 0 0 15px #E87722, 0 0 25px #E87722, 0 0 40px rgba(232, 119, 34, 0.8);
    /* Projecting glow */
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}

.gs-orbit-1 {
    width: 140%;
    height: 140%;
    transform: rotateX(75deg);
}

.gs-orbit-2 {
    width: 120%;
    height: 120%;
    transform: rotateX(65deg) rotateY(20deg);
}

.gs-orbit-3 {
    width: 160%;
    height: 160%;
    transform: rotateX(80deg) rotateY(-20deg);
}

/* Right Section: Large Under-Globe Visual */
.gs-right {
    flex: 0 0 30%;
    position: relative;
    z-index: 1;
    /* Lower to ensure back */

    /* Overlap more */
}

.gs-main-visual-wrap {
    width: 120%;
    /* Make very big as requested */
    max-width: 1200px;
    height: 700px;
    border-radius: 60px;

    position: relative;
}

.gs-main-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease, filter 0.8s ease;
}

/* Hover Effects */
.gs-main-visual-wrap:hover {
    transform: scale(1.02) translateY(-10px);
}

.gs-main-visual-wrap:hover .gs-main-visual {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* CTA */
.gs-cta-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #E87722;
    font-weight: 600;
    font-size: 14px;
}

.gs-cta-arrow {
    transition: transform 0.4s ease;
}

.gs-cta-link:hover .gs-cta-arrow {
    transform: translateX(10px);
}

.gs-cta-underline {
    width: 200px;
    height: 1px;
    background: rgba(232, 119, 34, 0.3);
    margin-top: 5px;
}