
.universal-news {
    font-family: "Montserrat", sans-serif;
    max-width: 1050px;
    min-width: 270px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.universal-news * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
:root {
    --padding-section: 50px;
    --text-gap: 20px;
    --title-gap: 50px;
    --block-gap: 40px;
}
.universal-news section {
    padding: var(--padding-section) 0;
}
.universal-news .universal-title {
    font-family: "Montserrat", sans-serif;
    color: #020A0A;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
}
.universal-news .universal-subtitle {
    font-family: "Montserrat", sans-serif;
    color: #020A0A;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
}
.universal-news .universal-description {
    font-family: "Montserrat", sans-serif;
    color: #020A0A;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
}
.universal-news .universal-text {
    font-family: "Montserrat", sans-serif;
    color: #020A0A;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}
@media screen and (max-width: 1199px) {
    .universal-news {
        max-width: 940px;
    }
}
@media screen and (max-width: 991px) {
    .universal-news {
        max-width: 720px;
    }
    .universal-news .universal-title {
        font-size: 20px;
    }
    .universal-news .universal-subtitle {
        font-size: 18px;
    }
    .universal-news .universal-description {
        font-size: 16px;
    }
    .universal-news .universal-text {
        font-size: 13px;
    }
}
@media screen and (max-width: 767px){
    .universal-news {
        gap: 60px;
    }
    :root {
        --title-gap: 30px;
    }
}
/* product============================================================================== */
.universal-section {
    display: flex;
    flex-direction: column;
    gap: var(--title-gap);
}
.first-news-section img {
    object-fit: cover;
    width: 100%;
    max-width: 1050px;
    object-position: center;
    aspect-ratio: 1050 / 400;
}
.universal-info {
    display: flex;
    flex-direction: column;
    gap: var(--text-gap);
    width: 100%;
}

.universal-section__wrap {
    display: flex;
    flex-direction: column;
    gap: var(--title-gap);
}
.second-news-section__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.second-news-section__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 550px;
}
.second-news-section__item:nth-child(even) {
    direction: rtl;
}
.second-news-section__item:nth-child(even) .universal-info {
    direction: ltr;
}
.second-news-section__inner {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #F8F8F8;
}

.third-news-section__wrap {
    position: relative;
    overflow: hidden;
}
.third-news-section__wrap.js-has-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    right: -27px;
    width: 54px;
    height: 100%;
    border-radius: 376px;
    opacity: 0.1;
    background: #22372C;
    filter: blur(15px);
    -webkit-filter: blur(15px);
    pointer-events: none;
    z-index: 1;
}
.third-news-section__list::-webkit-scrollbar {
    height: 15px !important;
}
.third-news-section__list::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #EAF0EC;
}
.third-news-section__list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #C5D5CA;
    height: 100%;
}
.third-news-section__list {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--text-gap);
    overflow-x: auto;
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.third-news-section__card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: var(--text-gap);
    width: 260px;
    flex-shrink: 0;
    transition: box-shadow 0.2s ease;
}
.third-news-section__card:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}
.third-news-section__card a {
    display: flex;
    align-items: center;
}
.third-news-section__card a img {
    margin: 0 auto;
}
.third-news-section__card .card-name {
    color: #1C1C1A;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.third-news-section__card .card-name span {
    font-size: 18px;
    text-transform: uppercase;
}
.third-news-section__card .news-card-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 5px 30px;
    background: #266141;
    border-radius: 40px;
    border: 1px solid #FFF;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    cursor: pointer;
}
.third-news-section__card .news-card-link:hover {
    background: #358057;
}
.third-news-section__card .news-card-link:hover .card-button svg path {
    fill: #358057;
}
.third-news-section__card .news-card-link:active {
    background: #163A27;
}
.third-news-section__card .news-card-link:active .card-button svg path {
    fill: #163A27;
}
.third-news-section__card .news-card-link:disabled {
    background: #D3D3D3;
    cursor: not-allowed;
}
.third-news-section__card .news-card-link:disabled .card-button svg path {
    fill: #D3D3D3;
}
.third-news-section__card .news-card-link span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.card-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #FFF;
    border-radius: 50%;
}
.fourth-news-section__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.fourth-news-section__wrap img {
    width: 100%;
    max-width: 750px;
}
.universal-quotes {
    position: relative;
    border-left: 5px solid #EAF0EC;
    background: #F6F6F6;
    padding: 60px 30px 60px 90px;
}
.universal-quotes svg {
    width: 40px;
    position: absolute;
    top: 30px;
    left: 30px;
}
.universal-quotes .universal-text {
    font-style: italic;
}
.universal-attention {
    display: flex;
    align-items: center;
    gap: var(--text-gap);
    background: #F6F6F6;
    padding: 50px;
}
.universal-attention svg {
    width: 38px;
    flex-shrink: 0;
}
.videoreview-news {
    background: #F6F6F6;
    padding: 50px;
}
.videoreview-news iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 950 / 534;
}
@media screen and (max-width: 1599px) {
    .universal-quotes {
        padding: 50px 30px 50px 90px;
    }
}
@media screen and (max-width: 1344px) {
    .second-news-section__inner {
        padding: 10px 20px;
    }
}
@media screen and (max-width: 1199px) {
    .fourth-news-section__wrap {
        gap: 20px;
    }
}
@media screen and (max-width: 991px) {
    .universal-quotes {
        padding: 54px 30px 54px 80px;
    }
    .universal-quotes svg {
        width: 30px;
    }
}
@media screen and (max-width: 767px){
    .second-news-section__item {
        display: flex;
        flex-direction: column;
    }
    .second-news-section__item img {
        max-width: 750px;
    }
    .second-news-section__item:nth-child(even) {
        direction: ltr;
    }
    .second-news-section__inner {
        padding: 20px;
    }
    .fourth-news-section__wrap {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .universal-quotes {
        padding: 45px 30px 45px 80px;
    }
    .universal-attention {
        padding: 30px;
    }
    .videoreview-news {
        padding: 20px;
    }
}
@media screen and (max-width: 567px) {
    .first-news-section img {
        aspect-ratio: 290 / 200;
    }
    .fourth-news-section__wrap {
        gap: 30px;
    }
    .universal-quotes {
        padding: 45px 20px 45px 65px;
    }
    .universal-quotes svg {
        width: 25px;
        top: 20px;
        left: 20px;
    }
    .universal-attention {
        gap: 10px;
        padding: 20px 20px 20px 10px;
    }
    .universal-attention svg {
        width: 28px;
    }
}

/* answers-------------------------------------------------------------------------------------- */
.answers-am {
    display: flex;
    flex-direction: column;
    gap: var(--title-gap);
}
.answers-am__accordion {
    display: flex;
    flex-direction: column;
    margin: -20px 0 0 0;
}
.answers-am__item {
    border-bottom: 1px solid #D9D9D9;
}
.answers-am__header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: start;
}
.answers-am__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.answers-am__body span {
    display: block;
    padding: 0 0 20px 0;
}
.answers-am__icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.answers-am__icon::before,
.answers-am__icon::after {
    content: '';
    position: absolute;
    background-color: #266141;
    transition: transform 0.3s ease;
}
.answers-am__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}
.answers-am__icon::after {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}
.answers-am__header[aria-expanded="true"] .answers-am__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
@media screen and (max-width: 991px) {
    .answers-am .title-optic br {
        display: none;
    }
}
@media screen and (max-width: 567px) {
    .answers-am__header {
        gap: 10px;
        padding: 15px 0;
    }
    .answers-am__body span {
        padding: 0 0 15px 0;
    }
}

