/* ============ Section: News ============ */
.news-section {
    width: 100%;
    background:
        radial-gradient(1200px 520px at 110% -8%, rgba(26, 86, 219, 0.18), transparent 60%),
        radial-gradient(1000px 480px at -8% 110%, rgba(26, 86, 219, 0.14), transparent 60%),
        repeating-linear-gradient(0deg, rgba(26, 86, 219, 0.045) 0, rgba(26, 86, 219, 0.045) 1px, transparent 1px, transparent 46px),
        repeating-linear-gradient(90deg, rgba(26, 86, 219, 0.045) 0, rgba(26, 86, 219, 0.045) 1px, transparent 1px, transparent 46px),
        linear-gradient(180deg, #eaf1fb 0%, #f7f9fc 52%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 60px 30px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    border: 36px solid rgba(26, 86, 219, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.news-section::after {
    content: '';
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(26, 86, 219, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.news-section .sec-label {
    font-size: 13px;
    color: var(--color1);
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.news-section .news-layout {
    width: 100%;
    max-width: 1500px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.news-section .news-side {
    flex: 0 0 250px;
    text-align: left;
}

.news-section .sec-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: left;
}

.news-section .sec-title span {
    color: var(--color1);
}

.news-section .sec-divider {
    width: 48px;
    height: 3px;
    background: var(--color1);
    margin: 0 0 14px;
}

.news-section .sec-sub {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
    line-height: 1.7;
    margin: 0 0 20px;
    text-align: left;
}

.news-section .news-watermark {
    position: absolute;
    right: 16px;
    bottom: 6px;
    font-size: 110px;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(26, 86, 219, 0.07);
    pointer-events: none;
    z-index: -1;
}

.news-section .news-quote {
    position: absolute;
    left: 6%;
    top: 5%;
    font-size: 190px;
    line-height: 1;
    color: rgba(26, 86, 219, 0.08);
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    z-index: -1;
}

.news-section .news-all {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--color1);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(26, 86, 219, 0.25);
    transition: 0.3s;
}

.news-section .news-all:hover {
    background: #1550c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(26, 86, 219, 0.32);
}

.news-section .news-scroll-container {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color1) #e8e8e8;
}

.news-section .news-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.news-section .news-scroll-container::-webkit-scrollbar-track {
    background: #e8e8e8;
    border-radius: 3px;
}

.news-section .news-scroll-container::-webkit-scrollbar-thumb {
    background: var(--color1);
    border-radius: 3px;
}

.news-section .news-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.news-section .news-col {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 16px 20px 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, border-color 0.3s;
    height: 400px;
}

.news-section .news-col:hover {
    box-shadow: 0 10px 28px rgba(0, 60, 127, 0.12);
    border-color: #dbe6f5;
}

.news-section .news-col h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color1);
    margin: 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.news-section .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #d8e0ec transparent;
}

.news-section .news-list::-webkit-scrollbar {
    width: 5px;
}

.news-section .news-list::-webkit-scrollbar-track {
    background: transparent;
}

.news-section .news-list::-webkit-scrollbar-thumb {
    background: #d8e0ec;
    border-radius: 6px;
}

.news-section .news-list::-webkit-scrollbar-thumb:hover {
    background: var(--color1);
}

.news-section .news-item {
    display: block;
}

.news-section .news-item .news-item-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

.news-section .news-item:last-child .news-item-link {
    border-bottom: none;
}

.news-section .news-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-section .news-txt {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 10px;
    row-gap: 4px;
    grid-template-areas:
        "title title"
        "desc  date";
}

.news-section .news-item h4 {
    grid-area: title;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-section .news-desc {
    grid-area: desc;
    font-size: 11px;
    color: #888;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-section .news-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-section .news-item a:hover {
    color: var(--color1);
}

.news-section .news-item .news-date {
    grid-area: date;
    font-size: 11px;
    color: #bbb;
    margin: 0;
    white-space: nowrap;
}

.news-section .news-more {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color1);
    text-decoration: none;
}

.news-section .news-more:hover {
    text-decoration: underline;
}

.news-section .news-scroll-tip {
    display: none;
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--color1);
    letter-spacing: 1px;
}


@media (max-width: 900px) {

    .news-section {
        padding: 24px 20px 24px;
    }

    .news-section .news-layout {
        flex-direction: column;
        gap: 22px;
        align-items: stretch;
    }

    .news-section .news-side {
        flex: none;
        text-align: center;
    }

    .news-section .sec-title {
        text-align: center;
    }

    .news-section .sec-divider {
        margin: 0 auto 14px;
    }

    .news-section .sec-sub {
        text-align: center;
    }

    .news-section .news-scroll-container {
        width: 100%;
        max-width: 100%;
    }

    .news-section .news-area {
        display: flex;
        min-width: fit-content;
        justify-content: flex-start;
        gap: 14px;
    }

    .news-section .news-col {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
        padding: 20px 18px 16px;
    }

    .news-section .news-thumb {
        width: 44px;
        height: 44px;
    }

    .news-section .news-scroll-tip {
        display: block;
    }

    .products {
        padding: 30px 16px 24px;
    }

    .products .products-body {
        flex-direction: column;
        gap: 18px;
    }

    .product-categories {
        flex: auto;
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
    }

    .cat-btn {
        flex: 0 0 auto;
        padding: 10px 14px;
        gap: 8px;
    }

    .cat-btn .cat-en {
        display: none;
    }

    .cat-btn .cat-count {
        display: none;
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-item img {
        height: 120px;
    }

    .product-item::after {
        height: 120px;
    }
}
