.ca-videos-wrapper {
    width: 100%;
    margin: 0 auto;
}

.ca-videos-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.ca-videos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ca-videos-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0a3a1f;
    font-weight: bold;
}

.ca-videos-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.ca-video-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
 
}

.ca-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 200, 110, 0.2);
}

.ca-video-item video {
    width: 100%;
       height: 300px;
    display: block;
    background: #000;

}

/* Responsywność - Mobile */
@media (max-width: 768px) {
    .ca-videos-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .ca-videos-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    
    .ca-videos-section {
        padding: 40px 0;
    }
    .ca-video-item video {
    width: 100%;
       height: auto;
    display: block;
    background: #000;
    }
}

