@layer components-entities {
    .other-product-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        padding: 20px;
        transition: background 0.4s;
        border-radius: var(--br4);
        background-color: var(--tertiary-blue)
    }

    .other-product-card__text-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
        height: 100%
    }

    .other-product-card__sticker-wrapper {
        display: flex;
        flex-wrap: wrap;
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .other-product-card__image-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 286px;
        margin-top: 94px
    }

    @media screen and (max-width: 767px) {
        .other-product-card__image-wrapper {
            min-height: 286px;
            margin-top: 80px
        }
    }.other-product-card__image {
         max-width: 404px;
         padding-inline: 36px
     }

    .other-product-card__icon {
        width: 24px;
        height: 24px;
        margin-top: auto;
        transition: opacity 0.4s;
        opacity: 0
    }

    @media screen and (max-width: 1279px) {
        .other-product-card__icon {
            opacity: 1
        }
    }.other-product-card:hover {
         background-color: var(--gray)
     }

    .other-product-card:hover .other-product-card__icon {
        opacity: 1
    }

    .other-product-card_gray {
        background-color: var(--gray)
    }

    .other-product-card_gray:hover {
        background-color: var(--tertiary-blue)
    }

    .other-product-card_wide-img {
        min-height: 510px
    }

    .other-product-card_wide-img .other-product-card__text-wrapper {
        padding: 20px
    }

    .other-product-card_wide-img .other-product-card__image-wrapper {
        display: block;
        min-height: -moz-fit-content;
        min-height: fit-content;
        margin-top: 0
    }

    .other-product-card_wide-img .other-product-card__image {
        max-width: 100%;
        padding-inline: 0
    }

    @media screen and (max-width: 1279px) {
        .other-product-card_wide-img {
            min-height: 500px
        }
    }@media screen and (max-width: 1023px) {
    .other-product-card_wide-img {
        min-height: 460px
    }
}@media screen and (max-width: 767px) {
    .other-product-card_wide-img {
        min-height: 386px
    }
}@media screen and (max-width: 767px) {
    .other-product-card_card-small .other-product-card__image-wrapper {
        min-height: 218px;
        margin-top: 80px
    }
}@media screen and (max-width: 767px) {
    .other-product-card_card-small .other-product-card__image {
        padding-inline: 16px
    }
}@media screen and (max-width: 1279px) {
    .other-product-card {
        padding: 16px
    }
}
}
