* {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

.content__wrapper {
    padding: 40px 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__preview {
    width: 100%;
    border-radius: 20px;
    background: #eee;
}
.other__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 80px 40px;
}
.gallery {
    display: flex;
    flex-direction: column;
}

.gallery h2 {
    margin-bottom: 20px;
}

.gallery__main {
    width: 100%;
}

.gallery__items {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    overflow: hidden;
    overflow-x: auto;
    /* max-width: 692px; */
    width: 100%;
}

.gallery__small {
    height: 120px;
    flex-shrink: 0;
}