.watch {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
}

.watch-subtitle {
    color: #6F6E6C;
    text-align: start;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.4rem;
}

.watch-images {
    display: flex;
    gap: 1rem;
}

.watch-images-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.watch-images img {
    object-fit: cover;
}

.watch-images-column img {
    object-fit: cover;
}

@media (max-width: 1020px) {
    .watch {
        align-items: center;
    }

    .watch h2 {
        text-align: center;
    }

    .watch p {
        text-align: center;
    }

    .watch-images {
        flex-direction: column;
        width: 100%;
    }

    .watch-images-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100%;
        flex: 1;
    }

    .watch-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 700px) {
    .watch {
        width: 100%;
        align-items: center;
    }

    .watch-images-column {
        display: none;
    }

    .watch-images img {
        width: 100%;
        object-fit: fill;
    }
}