* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f5f7fb;
    color: #172033;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
}

a {
    color: #1d4ed8;
    text-decoration: none;
}

.header-inner {
    width: min(1380px, calc(100% - 32px));
    margin: 0 auto;
}

.top-strip {
    background: #f0f0f0;
    color: #8a8f99;
    font-size: 13px;
}

.top-strip .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    gap: 20px;
}

.top-strip nav {
    display: flex;
    gap: 16px;
    white-space: nowrap;
}

.top-strip a {
    color: #7b808a;
}

.brand-bar {
    display: grid;
    grid-template-columns: 340px minmax(360px, 1fr) 250px 116px;
    align-items: center;
    gap: 28px;
    min-height: 190px;
    background: #fff;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    border-right: 1px solid #cfd4dc;
}

.brand-logo img {
    max-width: 260px;
    max-height: 92px;
}

.brand-logo span {
    display: none;
    color: #1e66ad;
    font-size: 68px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-title strong {
    display: block;
    color: #050505;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.brand-title p {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 16px 0 0;
    color: #666;
    font-size: 22px;
}

.brand-title p span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: #f00;
    vertical-align: middle;
}

.brand-contact span {
    color: #8a8f99;
    font-size: 14px;
}

.brand-contact strong {
    display: block;
    color: #f10f0f;
    font-size: 26px;
    font-style: italic;
    line-height: 1.3;
}

.brand-contact form {
    display: flex;
    margin-top: 12px;
}

.brand-contact input {
    width: 180px;
    border: 1px solid #4d8bf7;
    border-right: 0;
    padding: 8px 10px;
}

.brand-contact button {
    border: 1px solid #4d8bf7;
    background: #4d8bf7;
    color: #fff;
    padding: 0 15px;
}

.brand-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #8a8f99;
    font-size: 12px;
}

.brand-qr img,
.footer-qr img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border: 1px solid #d6e7ff;
    background:
        linear-gradient(90deg, #0ea5e9 50%, transparent 0) 0 0/10px 10px,
        linear-gradient(#0ea5e9 50%, transparent 0) 0 0/10px 10px,
        #fff;
}

.main-nav {
    background: #2f7fb9;
}

.main-nav .header-inner {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 58px);
}

.main-nav a {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 80px;
    white-space: nowrap;
}

.hero,
.list,
.article {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    padding: 56px 0 24px;
}

.hero h1,
.article h1 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.25;
}

.hero p {
    max-width: 720px;
    margin: 0;
    color: #526071;
}

.card,
.article {
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.card {
    margin: 16px 0;
    padding: 22px 24px;
}

.card h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.card p {
    margin: 0 0 12px;
    color: #526071;
}

.article {
    margin-top: 32px;
    padding: 36px;
}

.back {
    display: inline-block;
    margin-bottom: 16px;
    color: #526071;
}

.meta {
    color: #728096;
    font-size: 14px;
}

.content {
    margin-top: 28px;
    font-size: 17px;
}

.content h2,
.content h3 {
    margin-top: 30px;
}

.content p {
    margin: 14px 0;
}

.content strong {
    font-weight: 700;
}

.content code {
    border-radius: 4px;
    background: #f1f5f9;
    color: #0f172a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.92em;
    padding: 2px 5px;
}

.content ol.dimension-list {
    margin: 14px 0 22px;
    padding-left: 24px;
}

.content ol.dimension-list li {
    margin: 9px 0;
    padding-left: 4px;
}

.table-wrap {
    margin: 22px 0;
    overflow-x: auto;
    border: 1px solid #dbe4f0;
    border-radius: 8px;
    background: #fff;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 15px;
}

.content th,
.content td {
    border-bottom: 1px solid #e5eaf2;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.content th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    white-space: nowrap;
}

.content tr:last-child td {
    border-bottom: 0;
}

.empty {
    padding: 32px 0;
    color: #728096;
}

.site-footer {
    margin-top: 54px;
    background: #282d43;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 180px 180px 180px 220px 220px;
    gap: 20px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0;
}

.footer-col {
    border-right: 1px solid rgba(255,255,255,0.09);
}

.footer-col h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: #fff;
    margin: 8px 0;
}

.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #b8c0d8;
    border-right: 1px solid rgba(255,255,255,0.09);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.footer-contact strong {
    color: #ff4b2f;
    font-size: 24px;
}

.footer-contact b {
    margin-top: 18px;
    font-size: 24px;
}

.footer-contact span {
    color: #fff;
    font-weight: 600;
}

.footer-copy {
    background: #464d68;
    padding: 12px 16px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .brand-bar {
        grid-template-columns: 220px 1fr;
        min-height: auto;
        padding: 24px 0;
    }

    .brand-title strong {
        font-size: 28px;
    }

    .brand-contact,
    .brand-qr {
        display: none;
    }

    .main-nav .header-inner {
        justify-content: flex-start;
        gap: 24px;
        overflow-x: auto;
    }

    .main-nav a {
        font-size: 20px;
        line-height: 58px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .top-strip {
        display: none;
    }

    .brand-bar {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .brand-logo {
        border-right: 0;
        min-height: auto;
    }

    .brand-logo span {
        font-size: 46px;
    }

    .brand-title strong {
        font-size: 24px;
    }

    .brand-title p {
        justify-content: center;
        font-size: 15px;
        gap: 10px;
    }

    .hero h1,
    .article h1 {
        font-size: 26px;
    }

    .article {
        padding: 24px 18px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-col,
    .footer-qr {
        border-right: 0;
    }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px 0 8px;
  color: #64748b;
}
.pagination a {
  padding: 8px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #1d4ed8;
  text-decoration: none;
  background: #fff;
}
.pagination a:hover {
  background: #eff6ff;
}

/* Keep the news channel content independent from the customer homepage hero. */
.geo-news-hero,
.geo-news-list,
.geo-news-article {
    width: min(960px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}
.geo-news-hero {
    min-height: 0;
    padding: 42px 0 24px;
    background: transparent;
}
.geo-news-hero h1 {
    margin: 0 0 12px;
    color: #172033;
    font-size: 32px;
    line-height: 1.25;
}
.geo-news-hero p {
    max-width: 720px;
    margin: 0;
    color: #526071;
}
.geo-news-list {
    display: grid;
    gap: 18px;
    padding: 0 0 36px;
}
.geo-news-article {
    margin-top: 32px;
    padding: 36px;
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
}
footer {
    width: 100%;
    margin-top: 48px;
    background: #061525;
    color: #fff;
}
footer .footer-main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(220px, 1fr) minmax(240px, 1fr);
    align-items: start;
    gap: 34px;
    padding: 38px 0 32px;
}
footer .footer-main > div {
    min-width: 0;
}
footer .footer-main p {
    margin: 10px 0 0;
    line-height: 2;
}
footer .footer-main a {
    color: #dbeafe;
}
footer .footer-main p a {
    display: inline-block;
    margin-right: 16px;
}
footer .footer-brand {
    color: #fff;
}
footer .copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: #9fb0c5;
    font-size: 13px;
}
@media (max-width: 820px) {
    footer .footer-main {
        grid-template-columns: 1fr;
    }
    footer .copyright {
        flex-direction: column;
    }
}
