.blog-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) 380px;
    gap: 20px;
    align-items: stretch;
}

.blog-detail__media,
.blog-detail__content,
.blog-detail__aside {
    min-width: 0;
    height: 100%;
}

.blog-detail__media {
    display: flex;
}

.blog-detail__aside {
    display: flex;
}

.blog-detail__image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    /*min-height: 620px;*/
    overflow: hidden;
    background: #fff;
    text-decoration: none;
}

.blog-detail__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail__label {
    position: absolute;
    right: 24px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #0e2a5c;
}

.blog-detail__label i {
    display: block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

.blog-detail__content {
    background: #fff;
    padding: 18px 16px;
    min-height: 620px;
    height: 100%;
    box-sizing: border-box;
}

.blog-detail__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--black);
}

.blog-detail__text p {
    margin: 0 0 20px;
}

.blog-detail__text b {
    font-weight: 500;
}

.blog-detail__text ul {
    margin: 8px 0 20px;
    padding-left: 22px;
}

.blog-detail__text li {
    margin-bottom: 3px;
}

.blog-product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.blog-product-card__inner {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 38px 38px 42px;
    margin-bottom: 14px;
}

.blog-product-card__favorite {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 2;
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d2ad79;
    fill: #ffffff;
    stroke: #d2ad79;
    cursor: pointer;
}

.blog-product-card__favorite.added {
    fill: #d2ad79;
}

.blog-product-card__favorite svg {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.blog-product-card__image img {
    display: block;
    width: 100%;
    max-height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
}

.blog-product-card__title {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
}

.blog-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.blog-product-card__article {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.2;
    color: #8a8a8a;
}

.blog-product-card__price {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
}

.blog-product-card__button {
    width: 100%;
}

@media (max-width: 1199px) {
    .blog-detail {
        grid-template-columns: 1fr 320px;
    }

    .blog-detail__media {
        grid-column: 1 / -1;
    }

    .blog-detail__content {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .blog-detail {
        display: block;
    }

    .blog-detail__media,
    .blog-detail__content,
    .blog-detail__aside {
        margin-bottom: 20px;
    }

    .blog-detail__content {
        padding: 16px;
    }

    .blog-detail__label {
        right: 14px;
        bottom: 14px;
        font-size: 12px;
    }

    .blog-product-card__inner {
        padding: 30px;
    }
}