/* news slider-------------------------------------------------------------------------------------- */
.universal-news-slider__wrap {
    padding: 50px;
    background: #F6F6F6;
}
.newsSwiper {
    max-width: 950px;
    width: 100%;
}
.newsSwiper .swiper-slide img {
    width: 100%;
    max-width: 950px;
}
.news-swiper__control {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 115px 0 115px;
}
.news-pagination {
    position: relative;
    overflow: hidden;
    height: 2px;
    border-radius: 100px;
    background: #C5D5CA;
}
.newsSwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    height: 6px;
    border-radius: 100px;
    background: #5B6770;
}
.news-button-prev,
.news-button-next {
    position: static;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border: 1px solid #266141;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.news-button-prev:hover,
.news-button-next:hover {
    background-color: #266141;
}
.news-button-prev:hover svg path,
.news-button-next:hover svg path {
    fill: #FFF;
}
.news-button-prev:active,
.news-button-next:active {
    background-color: #22372C;
    border-color: #22372C;
}
.newsSwiper .swiper-button-disabled {
    border-color: #DDDDDD;
    background-color: transparent;
    cursor: default;
}
.newsSwiper .swiper-button-disabled svg path {
    fill: #DDDDDD;
}
@media screen and (max-width: 1599px) {
    .news-swiper__control {
        padding: 20px 40px 0 40px;
    }
}
@media screen and (max-width: 1344px) {
    .news-swiper__control {
        padding: 20px 0 0 0;
    }
}
@media screen and (max-width: 1199px) {
    .news-swiper__control {
        padding: 20px 60px 0 60px;
    }
}
@media screen and (max-width: 991px) {
    .news-swiper__control {
        padding: 20px 0 0 0;
    }
}
@media screen and (max-width: 767px){
    .universal-news-slider__wrap {
        padding: 20px;
    }
}
@media screen and (max-width: 567px) {
    .news-button-prev,
    .news-button-next {
        display: none;

    }
}


/* news qrcode-------------------------------------------------------------------------------------- */


.universal-qr {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 96px);
    column-gap: 40px;
}

