html {
    width: 100%;
    overflow-x: hidden;
    touch-action: pan-y;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    background-color: #FAFAFA;
    color: #333333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    touch-action: pan-y;
    font-size: 16px;
}

body.site-page-loading {
    cursor: progress;
}

body.site-page-loading::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 36%;
    height: 3px;
    background: linear-gradient(90deg, #163C75 0%, #38BDF8 100%);
    box-shadow: 0 4px 14px rgba(22, 60, 117, 0.18);
    z-index: 10000;
    animation: sitePageLoadingBar 0.9s ease-in-out infinite;
}

body.site-page-loading .glory-app {
    opacity: 0.96;
    transition: opacity 0.18s ease;
}

@keyframes sitePageLoadingBar {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(280%);
    }
}

#app,
.glory-app {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.glory-app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.glory-app > [data-component-path="partials/footer_nav.html"] {
    margin-top: auto;
}

#app {
    opacity: 1;
}

#app.app-shell-pending .glory-app,
#app.app-shell-ready .glory-app {
    opacity: 1;
    transition: opacity 0.28s ease;
}

.vue-managed {
    display: none !important;
}

#app.app-vue-mounted .vue-managed {
    display: block !important;
}

#app.app-home-news-ready .page-home .server-render-fallback {
    display: none !important;
}

#app.app-vue-mounted .page-news .vue-managed {
    display: block !important;
}

.page-news .server-render-fallback,
#app.app-vue-mounted .page-news .server-render-fallback {
    display: block !important;
}

#app.app-news-list-ready .page-news .server-render-fallback {
    display: none !important;
}

.page-shell-error {
    margin: 20px;
    padding: 16px 18px;
    border: 1px solid rgba(184, 39, 39, 0.2);
    border-left: 4px solid #b82727;
    border-radius: 10px;
    background-color: #fff6f6;
    color: #7a2020;
    box-shadow: 0 8px 24px rgba(122, 32, 32, 0.08);
}

.page-shell-error-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.page-shell-error-summary {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.7;
    word-break: break-word;
}

.page-shell-error-meta {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
}

.page-shell-error-line + .page-shell-error-line {
    margin-top: 4px;
}

.page-shell-error-label {
    font-weight: 700;
    margin-right: 6px;
}

.page-shell-error-value {
    word-break: break-all;
}

@media (max-width: 750px) {
    .page-shell-error {
        margin: 16px;
        padding: 14px 16px;
    }

    #app.app-vue-mounted .news-row.vue-managed {
        display: block !important;
    }
}

@media (min-width: 751px) {
    #app.app-vue-mounted .news-row.vue-managed {
        display: flex !important;
    }
}

@media (min-width: 1440px) {
    .container {
        width: 1400px !important;
    }
}

.container {
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 20px;
    transition: width 0.3s;
}

