/**
 * Screenshot Block Styles
 */

.screenshot-section {
    padding: 60px 0;
}

.screenshot-section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.screenshot-section .section-description {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.screenshots-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    gap: 20px;
}

/* Custom scrollbar styling */
.screenshots-container::-webkit-scrollbar {
    height: 8px;
}

.screenshots-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.screenshots-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.screenshots-container::-webkit-scrollbar-thumb:hover {
    background: #4c6ef5;
}

.screenshot {
    flex: 0 0 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: translateY(-5px);
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.screenshot-caption {
    padding: 10px;
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .screenshot-section {
        padding: 40px 0;
    }
    
    .screenshot {
        flex: 0 0 180px;
    }
}

@media (max-width: 480px) {
    .screenshot {
        flex: 0 0 160px;
    }
    
    .screenshot-section .section-title {
        font-size: 1.5rem;
    }
}
