.news {

}

.head-news {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 16px;
}

.head-news .head-news-inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.head-news .head-news-inner .title {
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: var(--black-color);
}

.head-news .head-news-inner .subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: var(--black-color-70);
}

.news .btn-outline-light {
    padding: 8px;
    background: var(--white-color);
    border-radius: 16px;
    display: block;
    position: relative;
}

.news .btn-outline-light span {
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    color: var(--black-color);
    text-align: center;
    display: block;
}

.news .btn-outline-light .inner {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--sec-color-10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s ease-in-out;
    padding: 4px 12px;
}

.news .btn-outline-light:hover .inner {
    background: var(--sec-color-10);
}

.body-news {
    margin: 10px 0;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.body-news .news-item {
    width: calc(33.333333% - 16px);
    background: var(--white-color);
    padding: 8px;
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 5px 8px;
    position: relative;
}

.body-news .news-item img {
    width: 77px;
    height: 82px;
    object-fit: cover;
    border-radius: 16px;
    transition: all .3s ease-in-out;
    filter: grayscale(1);
}

.body-news .news-item:hover img {
    filter: grayscale(0);
}

.body-news .news-item .title-box {
    width: calc(100% - 85px);
    height: 82px;
    padding: 10px 16px;
    border-radius: 16px;
    background: linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(270deg, var(--black-color-10) 0%, transparent 30%) border-box;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.body-news .news-item .title-box .title {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    display: block;
}

.body-news .news-item .title-box .subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    display: block;
    color: var(--black-color-70);
}

.body-news .news-item .date-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.body-news .news-item .date-box .time {
    padding-right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.body-news .news-item .date-box .time:before {
    content: "";
    border: 10px solid var(--black-color-10);
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}

.body-news .news-item .date-box .time svg {
    width: 14px;
}

.body-news .news-item .date-box .time svg path {
    fill: var(--main-color);
}

.body-news .news-item .date-box .time i {
    color: var(--main-color);
}

.body-news .news-item .date-box .time span {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    display: block;
    color: var(--black-color);
}

.body-news .news-item .date-box .btn {
    min-width: 123px;
    width: max-content;
    height: 48px;
}

.body-news .news-item span {
    font-family: BeautyShopFont;
}


.body-news .news-item:nth-child(2):before {
    content: "";
    width: 100px;
    height: calc(100% + 32px);
    background: var(--black-color-5);
    position: absolute;
    top: -16px;
    right: -62px;
    z-index: -1;
    border-radius: 15px;
}

.body-news .news-item:nth-child(2):after {
    content: "";
    width: 100px;
    height: calc(100% + 32px);
    background: var(--black-color-5);
    position: absolute;
    top: -16px;
    left: -62px;
    z-index: -1;
    border-radius: 15px;
}


@media (max-width: 1199px) {
    .body-news .news-item .title-box .title {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .body-news {
        flex-wrap: wrap;
    }

    .body-news .news-item {
        width: 100%;
    }

    .body-news .news-item:nth-child(2):after,
    .body-news .news-item:nth-child(2):before {
        display: none;
    }
}

@media (max-width: 767px) {
    .head-news .head-news-inner .title {
        font-size: 16px;
    }

    .body-news {
        padding-bottom: 60px;
    }

    .news .btn-outline-light {
        padding: 4px;
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

body.beauty-news-modal-open {
    overflow: hidden
}

.beauty-news-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.beauty-news-modal[hidden] {
    display: none
}

.beauty-news-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 25, 28, .65);
    backdrop-filter: blur(5px)
}

.beauty-news-modal__panel {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: min(82vh, 760px);
    overflow: auto;
    background: var(--white-color, #fff);
    border: 1px solid var(--main-color-10, #f9d7e7);
    border-radius: 0 32px 0 32px;
    box-shadow: 0 24px 70px rgba(48, 48, 48, .24);
    direction: rtl
}

.beauty-news-modal__image {
    display: block !important;
    width: 100% !important;
    height: min(310px, 36vh) !important;
    object-fit: cover !important;
    border-radius: 0 32px 0 0 !important;
    filter: none !important
}

.beauty-news-modal__body {
    padding: 28px 32px 32px
}

.beauty-news-modal__body h3 {
    margin: 0 0 14px;
    color: var(--black-color, #303030);
    font-size: 22px;
    line-height: 1.7
}

.beauty-news-modal__content {
    color: var(--black-color-80, #505050);
    font-size: 15px;
    line-height: 2;
    text-align: right
}

.beauty-news-modal__content p:last-child {
    margin-bottom: 0
}

.beauty-news-modal__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--main-color, #EA3788);
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    box-shadow: 0 8px 20px rgba(234, 55, 136, .3)
}

.beauty-news-modal__close:hover {
    background: var(--sec-color, #0CC7A1)
}

@media (max-width: 600px) {
    .beauty-news-modal {
        padding: 14px
    }

    .beauty-news-modal__panel {
        border-radius: 0 22px 0 22px
    }

    .beauty-news-modal__body {
        padding: 22px 20px 26px
    }

    .beauty-news-modal__body h3 {
        font-size: 19px
    }
}

.body-news .news-item .title-box .subtitle {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

/* Carousel slides wrap the original cards so negative decoration layers stay behind them. */
.beauty-no-header .news > .d-flex:first-child, .beauty-no-header-button .news > .d-flex:first-child > a {
    display: none !important
}

.beauty-no-header .body-news {
    margin-top: 0 !important
}

.beauty-adaptive-widget .body-news {
    display: block
}

.body-news .beauty-items-swiper {
    padding: 24px 0 32px;
    margin-top: -24px;
    min-width: 0;
    isolation: isolate
}

.body-news .beauty-items-swiper > .swiper-wrapper {
    align-items: stretch
}

.body-news .beauty-items-swiper > .swiper-wrapper > .swiper-slide {
    height: auto;
    min-width: 0;
    isolation: isolate
}

.body-news .swiper-slide > .news-item {
    width: 100%;
    height: 100%;
    z-index: auto;
    transform: none
}

.body-news .news-item:not(.beauty-review-last):after {
    content: "";
    width: 100px;
    height: calc(100% + 32px);
    background: var(--black-color-5);
    position: absolute;
    top: -16px;
    left: -62px;
    z-index: -1;
    border-radius: 15px
}

.body-news .news-item.beauty-review-last:after {

}

/*.body-news .beauty-review-middle:after {*/
/*    left: -62px*/
/*}*/

.body-news.beauty-items-grid {
    display: grid;
    grid-template-columns:repeat(var(--beauty-columns, var(--beauty-default-columns, 3)), minmax(0, 1fr));
    gap: 24px
}

.body-news.beauty-items-grid > .news-item {
    width: 100%
}

@media (max-width: 991px) {
    .body-news .news-item:after {
        display: none
    }
}

[data-beauty-layout="news"] {
    --beauty-columns: var(--beauty-columns-desktop, 3)
}

@media (max-width: 1024px) {
    [data-beauty-layout="news"] {
        --beauty-columns: var(--beauty-columns-tablet, 2)
    }
}

@media (max-width: 767px) {
    [data-beauty-layout="news"] {
        --beauty-columns: var(--beauty-columns-mobile, 1)
    }
}

