/* update-style.css */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.video {
    flex: 1 1 400px;
    text-align: center;
}

.video iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.video p {
    margin-top: 10px;
    font-weight: bold;
}

.updates-list {
    list-style: none;
    padding: 0;
}

.updates-list li {
    margin-bottom: 15px;
    background-color: #f5f5f5;
    padding: 15px;
    border-left: 5px solid #2563eb;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .video iframe {
        height: 200px;
    }
}
