.switcherGallery {
    display: grid;
}

.switcherGallery__image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.78;
    cursor: pointer;
}

.switcherGallery__description {
    display: none;
}

.main-image-description {
    font-style: normal;
    margin-top: 10px;
}

.switcherBigImage .main-media {
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease-in-out;
    display: block;
}

.switcherBigImage .main-media.hide {
    opacity: 0;
}


.switcherBigImage .temp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
