.video-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.video-item {
    flex: 1 1 500px;
    max-width: 600px;
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .video-container {
        display: block;
    }

    .video-item {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.storm-checklist {
    width: 100%;
    border-collapse: collapse;
    background-color: rgb(250, 226, 250);
    table-layout: fixed;
}

.storm-checklist th,
.storm-checklist td {
    border: 1px solid #000;
    padding: 8px;
    vertical-align: top;
}

.storm-checklist tr:first-child td {
    font-weight: bold;
    text-align: center;
}

.storm-checklist td:first-child {
    width: 27%;
    text-align: center;
}

.storm-checklist td:nth-child(2) {
    width: 73%;
}


/* mobiteli */
@media (max-width: 768px) {

    .storm-checklist {
        font-size: 14px;
        table-layout: auto;
    }

    .storm-checklist td:first-child,
    .storm-checklist td:nth-child(2) {
        width: auto;
    }

    .storm-checklist td {
        padding: 6px;
    }
}