.thumb-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 960 / 827;
    overflow: hidden;
    background: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.thumb-slider-container .slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.thumb-slider-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.thumb-slider-container .slide.active {
    opacity: 1;
    pointer-events: auto;
}

.thumb-slider-container .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-slider-container .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
}

.thumb-slider-container .content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    color: white;
}

.thumb-slider-container .top-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    max-width: 600px;
}

.thumb-slider-container .top-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 500px;
}

.thumb-slider-container .bottom-content {
    max-width: 600px;
}

.thumb-slider-container .project-name {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.thumb-slider-container .project-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.thumb-slider-container .project-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    opacity: 0.9;
    flex-wrap: wrap;
}

.thumb-slider-container .project-authors {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thumb-slider-container .project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thumb-slider-container .location-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.thumb-slider-container .nav-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 99;
}

.thumb-slider-container .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb-slider-container .nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.thumb-slider-container .nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

.thumb-slider-container .dot-indicator {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.thumb-slider-container .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb-slider-container .dot.active {
    background: white;
    width: 32px;
    border-radius: 4px;
}

.thumb-slider-container .thumbnail-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 100;
}



.thumb-slider-container .thumbnail {
    width: 130px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid white;
    transition: all 0.3s ease;
    position: relative;
	box-shadow: 0px 3px 10px 0px rgba(245, 135, 39, 0.28);

}

.thumb-slider-container .thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.thumb-slider-container .thumbnail.active {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.thumb-slider-container .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .thumb-slider-container .content-wrapper {
        padding: 2rem;
    }

    .thumb-slider-container .nav-controls {
        top: 2rem;
        right: 2rem;
    }

    .thumb-slider-container .thumbnail-nav {
        bottom: 2rem;
        right: 2rem;
        gap: 0.75rem;
    }

    .thumb-slider-container .thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .thumb-slider-container .content-wrapper {
        padding: 1.5rem;
    }

    .thumb-slider-container .nav-controls {
        top: 1.5rem;
        right: 1.5rem;
        gap: 0.75rem;
    }

    .thumb-slider-container .nav-btn {
        width: 40px;
        height: 40px;
    }

    .thumb-slider-container .nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .thumb-slider-container .thumbnail-nav {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.5rem;
        flex-wrap: wrap;
        /*max-width: 200px;*/
		max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .thumb-slider-container .thumbnail {
        width: 60px;
        height: 60px;
    }

    .thumb-slider-container .slide-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    }
}

@media (max-width: 480px) {
    .thumb-slider-container .content-wrapper {
        padding: 1rem;
    }

    .thumb-slider-container .nav-controls {
        top: 1rem;
        right: 1rem;
    }

    .thumb-slider-container .thumbnail-nav {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        justify-content: flex-end;
    }

    .thumb-slider-container .thumbnail {
        width: 50px;
        height: 50px;
    }
}