.universal-qr-apple,
.universal-qr-android {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.universal-qr-apple img,
.universal-qr-android img {
    margin: 0 auto;
    width: 100%;
    object-fit: contain;
}

.universal-qr a {
    position: relative;
    z-index: 3;
}

.universal-qr .img_popup {
    pointer-events: none;
}

.universal-qr a img {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1599px) {
    .universal-qr {
        grid-template-columns: repeat(2, 73px);
        column-gap: 30px;
    }
    .universal-qr-apple,
    .universal-qr-android {
        gap: 7px;
    }
}

@media screen and (max-width: 991px) {
    .universal-qr {
        grid-template-columns: repeat(2, 133px);
        column-gap: 20px;
    }
    .universal-qr-apple-code,
    .universal-qr-googleplay-code {
        display: none;
    }
}

@media screen and (max-width: 567px) {
    .universal-qr {
        grid-template-columns: repeat(2, 118px);
        column-gap: 10px;
    }
}


.universal-list {
    margin: 0;
    padding: 0 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: var(--text-gap);
    list-style: none;
}

.universal-list li {
    position: relative;
    text-align: left !important;
}

.universal-list li::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -16px;
    width: 9px;
    height: 9px;
    border-radius: 9px;
    background-color: #266141;
}
@media screen and (max-width: 768px) {
    .universal-list {
        padding: 0 0 0 20px;
    }
}





/* news table-------------------------------------------------------------------------------------- */
.table-news-section__wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.universal-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.universal-table th,
.universal-table td {
    padding: 10px 20px;
    border: 1px solid #828282;
    text-align: left;
    white-space: nowrap;
}

.universal-table th {
    color: #266141 !important;
    font-weight: 700 !important;
}




/* news link button --------------------------------------------------------------------------------------  */

.universal-link-button {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 5px 30px;
    background: #266141;
    border-radius: 40px;
    border: 1px solid #FFF;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.universal-link-button:hover {
    background: #358057;
}
.universal-link-button:hover .card-button svg path {
    fill: #358057;
}
.universal-link-button:active {
    background: #163A27;
}
.universal-link-button:active .card-button svg path {
    fill: #163A27;
}
.universal-link-button:disabled {
    background: #D3D3D3;
    cursor: not-allowed;
}
.universal-link-button:disabled .card-button svg path {
    fill: #D3D3D3;
}
.universal-link-button span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}


/* news breadcrumb mobile fix --------------------------------------------------------------------------------------  */
@media screen and (max-width: 768px) {
    .breadcrumb {
        overflow: hidden;
        display: flex;
        align-items: center;
    }
    .product-header__wrapper .breadcrumb li a {
        display: flex;
    }
    .breadcrumb li:last-child {
        overflow: hidden;         
        text-overflow: ellipsis;
        max-width: calc(100vw - 55px);
        -webkit-line-clamp: 1;  
    }
    .product-header__wrapper .breadcrumb {
        padding: 11px 0;
    }
}


/* download button--------------------------------------------------------------------------------------  */
.universal-download-btn {
    display: flex;
    margin: 0 auto 0 0;
    padding: 5px 20px;
    min-height: 50px;
    border-radius: 40px;
    background-color: #266141;
    align-items: center;
    justify-content: center;
    border: unset;
    cursor: pointer;
    text-decoration: none;
}

.universal-download-btn:hover {
    background-color: #358057;
}

.universal-download-btn:active {
    background-color: #163A27;
}

.universal-download-btn p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
}

/* blockquote fix --------------------------------------------------------------------------------------  */

.universal-info blockquote {
    padding: 0;
    border: unset;
}

/* even news fix --------------------------------------------------------------------------------------  */

.second-news-section__inner-reverse {
    direction: rtl;
}

.second-news-section__inner-reverse .universal-info {
    direction: ltr;
}

@media screen and (max-width: 767px){
    .second-news-section__inner-reverse {
        direction: ltr;
    }
}