/* Real Results Section */
.results-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.results-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.result-card {
    min-width: 260px;
    /* Smaller width */
    width: 260px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.result-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.result-card:hover .result-image-container img {
    transform: scale(1.05);
}

.result-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    padding: 1rem 0.5rem 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.result-info {
    padding: 1.5rem;
    text-align: center;
}

.result-info h3 {
    color: var(--color-black);
    font-weight: 500;
}

/* Results Responsive */
@media (max-width: 640px) {
    .result-card {
        min-width: 220px;
        width: 220px;
    }

    .result-info {
        padding: 1rem;
    }

    .result-info h3 {
        font-size: 0.95rem;
    }

    .result-label {
        font-size: 0.65rem;
        padding: 0.75rem 0.4rem 0.4rem;
    }

    .results-track {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .result-card {
        min-width: 200px;
        width: 200px;
    }

    .results-track {
        gap: 1rem;
    }
}