/* GSAP Sticky Title Widget Styles */
.gstw-wrapper {
    --primary-color: #FFD194;
    --secondary-color: #111111;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-color);
    color: var(--secondary-color);
    position: relative;
    overflow-x: hidden;
}
/*.gstw-section-title{
    margin-bottom: 400px;
}*/
/* Progress Bar */
.gstw-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 2001;
    background: rgba(17, 17, 17, 0.1);
}

.gstw-progress-fill {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
}

/* Title - Fixed at top, doesn't move vertically */
.gstw-section-title {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2vw;
    font-weight: 900;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    opacity: 1;
    transform: translateY(0);
}

.gstw-title-left, .gstw-title-right {
    display: inline-block;
    position: relative;
}

/* Content Area */
.gstw-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    z-index: 100;
}

/* Articles Grid */
.gstw-articles-grid {
    display: grid;
    max-width: 600px;
    gap: 30px;
    margin: 0 auto;
}

.gstw-article-card {
    background: rgba(255, 209, 148, 0.7);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
}


.gstw-article-card:hover {
    box-shadow: 8px 8px 0 var(--secondary-color);
}

.gstw-article-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
    opacity: 0.7;
}

.gstw-article-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.gstw-article-description {
    color: var(--secondary-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gstw-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--secondary-color);
    opacity: 0.6;
    font-size: 14px;
}

/* Custom Scrollbar */
.gstw-wrapper::-webkit-scrollbar {
    width: 8px;
}

.gstw-wrapper::-webkit-scrollbar-track {
    background: rgba(17, 17, 17, 0.1);
}

.gstw-wrapper::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .gstw-section-title {
        font-size: 3vw;
        gap: 15px;
    }
    
    .gstw-wrapper {
        min-height: 150vh;
        padding-top: 150px;
    }
}

@media (max-width: 768px) {
    .gstw-section-title {
        font-size: 4vw;
        top: 30px;
        gap: 10px;
    }
    
    .gstw-title-left, .gstw-title-right {
        white-space: nowrap;
    }
    
    .gstw-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gstw-article-card {
        padding: 20px;
    }
    
    .gstw-article-title {
        font-size: 20px;
    }
    
    .gstw-wrapper {
        min-height: 120vh;
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .gstw-section-title {
        font-size: 5vw;
        gap: 8px;
        letter-spacing: 1px;
    }
    
    .gstw-articles-grid {
        gap: 15px;
    }
}