/* 
 * Gaming Studios & Brands - Diagonal Split Layout
 */

.toonz-gaming-studios-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
}

/* --- Full Background Image --- */
.gsb-bg-image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gsb-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

/* --- Overlay Sides --- */
.gsb-left-col {
    position: relative;
    z-index: 10;
    flex: 0 0 52%;

    padding: 80px 5% 120px 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Content Styling --- */
.gsb-content {
    max-width: 650px;
}


.gsb-overline {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}

.gsb-title {
    font-size: 85px;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.gsb-title span.accent {
    color: #F87510;
    display: block;
}

.gsb-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 500px;
    margin-bottom: 60px;
}

/* --- Feature List --- */
.gsb-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gsb-feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.gsb-feature-icon-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 100px;
}

.gsb-feature-line {
    width: 30px;
    height: 1px;
    background: #F87510;
}

.gsb-feature-icon {
    font-size: 24px;
    color: #F87510;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gsb-feature-icon img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.gsb-feature-content {
    flex: 1;
}

.gsb-feature-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.gsb-feature-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    max-width: 320px;
}

/* --- Responsive --- */
@media (max-width: 1400px) {
    .gsb-title {
        font-size: 65px;
    }

    .gsb-left-col {
        flex: 0 0 65%;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    }
}

@media (max-width: 1024px) {
    .toonz-gaming-studios-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .gsb-left-col {
        flex: 1;
        width: 100%;
        clip-path: none;
        padding: 80px 30px;
    }

    .gsb-right-col {
        position: relative;
        width: 100%;
        height: 400px;
        order: -1;
    }

    .gsb-content {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gsb-title {
        font-size: 42px;
    }
}