.stmd-collection-block {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    min-width: 0;
}

#stmd-collection-slider {
    min-height: 343px;
    min-width: 0;
    overflow: hidden;
}

.stmd-collection {
    border-radius: 24px;
    background-color: #FBFBFB;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    overflow: hidden;
    transition-duration: 0.3s;

    height: 100%;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.stmd-collection.stmd-hover-shadow:hover .stmd-collection__name {
    color: var(--red-accent-color-2);
}

.stmd-collection ol,
.stmd-collection ul {
    margin-top: 24px;
}

.stmd-collection p {
    font-family: "Verdana", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    color: #444444;
    margin: 16px 0 0;
}

.stmd-collection .small-title {
    font-size: 12px;
    vertical-align: middle;
    margin-top: 24px;
    opacity: 0.75;
}

.stmd-collection:hover,
.stmd-collection:focus {
    color: inherit;
    text-decoration: none;
}

.stmd-collection__img {
    max-width: 385px;
    width: 100%;
    height: 385px;

    border-radius: 24px;
    overflow: hidden;

    flex-shrink: 0;
    flex-basis: 385px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 0;
}

.stmd-collection__gallery {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: inherit;
    overflow: hidden;
}

.stmd-collection__gallery.swiper {
    display: block;
}

.stmd-collection__gallery.swiper .swiper-wrapper,
.stmd-collection__gallery.swiper .swiper-slide {
    height: 100%;
    min-width: 0;
}

.stmd-collection__gallery.swiper .swiper-wrapper {
    align-items: stretch;
    min-height: 0;
}

.stmd-collection__gallery.swiper .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.stmd-collection__img img {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition-duration: 0.3s;
}

.stmd-collection__gallery-pagination.swiper-pagination-bullets {
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    pointer-events: auto;
}

.stmd-collection__gallery-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background-color: #EAEAEA;
    opacity: 1;
}

.stmd-collection__gallery-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #444444;
}

.stmd-collection__data {
    padding: 30px;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
    min-width: 0;
}

.stmd-collection__data-text li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 10px;
}

.stmd-collection__data-text ul:last-child {
    margin-bottom: 0;
}

.stmd-collection__data-text li:last-child {
    margin-bottom: 0;
}

.stmd-collection__data-text li:before {
    content: "\25CF" !important;
    color: #383838;
    left: 6px;
}

.stmd-collection__name {
    font-family: 'Golos Text', sans-serif;
    line-height: 100%;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0;

    color: #111;

    margin-bottom: 0;
}

#stmd-collection-slider > .stmd-collection-block {
    align-items: stretch;
    min-height: inherit;
}

#stmd-collection-slider > .stmd-collection-block > .swiper-slide {
    height: auto;
    min-width: 0;
}

@media (max-width: 1450px) {
    .stmd-collection__img {
        max-width: 385px;
        flex-basis: 45%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}
@media (max-width: 1200px) {
    .stmd-collection-block {
        gap: 20px;
    }
    .stmd-collection__data {
        padding: 10px 10px 14px;
    }
}

@media (max-width: 992px) {
    .stmd-collection {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .stmd-collection__img {
        max-width: 100%;
        flex-basis: auto;
        height: auto;
    }
}

@media (max-width: 576px) {
    .stmd-collection__img {
        max-width: 279px;
    }
}

@media (max-width: 768px) {
    .stmd-collection-block {
        display: flex !important;
        gap: 0 !important;
    }
}

@media (max-width: 576px) {
    .stmd-collection__img {
        flex-shrink: 0;
        max-width: 100%;
        max-height: 279px;
        width: 100%;
    }
}

@media (max-width: 460px) {
    #stmd-collection-slider {
        min-height: unset;
    }
}



