/**
 * Aktivní projekty - stránkové styly
 */

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.project-item {
    flex: 1 1 280px;
    max-width: 320px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-item img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .projects-grid {
        gap: 25px;
    }
    
    .project-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