.cursor-pointer { cursor: pointer; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* 英文页面正文统一使用自然左对齐，并避免英文单词被强制拆分 */
.pageLangEn .text-justify,
.page-home.pageLangEn .about-text,
.page-about.pageLangEn .step-desc,
.page-contact.pageLangEn .business-info-value {
    text-align: left;
    word-break: normal;
    overflow-wrap: normal;
    word-wrap: normal;
    white-space: normal;
    hyphens: none;
}

.page-contact.pageLangEn .contact-card-value {
    text-align: center;
    word-break: normal;
    overflow-wrap: normal;
    word-wrap: normal;
    white-space: normal;
    hyphens: none;
}
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-1 { z-index: 1; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }
.z-999 { z-index: 999; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }

.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.align-center,
.items-center { align-items: center; }
.align-start,
.items-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-stretch { align-items: stretch; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

@media (min-width: 992px) {
    .md-pr-50 { padding-right: 50px; }
    .md-pl-50 { padding-left: 50px; }
    .md-pl-20 { padding-left: 20px; }
}

.text-brand-blue { color: #163C75; }
.text-brand-cyan { color: #38BDF8; }
.text-brand-gold { color: #D4AF37; }
.text-white { color: #FFFFFF; }
.text-gray { color: #6B7280; }
.text-gray-light { color: #9CA3AF; }
.text-gray-dark { color: #374151; }
.bg-white { background-color: #FFFFFF; }
.bg-gray-light { background-color: #F3F4F6; }
.bg-brand-blue { background-color: #163C75; }
.bg-brand-blue-light { background-color: #2b5d9e; }
.bg-brand-gold { background-color: #D4AF37; }
.bg-brand-cyan { background-color: #38BDF8; }
.bg-cyan-light { background-color: rgba(56, 189, 248, 0.1); }
.bg-gold-light { background-color: rgba(212, 175, 55, 0.1); }
.border-brand-gold { border-color: #D4AF37; }
.border-brand-cyan { border-color: #38BDF8; }
.border-none { border: none !important; }
.border-b-light { border-bottom: 1px solid #E5E7EB; }
.border-t-light { border-top: 1px solid #E5E7EB; }
.border-dashed { border-bottom: 1px dashed #E5E7EB; }

.font-serif { font-family: "Noto Serif SC", Georgia, serif; }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }
.uppercase { text-transform: uppercase; }
.text-xs { font-size: 0.85rem; line-height: 1.2rem; }
.text-sm { font-size: 1rem; line-height: 1.5rem; }
.text-base { font-size: 1.125rem; line-height: 1.8rem; }
.text-lg { font-size: 1.25rem; line-height: 1.875rem; }
.text-xl { font-size: 1.5rem; line-height: 2rem; }
.text-2xl { font-size: 1.75rem; line-height: 2.25rem; }
.text-3xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-4xl { font-size: 2.75rem; line-height: 1.3; }
.text-5xl { font-size: 3.5rem; line-height: 1.2; }
.text-30px { font-size: 30px; line-height: 1.4; }
.text-24px { font-size: 24px; line-height: 1.4; }
.text-20px { font-size: 20px; line-height: 1.5; }
.text-18px { font-size: 18px; line-height: 1.6; }
.text-16px { font-size: 16px; line-height: 1.6; }
.text-15px { font-size: 15px; line-height: 1.6; }
.text-14px { font-size: 14px; line-height: 1.6; }

.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mb-120 { margin-bottom: 120px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-80 { margin-top: 80px; }
.mt-120 { margin-top: 120px; }
.mt-160 { margin-top: 160px; }
.mt-352 { margin-top: 100px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-15 { margin-left: 15px; margin-right: 15px; }
.mr-0 { margin-right: 0; }
.pt-0 { padding-top: 0 !important; }
.pt-30 { padding-top: 30px; }
.pt-40 { padding-top: 100px; }
.pt-50 { padding-top: 50px; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-60 { padding-bottom: 60px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-50 { padding-top: 50px; padding-bottom: 50px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.px-20 { padding-left: 20px; padding-right: 20px; }
.px-40 { padding-left: 40px; padding-right: 40px; }
.pr-20 { padding-right: 20px; }
.pl-0 { padding-left: 0; }
.pl-20 { padding-left: 20px; }
.lh-14 { line-height: 1.4; }
.lh-16 { line-height: 1.6; }
.lh-18 { line-height: 1.8; }
.lh-19 { line-height: 1.9; }
.lh-20 { line-height: 2; }
.w-10px { width: 10px; }
.w-30px { width: 30px; }
.w-40px { width: 40px; }
.w-70px { width: 70px; }
.w-80px { width: 80px; }
.w-100px { width: 100px; }
.w-200px { width: 200px; }
.h-10px { height: 10px; }
.h-440px { height: 440px; }
.h-70px { height: 70px; }
.min-w-160px { min-width: 160px; }
.min-h-700px { min-height: 700px; }
.max-w-85 { max-width: 85%; }
.max-w-900 { max-width: 900px; margin-left: auto; margin-right: auto; }
.max-w-1000 { max-width: 1000px; margin-left: auto; margin-right: auto; }
.max-w-1200 { max-width: 1200px; margin-left: auto; margin-right: auto; }
.rounded-full { border-radius: 50%; }
.rounded-4 { border-radius: 4px; }
.rounded-8 { border-radius: 8px; }
.overflow-hidden { overflow: hidden; }

.transition-all { transition: all 0.4s ease; }
.hover-text-gold:hover { color: #D4AF37 !important; }
.hover-text-cyan:hover { color: #38BDF8 !important; }
.hover-scale:hover { transform: scale(1.05); }
.opacity-10 { opacity: 0.1; }
.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }
.shadow-corporate { box-shadow: 0 20px 60px rgba(22, 60, 117, 0.15); }
.shadow-card { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.group:hover .group-hover-show { opacity: 1; transform: translateY(0); }
.group:hover .group-hover-hide { opacity: 0.2; }
.group:hover .group-hover-cyan { color: #38BDF8 !important; }
.line-deco { height: 2px; display: inline-block; margin-right: 15px; }
.deco-center { margin: 30px auto 60px; width: 60px; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.divider-vertical { width: 1px; height: 60px; background-color: #E5E7EB; }

.bg-img-base { background-size: cover; background-position: center; background-repeat: no-repeat; }
.bg-fixed { background-attachment: fixed; }
.bg-hero { background-image: url('../../img/frontend/hero.jpg'); }
.bg-about-banner { background-image: url('../../img/frontend/about_banner.jpg'); }
.bg-news-banner { background-image: url('../../img/frontend/news_banner.jpg'); }
.bg-contact-banner { background-image: url('../../img/frontend/contact_banner.jpg'); }
.bg-sectors-banner { background-image: url('../../img/frontend/sectors_banner.jpg'); }
.bg-strat-pos { background-image: url('../../img/frontend/strategy.jpg'); }
.bg-culture-2 { background-image: url('../../img/frontend/about_intro.jpg'); }
.bg-spirit-banner { background-image: url('../../img/frontend/spirit_banner.jpg'); }
.bg-sector-oil { background-image: url('../../img/frontend/oil.jpg'); }
.bg-sector-minerals { background-image: url('../../img/frontend/minerals.jpg'); }
.bg-sector-biotech { background-image: url('../../img/frontend/biotech.jpg'); }
.bg-sector-dairy { background-image: url('../../img/frontend/dairy.jpg'); }
.bg-sector-trade { background-image: url('../../img/frontend/trade.jpg'); }

.nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.5s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-scrolled {
    background-color: rgba(22, 60, 117, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom-color: transparent;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #FFF;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover { color: #D4AF37; }
.logo-box { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 50px; object-fit: contain; }
.logo-img-zh { height: 56px; transform: translateY(-6px); }
.logo-img-en { height: 56px; transform: translateY(-6px); }
.lang-switch { font-size: 16px; color: #FFFFFF; font-weight: bold; }
.lang-item { transition: color 0.3s; opacity: 0.7; }
.lang-item:hover,
.lang-item.active { color: #D4AF37; opacity: 1; }
.lang-sep { margin: 0 10px; color: rgba(255,255,255,0.4); font-weight: normal; }

.nav-item-dropdown {
    position: relative;
    display: inline-block;
    padding: 25px 0;
    margin: -25px 0;
}

.nav-item-dropdown .dropdown-menu {
    display: block !important;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #FFFFFF;
    min-width: 140px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    padding: 10px 0;
    border: none;
    border-top: 3px solid #D4AF37;
    margin: 0;
}

.nav-item-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu-wide {
    min-width: 260px;
}

.dropdown-menu-wide .dropdown-item {
    white-space: nowrap;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.dropdown-item:hover {
    color: #FFFFFF;
    background-color: #163C75;
}

.dropdown-item-active {
    color: #FFFFFF;
    background-color: #163C75;
}

.hamburger-box {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s;
    transform-origin: left center;
}

.hamburger-active .hamburger-line:nth-child(1) { transform: rotate(45deg); }
.hamburger-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-active .hamburger-line:nth-child(3) { transform: rotate(-45deg); }

.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(22, 60, 117, 0.98);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: height 0.4s ease;
    z-index: 998;
    border-bottom: 2px solid #D4AF37;
}

.mobile-menu-open {
    height: auto;
    padding: 30px 20px;
}

.mobile-nav-item {
    display: block;
    font-size: 18px;
    color: #FFF;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}

.mobile-sub-item {
    display: block;
    font-size: 15px;
    color: #D4AF37;
    padding: 10px 0;
    font-weight: normal;
    text-align: center;
}

.mobile-sub-item-active {
    color: #FFFFFF;
    font-weight: 700;
}

.sub-hero {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sub-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sub-hero-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(22, 60, 117, 0.4), rgba(22, 60, 117, 0.85));
    mix-blend-mode: multiply;
}

.section-py { padding: 140px 0; }

/* 首页主按钮：仅作用于首页首屏 */
.page-home .btn-gold {
    background-color: #D4AF37;
    color: #163C75;
    padding: 18px 50px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 4px;
    font-size: 20px;
}

.page-home .btn-gold:hover { background-color: #FFFFFF; }

/* 首页描边按钮：仅作用于首页关于模块 */
.page-home .btn-outline-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    padding: 14px 28px;
    border: 1px solid #163C75;
    color: #163C75;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.35s ease;
}

.page-home .btn-outline-brand:hover {
    background-color: #163C75;
    color: #FFFFFF;
}

/* 新闻页筛选输入框：当前仅资讯列表页使用 */
.page-news .input-custom {
    width: 100%;
    height: 60px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    padding: 15px 20px;
    margin-bottom: 25px;
    transition: border-color 0.3s;
    outline: none;
    font-size: 16px;
    border-radius: 4px;
}

.page-news textarea.input-custom { height: auto; }
.page-news .input-custom:focus {
    border-color: #163C75;
    background: #FFF;
    box-shadow: 0 0 0 3px rgba(22, 60, 117, 0.1);
}

/* 新闻分类标签：仅作用于新闻列表页与详情页 */
.page-news .news-category-badge,
.page-news-detail .news-category-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(22, 60, 117, 0.08);
    color: #163C75;
    border: 1px solid rgba(22, 60, 117, 0.12);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* 新闻列表公共样式：仅作用于首页与资讯列表页，避免串到其他页面 */
.page-home .news-row,
.page-news .news-row {
    display: flex;
    padding: 50px 0;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 -20px;
    border-bottom: 1px solid #EEEEEE;
    transition: background-color 0.3s;
}

.page-home .news-row:hover,
.page-news .news-row:hover {
    background-color: #F9FAFB;
}

.page-home .news-date-col,
.page-news .news-date-col {
    width: 180px;
    flex-shrink: 0;
    margin-right: 28px;
}

.page-home .news-title-link,
.page-news .news-title-link {
    display: block;
    margin-bottom: 20px;
    color: #163C75;
    font-size: 26px;
    line-height: 1.4;
    font-weight: bold;
    transition: color 0.3s;
}

.page-home .news-row:hover .news-title-link,
.page-news .news-row:hover .news-title-link {
    color: #38BDF8;
}

.footer-panel {
    padding: 120px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-image-wrap {
    display: inline-block;
    max-width: 100%;
}

.footer-brand-image {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
}

.footer-brand-image-mobile {
    max-width: 300px;
}

.footer-section-title {
    font-size: 16px;
    line-height: 1.6;
}

.footer-link {
    color: #FFFFFF;
    transition: color 0.3s;
    display: block;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.footer-link:hover { color: #D4AF37; }

.footer-muted-text {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    margin-top: 40px;
}

.back-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    background-color: #163C75;
    color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(22,60,117,0.3);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s;
    z-index: 999;
}

.back-to-top svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: #D4AF37;
    transform: translateY(-5px);
    color: #163C75;
}

.site-toast {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22,60,117,0.95);
    color: #FFF;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
    white-space: pre-line;
    pointer-events: none;
    transition: opacity 0.4s;
}

.site-toast-hidden {
    opacity: 0;
    visibility: hidden;
}

.site-toast-visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 760px) {
    .section-py { padding: 94px 0; }
    .text-4xl { font-size: 2.125rem; }
    .text-5xl { font-size: 3.375rem; }
    .text-30px { font-size: 28px; }
    .text-24px { font-size: 22px; }
    .text-20px { font-size: 18px; }
    .logo-img-zh { height: 40px; transform: translateY(-4px); }
    .logo-img-en { height: 40px; transform: translateY(-4px); }
    .page-home .btn-outline-brand { width: 100%; max-width: 220px; }
    .footer-panel { padding-top: 72px; }
    .footer-brand-image {
        height: auto;
        max-width: 300px;
    }
    .mt-352 { margin-top: 70px; }
    .mb-80 { margin-bottom: 45px; }
    .page-home .news-row,
    .page-news .news-row { display: block; padding: 42px 0; margin: 0; overflow: hidden; }
    .page-home .news-date-col,
    .page-news .news-date-col { width: 100%; margin-right: 0; margin-bottom: 20px; }
    .page-home .news-row .flex-1,
    .page-news .news-row .flex-1 {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex: none;
        overflow: hidden;
    }
    .page-home .news-title-link,
    .page-news .news-title-link {
        display: block;
        width: 100%;
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 22px;
        line-height: 1.45;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .page-home .home-news-desc,
    .page-news .home-news-desc {
        display: block;
        width: 100%;
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .divider-vertical { display: none; }
}
