:root {
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { font-family: var(--font-sans); }
body { margin: 0; background: #f8f9ff; color: #0b1c30; font-family: var(--font-sans); font-size: 16px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.local-icon { display: inline-flex; width: 1.25em; height: 1.25em; fill: currentColor; flex-shrink: 0; vertical-align: middle; }
.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    overflow: hidden;
}
.site-logo img {
    display: block;
    width: auto;
    object-fit: contain;
}
.site-logo-pc {
    width: 150px;
    height: 40px;
}
.site-logo-pc img {
    height: 40px;
}
.site-logo-mobile {
    width: 120px;
    height: 32px;
}
.site-logo-mobile img {
    height: 32px;
}
.hero-gradient { background: linear-gradient(135deg, #f8f9ff 0%, #e5eeff 100%); }
.subtle-outline { border: 1px solid #e2e8f0; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.snap-x { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }

.fixed { position: fixed; }
.sticky { position: sticky; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.inset-0 { inset: 0; }
.top-3 { top: 12px; }
.left-3 { left: 12px; }
.top-28 { top: 112px; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.top-1\/2 { top: 50%; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.shrink-0 { flex-shrink: 0; }
.flex-shrink-0 { flex-shrink: 0; }
.cursor-pointer { cursor: pointer; }

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-end { justify-content: flex-end; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-8 { grid-column: span 8 / span 8; }

.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-8 { width: 32px; }
.w-10 { width: 40px; }
.w-20 { width: 80px; }
.w-2 { width: 8px; }
.w-6 { width: 24px; }
.w-\[85vw\] { width: 85vw; }
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-sm { max-width: 24rem; }
.max-w-\[900px\] { max-width: 900px; }
.max-w-container-max { max-width: 1280px; }
.h-8 { height: 32px; }
.h-10 { height: 40px; }
.h-6 { height: 24px; }
.h-16 { height: 64px; }
.h-20 { height: 80px; }
.h-32 { height: 128px; }
.h-48 { height: 192px; }
.h-56 { height: 224px; }
.h-full { height: 100%; }
.h-6 { height: 24px; }
.min-h-screen { min-height: 100vh; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

.flex-1 { flex: 1 1 0%; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }
.gap-20 { gap: 80px; }
.gap-gutter { gap: 24px; }
.space-y-4 > * + * { margin-top: 16px; }
.space-y-8 > * + * { margin-top: 32px; }
.space-y-10 > * + * { margin-top: 40px; }
.space-y-12 > * + * { margin-top: 48px; }

.m-0 { margin: 0; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-stack-lg { margin-bottom: 32px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-7 { padding-left: 28px; padding-right: 28px; }
.px-10 { padding-left: 40px; padding-right: 40px; }
.px-12 { padding-left: 48px; padding-right: 48px; }
.px-margin-mobile { padding-left: 16px; padding-right: 16px; }
.px-margin-desktop { padding-left: 40px; padding-right: 40px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-14 { padding-top: 56px; padding-bottom: 56px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-stack-lg { padding-top: 32px; padding-bottom: 32px; }
.pt-20 { padding-top: 80px; }
.pb-24 { padding-bottom: 96px; }
.pb-stack-lg { padding-bottom: 32px; }
.pb-1 { padding-bottom: 4px; }
.pl-3 { padding-left: 12px; }
.pl-10 { padding-left: 40px; }
.pr-4 { padding-right: 16px; }

.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 8px; }
.rounded-2xl { border-radius: 10px; }
.rounded-full { border-radius: 8px; }
.rounded-l-full { border-top-left-radius: 8px; border-bottom-left-radius: 8px; }
.rounded-r-full { border-top-right-radius: 8px; border-bottom-right-radius: 8px; }
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-outline-variant { border-color: #c4c6ce; }
.border-secondary { border-color: #0058bc; }
.border-tertiary-fixed-dim { border-color: #6bd8cb; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; border-left: 0; border-right: 0; }

.bg-white { background-color: #fff; }
.bg-background { background-color: #f8f9ff; }
.bg-surface { background-color: #f8f9ff; }
.bg-surface-container-lowest { background-color: #fff; }
.bg-surface-container-low { background-color: #eff4ff; }
.bg-primary { background-color: #000f22; }
.bg-primary-container { background-color: #0a2540; }
.bg-secondary { background-color: #0058bc; }
.bg-tertiary-container { background-color: #002a26; }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-primary\/80 { --tw-gradient-from: rgba(0, 15, 34, .8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via, transparent), var(--tw-gradient-to, transparent); }
.via-transparent { --tw-gradient-via: transparent; }
.to-transparent { --tw-gradient-to: transparent; }
.bg-gradient-to-t.from-primary\/80.via-transparent.to-transparent { background-image: linear-gradient(to top, rgba(0, 15, 34, .82), rgba(0, 15, 34, .22), transparent); }

.text-white { color: #fff; }
.text-white\/80 { color: rgba(255, 255, 255, .8); }
.text-on-background { color: #0b1c30; }
.text-primary { color: #000f22; }
.text-secondary { color: #0058bc; }
.text-on-primary { color: #fff; }
.text-on-primary-container { color: #d8e2ff; }
.text-on-secondary-container { color: #fefcff; }
.text-on-surface { color: #0b1c30; }
.text-on-surface-variant { color: #43474d; }
.text-primary-fixed-dim { color: #b0c8eb; }
.text-tertiary-container { color: #002a26; }

.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[18px\] { font-size: 18px; }
.text-sm { font-size: 14px; }
.text-3xl { font-size: 30px; }
.text-4xl { font-size: 36px; }
.text-label-sm { font-size: 12px; line-height: 16px; font-weight: 500; }
.text-label-md { font-size: 14px; line-height: 16px; font-weight: 600; }
.text-body-sm { font-size: 14px; line-height: 20px; }
.text-body-md { font-size: 16px; line-height: 24px; }
.text-body-lg { font-size: 18px; line-height: 28px; }
.text-headline-md, .text-headline-md-mobile { font-size: 24px; line-height: 32px; }
.text-headline-sm { font-size: 20px; line-height: 28px; }
.text-headline-lg { font-size: 32px; line-height: 40px; }
.text-display-lg { font-size: 48px; line-height: 56px; }
.text-display-lg-mobile { font-size: 32px; line-height: 40px; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-body-md, .font-body-sm, .font-body-lg { font-family: var(--font-sans); }
.font-label-md { font-weight: 600; }
.font-label-sm { font-weight: 500; }
.font-label-md, .font-label-sm { font-family: var(--font-sans); }
.font-headline-md, .font-headline-lg, .font-display-lg, .font-display-lg-mobile { font-family: var(--font-display); font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: .08em; }
.tracking-tighter { letter-spacing: -.02em; }
.leading-tight { line-height: 1.25; }

.shadow-sm { box-shadow: 0 1px 2px rgba(7, 26, 47, .05); }
.shadow-md, .hover\:shadow-md:hover { box-shadow: 0 8px 24px rgba(7, 26, 47, .08); }
.shadow-xl { box-shadow: 0 20px 40px rgba(7, 26, 47, .16); }
.transition-colors { transition: color .2s, background-color .2s, border-color .2s; }
.transition-shadow { transition: box-shadow .2s; }
.transition-transform { transition: transform .3s; }
.transition-all { transition: all .2s; }
.duration-500 { transition-duration: .5s; }
.duration-700 { transition-duration: .7s; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-secondary, .hover\:text-secondary:hover { color: #0058bc; }
.hover\:text-primary:hover { color: #000f22; }
.hover\:border-secondary:hover { border-color: #0058bc; }
.hover\:shadow-sm:hover { box-shadow: 0 1px 8px rgba(7, 26, 47, .08); }
.hover\:bg-surface-container-low:hover { background-color: #eff4ff; }
.hover\:bg-surface-container-high:hover { background-color: #dce9ff; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.selection\:bg-surface-container-highest::selection { background: #d3e4fe; }

input,
select {
    border: 1px solid #c4c6ce;
    background: #fff;
    color: #0b1c30;
}
input:focus,
select:focus { outline: none; border-color: #0058bc; }

.article-body-content h2 {
    border-left: 3px solid #2c6fc7;
    border-radius: 4px;
    background: linear-gradient(90deg, #f4f8fe 0%, #fbfdff 100%);
    color: #000f22;
    font-size: 19px;
    line-height: 28px;
    font-weight: 500;
    margin: 30px 0 13px;
    padding: 8px 12px;
}
.article-body-content h3 {
    color: #000f22;
    font-size: 17px;
    line-height: 26px;
    font-weight: 550;
    margin: 22px 0 10px;
}
.article-body-content p { color: #26384e; font-size: 16px; line-height: 30px; margin: 0 0 17px; }
.article-body-content ul { list-style: disc; padding-left: 24px; margin: 0 0 20px; color: #26384e; }
.article-body-content li { margin: 8px 0; }
.article-body-content strong,
.article-body-content b { font-weight: 600; }
.article-body-content .article-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #d7e1ef;
    border-radius: 6px;
    margin: 20px 0 26px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(10, 37, 64, .06);
}
.article-body-content table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 22px;
}
.article-body-content th {
    background: #0a2540;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 12px 14px;
}
.article-body-content td {
    border-top: 1px solid #e2e8f0;
    color: #26384e;
    padding: 12px 14px;
    vertical-align: top;
}
.article-body-content tr:nth-child(even) td {
    background: #f8fbff;
}
.article-context-links {
    border-top: 1px solid #d7e1ef;
    margin-top: 34px;
    padding-top: 24px;
}
.article-context-links > div {
    margin-bottom: 14px;
}
.article-context-links > div span {
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.article-context-links h2 {
    color: #000f22;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin: 3px 0 0;
}
.article-context-links nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.article-context-links a {
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #f8fbff;
    padding: 13px 14px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.article-context-links a:hover {
    border-color: #0058bc;
    box-shadow: 0 10px 22px rgba(10, 37, 64, .08);
    transform: translateY(-1px);
}
.article-context-links strong {
    display: block;
    color: #000f22;
    font-size: 15px;
    line-height: 21px;
    font-weight: 450;
}
.article-context-links em {
    display: block;
    color: #687384;
    font-size: 12px;
    line-height: 17px;
    font-style: normal;
    margin-top: 4px;
}
.article-side-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.article-side-box {
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 22px;
}
.article-side-box h3 {
    color: #000f22;
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    margin: 0 0 12px;
}
.article-side-box p {
    color: #43474d;
    font-size: 14px;
    line-height: 23px;
    margin: 0;
}
.article-side-link {
    display: block;
    border-top: 1px solid #e2e8f0;
    padding: 14px 0;
}
.article-side-link span {
    display: block;
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.article-side-link strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000f22;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    overflow: hidden;
}
.article-related-block {
    border-top: 1px solid #d7e1ef;
    margin-top: 34px;
    padding-top: 30px;
}
.article-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.article-related-head span {
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    text-transform: uppercase;
}
.article-related-head h2 {
    color: #000f22;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
}
.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.article-related-card {
    display: block;
    min-height: 160px;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.article-related-card:hover {
    border-color: #8fb6e8;
    box-shadow: 0 14px 30px rgba(10, 37, 64, .08);
    transform: translateY(-2px);
}
.article-related-card span {
    display: block;
    color: #0058bc;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}
.article-related-card strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000f22;
    font-size: 16px;
    line-height: 23px;
    font-weight: 450;
    overflow: hidden;
}
.article-related-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 13px;
    line-height: 21px;
    margin: 10px 0 0;
    overflow: hidden;
}
.legal-card h2 {
    color: #000f22;
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
    margin: 30px 0 10px;
}
.legal-card p {
    color: #26384e;
    font-size: 16px;
    line-height: 29px;
    margin: 0 0 14px;
}

.text-3xl.local-icon { width: 30px; height: 30px; }
.text-4xl.local-icon { width: 36px; height: 36px; }
.text-\[18px\].local-icon { width: 18px; height: 18px; }
.text-\[12px\].local-icon { width: 12px; height: 12px; }

header.fixed { box-shadow: 0 1px 0 rgba(196, 198, 206, .32); }
main.pt-20 { padding-top: 96px; }
.hero-gradient:first-child { margin-top: -16px; padding-top: 64px; }
.hero-gradient .aspect-\[16\/9\] { min-height: 430px; }
.hero-gradient .aspect-\[16\/9\] img,
.aspect-\[4\/3\] img,
.h-48 img,
.h-56 img,
.w-20.h-20 img { width: 100%; height: 100%; object-fit: cover; }
.aspect-\[4\/3\] { min-height: 190px; }
.w-20.h-20 { width: 80px; height: 80px; }
.pc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.18fr) minmax(360px, .92fr);
    gap: 24px;
    align-items: stretch;
}
.pc-hero-left,
.pc-hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}
.pc-hero-main-image,
.pc-hero-side-stack {
    height: 430px;
}
.pc-hero-main-image {
    width: 100%;
    aspect-ratio: auto;
}
.pc-hero-badge {
    display: inline-block;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(0, 15, 34, .68);
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding: 4px 12px;
}
.pc-hero-side-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pc-hero-side-card {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}
.pc-hero-side-card > span {
    display: block;
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}
.pc-hero-side-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000f22;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin: 0 0 12px;
    overflow: hidden;
}
.pc-hero-side-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 14px;
    line-height: 21px;
    margin: 0;
    overflow: hidden;
}
.pc-hero-banner,
.pc-hero-risk-card {
    height: 128px;
}
.pc-hero-banner {
    display: block;
    background: #dff7f2 url("/images/hero-banner-placeholder.svg") center / cover no-repeat;
}
.pc-hero-risk-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}
.pc-hero-risk-card h3 {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 10px;
}
.pc-hero-risk-card p {
    color: #b0c8eb;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}
.pc-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.pc-category-head h2 {
    margin: 0;
}
.pc-category-controls {
    display: flex;
    gap: 10px;
}
.pc-category-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    color: #0058bc;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(7, 26, 47, .05);
    transition: border-color .2s, background-color .2s, color .2s, box-shadow .2s, transform .2s;
}
.pc-category-controls button:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: #0058bc;
    background: #eff4ff;
    box-shadow: 0 10px 24px rgba(7, 26, 47, .08);
}
.pc-category-controls button:disabled {
    color: #9aa3af;
    cursor: not-allowed;
    opacity: .55;
}
.pc-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.pc-category-card {
    position: relative;
    display: none;
    min-height: 164px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 24px 20px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pc-category-card::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 50%;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #eff4ff;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity .2s;
}
.pc-category-card.is-visible {
    display: flex;
}
.pc-category-card:hover {
    transform: translateY(-2px);
    border-color: #0058bc;
    box-shadow: 0 14px 34px rgba(7, 26, 47, .08);
}
.pc-category-card .local-icon {
    flex: 0 0 36px;
    position: relative;
    z-index: 1;
}
.pc-category-card:hover::before {
    opacity: 1;
}
.pc-category-card strong {
    color: #000f22;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pc-category-card em {
    color: #5d6470;
    font-size: 14px;
    line-height: 20px;
    font-style: normal;
}
.home-side-card {
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(7, 26, 47, .04);
}
.home-latest-side {
    position: sticky;
    top: 112px;
    align-self: flex-start;
}
.home-side-card h3 {
    color: #000f22;
    font-size: 19px;
    line-height: 26px;
    font-weight: 800;
    margin: 0 0 12px;
}
.home-side-card p {
    color: #43474d;
    font-size: 14px;
    line-height: 23px;
    margin: 0;
}
.home-score-panel {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px 14px;
    border-radius: 8px;
    background: #eff4ff;
    padding: 26px;
}
.home-score-panel > .local-icon {
    margin-top: 2px;
}
.home-score-panel h3 {
    color: #000f22;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 6px;
}
.home-score-panel p {
    color: #43474d;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}
.home-score-panel a {
    grid-column: 1 / -1;
    display: block;
    border-radius: 8px;
    background: #000f22;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-top: 6px;
    padding: 12px 14px;
    text-align: center;
}
.home-side-category {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
    padding: 12px 0;
}
.home-side-category span {
    color: #0b1c30;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.home-side-category em {
    margin-left: auto;
    color: #74777e;
    font-size: 12px;
    line-height: 16px;
    font-style: normal;
}
.pc-feed-item {
    display: flex;
    gap: 28px;
    align-items: center;
}
.pc-feed-thumb {
    display: block;
    width: 300px;
    height: 170px;
    flex: 0 0 300px;
    background: #0a2540;
}
.pc-feed-copy h3 {
    line-height: 28px;
    font-weight: 500;
    margin: 8px 0 7px;
    max-height: 56px;
    overflow: hidden;
}
.pc-feed-copy p {
    line-height: 22px;
    max-height: 44px;
    overflow: hidden;
}
.pc-feed-copy {
    height: 170px;
    min-width: 0;
    overflow: hidden;
}
.pc-feed-meta {
    min-height: 18px;
    line-height: 16px;
}
.mobile-feed-copy {
    min-width: 0;
    height: 72px;
    gap: 8px;
    overflow: hidden;
}
.mobile-feed-copy h4 {
    line-height: 19px;
    font-weight: 500;
    max-height: 38px;
    margin: 0;
    overflow: hidden;
}
.mobile-feed-copy p {
    line-height: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mobile-feed-thumb {
    width: 112px;
    height: 76px;
    flex: 0 0 112px;
    background: #0a2540;
}
.mobile-feed-item {
    background: #fff;
    border-color: #d7e1ef;
    box-shadow: 0 8px 22px rgba(7, 26, 47, .06);
}
.mobile-feed-item:hover {
    border-color: #adc6ff;
    box-shadow: 0 10px 28px rgba(7, 26, 47, .08);
}
.mobile-feed-copy p span:first-child {
    background: #eff4ff;
    border-radius: 8px;
    padding: 1px 6px;
    line-height: 15px;
    max-width: 68px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mobile-feature-card {
    width: 80vw;
}
.mobile-feature-thumb {
    height: 168px;
}
.mobile-feature-copy h3 {
    line-height: 25px;
}
.listing-empty-state {
    border: 1px dashed #adc6ff;
    border-radius: 8px;
    background: #f8fbff;
    padding: 28px;
    text-align: center;
}
.listing-empty-state > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #eff4ff;
    margin-bottom: 12px;
}
.listing-empty-state h3 {
    color: #000f22;
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 8px;
}
.listing-empty-state p {
    color: #43474d;
    font-size: 14px;
    line-height: 22px;
    margin: 0 auto 16px;
    max-width: 520px;
}
.listing-empty-state div {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.listing-empty-state a {
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    color: #0058bc;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
    padding: 8px 12px;
}
.listing-empty-state small {
    display: block;
    color: #74777e;
    font-size: 12px;
    line-height: 18px;
    margin-top: 14px;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    border-top: 1px solid #d7e1ef;
    padding-top: 28px;
}
.pagination-summary {
    color: #5d6470;
    font-size: 14px;
    line-height: 20px;
}
.pagination-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}
.pagination-link,
.pagination-ellipsis {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}
.pagination-link {
    border: 1px solid #d7e1ef;
    background: #fff;
    color: #0b1c30;
    padding: 0 12px;
    transition: border-color .2s, background-color .2s, color .2s;
}
.pagination-link:hover {
    border-color: #0058bc;
    color: #0058bc;
}
.pagination-link.is-active {
    border-color: #0058bc;
    background: #0058bc;
    color: #fff;
}
.pagination-prev,
.pagination-next {
    min-width: 72px;
}
.pagination-ellipsis {
    color: #7c838e;
}
.mobile-menu-button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #0058bc;
    padding: 0;
    transition: background-color .2s;
}
.mobile-menu-button:hover {
    background: #eff4ff;
}
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(4, 18, 33, .28);
}
.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    z-index: 60;
    background: #fff;
    border: 1px solid #c4c6ce;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(7, 26, 47, .16);
    padding: 14px;
}
.mobile-menu-open .mobile-menu-backdrop,
.mobile-menu-open .mobile-menu-panel {
    display: block;
}
.mobile-menu-title {
    color: #000f22;
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    padding: 6px 8px 12px;
}
.mobile-menu-panel a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 42px;
    border-top: 1px solid #e2e8f0;
    color: #0b1c30;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 8px;
}
.mobile-menu-panel a span {
    color: #0058bc;
    font-size: 12px;
    font-weight: 600;
}
.pc-footer {
    border-color: rgba(255, 255, 255, .05);
    padding-top: 32px;
}
.pc-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 32px;
    padding-bottom: 32px;
}
.pc-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pc-footer-brand p {
    max-width: 384px;
    margin: 0;
    color: #d8e2ff;
    font-weight: 400;
    opacity: .8;
}
.pc-footer-social {
    padding-top: 16px;
}
.pc-footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s;
}
.pc-footer-social-link:hover {
    background: rgba(255, 255, 255, .1);
}
.pc-footer-compliance {
    max-width: 430px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    color: #d8e2ff;
    font-size: 12px;
    line-height: 20px;
    padding: 12px 14px;
    opacity: .86;
}
.pc-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pc-footer-links a {
    color: #d8e2ff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    opacity: .8;
    transition: color .2s, opacity .2s, transform .2s;
}
.pc-footer-links a:hover {
    color: #fff;
    opacity: 1;
    transform: translateX(4px);
}
.pc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.pc-footer-bottom p {
    margin: 0;
    color: #d8e2ff;
    font-weight: 400;
    opacity: .6;
}
.pc-footer-icp,
.mobile-footer-icp a {
    color: #d8e2ff;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    opacity: .72;
    transition: opacity .2s;
}
.pc-footer-icp:hover,
.mobile-footer-icp a:hover {
    opacity: 1;
}
.mobile-footer-icp {
    margin: 6px 0 0;
}
.mobile-footer-icp a {
    color: #687384;
}

.topic-home-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.topic-center-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.topic-card {
    position: relative;
    display: flex;
    min-height: 210px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(7, 26, 47, .04);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.topic-card::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -28px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #eff4ff;
}
.topic-card:hover {
    transform: translateY(-2px);
    border-color: #adc6ff;
    box-shadow: 0 14px 34px rgba(7, 26, 47, .08);
}
.topic-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    border-radius: 8px;
    background: #eff4ff;
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    padding: 4px 10px;
}
.topic-card span b {
    display: inline-flex;
    border-radius: 8px;
    background: #0058bc;
    color: #fff;
    font-size: 11px;
    line-height: 14px;
    margin: -1px 7px -1px -6px;
    padding: 3px 7px;
}
.topic-card h3 {
    position: relative;
    z-index: 1;
    color: #000f22;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin: 18px 0 10px;
}
.topic-center-grid .topic-card h3 {
    font-size: 19px;
    line-height: 27px;
}
.topic-center-grid .topic-card {
    min-height: 190px;
    padding: 20px;
}
.topic-card p {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 66px;
    color: #43474d;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    overflow: hidden;
}
.topic-card i {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    color: #0058bc;
    font-style: normal;
    margin-top: 18px;
}
.topic-center-hero {
    padding: 48px 0 42px;
}
.topic-center-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: end;
}
.topic-center-head p {
    max-width: 760px;
}
.topic-center-tool {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: linear-gradient(135deg, #001a41 0%, #003060 100%);
    padding: 18px;
    box-shadow: 0 14px 34px rgba(7, 26, 47, .16);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.topic-center-tool:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .34);
    box-shadow: 0 18px 40px rgba(7, 26, 47, .22);
}
.topic-center-tool-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    color: #d3e4fe;
}
.topic-center-tool-copy {
    display: block;
    min-width: 0;
}
.topic-center-tool strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}
.topic-center-tool em {
    display: block;
    color: #b0c8eb;
    font-size: 14px;
    line-height: 22px;
    font-style: normal;
    margin-top: 3px;
}
.topic-center-tool-arrow {
    color: #d3e4fe;
    width: 20px;
    height: 20px;
}
.topic-center-main {
    padding: 48px 0 64px;
}
.topic-latest-strip {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    border-top: 1px solid #d7e1ef;
    margin-top: 44px;
    padding-top: 28px;
}
.topic-latest-strip h2 {
    color: #000f22;
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}
.topic-latest-strip div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
}
.topic-latest-strip a {
    display: flex;
    gap: 10px;
    min-width: 0;
    color: #0b1c30;
    font-size: 14px;
    line-height: 20px;
}
.topic-latest-strip span {
    flex-shrink: 0;
    color: #0058bc;
    font-weight: 600;
}
.topic-detail-pc {
    padding-top: 32px;
    padding-bottom: 64px;
}
.topic-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, .82fr);
    gap: 32px;
    align-items: start;
}
.topic-detail-main {
    min-width: 0;
}
.topic-detail-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 40px;
}
.topic-detail-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(211, 228, 254, .5);
}
.topic-detail-hero span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    border-radius: 8px;
    background: #d8e2ff;
    color: #001a41;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    padding: 5px 12px;
    margin-bottom: 18px;
}
.topic-detail-hero h1 {
    position: relative;
    z-index: 1;
    color: #000f22;
    font-size: 48px;
    line-height: 56px;
    margin: 0 0 16px;
}
.topic-detail-hero p {
    position: relative;
    z-index: 1;
    max-width: 720px;
    color: #43474d;
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
.topic-section {
    margin-top: 32px;
}
.topic-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.topic-section-title h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000f22;
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}
.topic-section-title i {
    height: 1px;
    flex: 1;
    background: #d7e1ef;
}
.topic-must-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.topic-must-card {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    transition: background-color .2s, border-color .2s;
}
.topic-must-card:hover,
.topic-deep-item:hover {
    border-color: #adc6ff;
    background: #f8fbff;
}
.topic-must-card span {
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}
.topic-must-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000f22;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin: 8px 0;
    overflow: hidden;
}
.topic-must-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    overflow: hidden;
}
.topic-must-card em {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #74777e;
    font-size: 12px;
    line-height: 16px;
    font-style: normal;
    margin-top: 18px;
}
.topic-deep-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.topic-deep-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #d7e1ef;
    border-left: 4px solid #0058bc;
    border-radius: 0 8px 8px 0;
    background: #fff;
    padding: 18px 20px;
    transition: background-color .2s, border-color .2s;
}
.topic-deep-item div {
    min-width: 0;
}
.topic-deep-item span {
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}
.topic-deep-item h3 {
    color: #000f22;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin: 6px 0;
}
.topic-deep-item p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    overflow: hidden;
}
.topic-more-row {
    display: flex;
    justify-content: center;
    border-top: 1px solid #d7e1ef;
    margin-top: 22px;
    padding-top: 22px;
}
.topic-more-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #0058bc;
    border-radius: 8px;
    background: #fff;
    color: #0058bc;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding: 11px 18px;
    transition: background-color .2s, color .2s;
}
.topic-more-row a:hover {
    background: #0058bc;
    color: #fff;
}
.topic-detail-side {
    display: flex;
    position: sticky;
    top: 112px;
    flex-direction: column;
    gap: 20px;
}
.topic-side-feature,
.topic-side-box {
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.topic-side-feature img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: #0a2540;
}
.topic-side-feature strong {
    display: block;
    color: #000f22;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    padding: 18px 18px 6px;
}
.topic-side-feature span {
    display: block;
    color: #74777e;
    font-size: 12px;
    line-height: 16px;
    padding: 0 18px 18px;
}
.topic-side-box {
    padding: 20px;
}
.topic-side-box h3 {
    color: #000f22;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 10px;
}
.topic-side-box p {
    color: #43474d;
    font-size: 14px;
    line-height: 23px;
    margin: 0;
}
.topic-side-guide {
    border-color: #f4c56a;
    border-left: 4px solid #b86b00;
    background: linear-gradient(135deg, #fff7df 0%, #fffdf7 100%);
    box-shadow: 0 10px 26px rgba(120, 75, 0, .08);
}
.topic-side-guide h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4c2f00;
}
.topic-side-guide-icon {
    color: #b86b00;
    width: 18px;
    height: 18px;
}
.topic-side-guide p {
    color: #5f4a24;
}
.topic-side-box a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    color: #0b1c30;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding: 12px 0;
}
.topic-side-box a span {
    flex-shrink: 0;
    color: #0058bc;
    font-weight: 600;
}
.mobile-topic-chip {
    display: flex;
    width: 78vw;
    min-height: 160px;
    flex: 0 0 78vw;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(7, 26, 47, .05);
}
.mobile-topic-chip span {
    width: fit-content;
    border-radius: 8px;
    background: #eff4ff;
    color: #0058bc;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
}
.mobile-topic-chip strong {
    color: #000f22;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 12px;
}
.mobile-topic-chip em {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 13px;
    line-height: 20px;
    font-style: normal;
    margin-top: 8px;
    overflow: hidden;
}
.mobile-topic-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.mobile-topic-list .topic-card {
    min-height: 170px;
}
.topic-mobile-latest {
    display: block;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 14px;
}
.topic-mobile-latest span {
    display: block;
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.topic-mobile-latest strong {
    display: block;
    color: #000f22;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
}
.topic-mobile-hero {
    background: #eff4ff;
    padding-top: 24px;
    padding-bottom: 28px;
}
.topic-mobile-hero span {
    border-radius: 8px;
    background: #0070eb;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    padding: 4px 8px;
}
.topic-mobile-hero em {
    color: #43474d;
    font-size: 12px;
    line-height: 16px;
    font-style: normal;
    font-weight: 600;
}
.topic-mobile-hero h1 {
    color: #000f22;
    font-size: 32px;
    line-height: 40px;
    margin: 12px 0 10px;
}
.topic-mobile-hero p {
    color: #43474d;
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}
.topic-mobile-must {
    display: block;
    min-width: 280px;
    width: 280px;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
}
.topic-mobile-must h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000f22;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    margin: 12px 0 8px;
    overflow: hidden;
}
.topic-mobile-must p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 13px;
    line-height: 20px;
    margin: 0;
    overflow: hidden;
}
.topic-mobile-feature {
    display: block;
    overflow: hidden;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
}
.topic-mobile-feature div {
    position: relative;
    height: 190px;
    background: #0a2540;
}
.topic-mobile-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.topic-mobile-feature span {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 15, 34, .7), transparent);
}
.topic-mobile-feature h3 {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    margin: 0;
}
.topic-mobile-feature p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    padding: 14px;
    overflow: hidden;
}
.topic-mobile-row {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    padding: 14px;
}
.topic-mobile-row div {
    min-width: 0;
    flex: 1;
}
.topic-mobile-row strong {
    display: block;
    color: #000f22;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}
.topic-mobile-row p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 12px;
    line-height: 18px;
    margin: 4px 0 0;
    overflow: hidden;
}
.topic-mobile-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #0058bc;
    border-radius: 8px;
    background: #fff;
    color: #0058bc;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding: 13px;
}
.mobile-related-content {
    margin-top: -10px;
}
.mobile-related-content h2 {
    color: #000f22;
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    margin: 0 0 12px;
}
.mobile-related-content div {
    display: grid;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.mobile-related-content a {
    display: block;
    padding: 13px 14px;
}
.mobile-related-content a + a {
    border-top: 1px solid #e2e8f0;
}
.mobile-related-content strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000f22;
    font-size: 15px;
    line-height: 21px;
    font-weight: 450;
    overflow: hidden;
}
.mobile-related-content span {
    display: block;
    color: #687384;
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px;
}
.mobile-related-articles {
    margin-top: 6px;
}
.mobile-related-articles h2 {
    color: #000f22;
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    margin: 0 0 14px;
}
.mobile-related-articles div {
    display: grid;
    gap: 12px;
}
.mobile-related-articles a {
    display: block;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    background: #f8fbff;
    padding: 14px;
}
.mobile-related-articles span {
    display: block;
    color: #0058bc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}
.mobile-related-articles strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000f22;
    font-size: 15px;
    line-height: 22px;
    font-weight: 450;
    overflow: hidden;
}
.mobile-related-articles p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #43474d;
    font-size: 12px;
    line-height: 19px;
    margin: 7px 0 0;
    overflow: hidden;
}
.mobile-article-note {
    border-left: 4px solid #0058bc;
    border-radius: 8px;
    background: #f4f8ff;
    padding: 13px 14px;
}
.mobile-article-note p {
    color: #000f22;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    margin: 0 0 4px;
}
.mobile-article-note span {
    display: block;
    color: #43474d;
    font-size: 13px;
    line-height: 21px;
}

.score-tool-hero {
    padding-top: 64px;
    padding-bottom: 44px;
    margin-top: -16px;
}
.score-tool-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(360px, .82fr);
    gap: 24px;
    align-items: start;
    padding-top: 32px;
    padding-bottom: 56px;
}
.score-form,
.score-mobile-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.score-form-card,
.score-result-panel {
    background: #fff;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(7, 26, 47, .05);
}
.score-form-card {
    padding: 24px;
}
.score-form-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
}
.score-form-head h2,
.score-form-card h2 {
    color: #000f22;
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}
.score-form-head p {
    color: #43474d;
    font-size: 14px;
    line-height: 22px;
    margin: 4px 0 0;
}
.score-form-head > span {
    color: #0058bc;
    background: #eff4ff;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.score-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.score-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.score-field span {
    color: #26384e;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
}
.score-field select {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    padding: 0 12px;
    background: #f8f9ff;
}
.score-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    margin-top: 24px;
    padding-top: 20px;
}
.score-form-actions button {
    min-width: 120px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d7e1ef;
    background: #fff;
    color: #0b1c30;
    font-weight: 700;
}
.score-form-actions button[type="submit"] {
    border-color: #000f22;
    background: #000f22;
    color: #fff;
}
.score-result-panel {
    position: sticky;
    top: 112px;
    min-height: 520px;
    overflow: hidden;
}
.score-placeholder {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px;
}
.score-placeholder .local-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}
.score-placeholder h2 {
    color: #000f22;
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 8px;
}
.score-placeholder p {
    color: #43474d;
    margin: 0;
}
.score-result-card {
    padding: 28px;
    border-left: 0;
}
.score-result-card.tone-low,
.score-result-card.tone-good {
    border-left-color: #1f9c8f;
}
.score-result-card.tone-high,
.score-result-card.tone-critical {
    border-left-color: #ba1a1a;
}
.score-analyzing {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px;
}
.score-analyzing-ring {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 7px solid #dce9ff;
    border-top-color: #0058bc;
    animation: score-spin 1s linear infinite;
}
.score-analyzing h2 {
    color: #000f22;
    font-size: 24px;
    line-height: 32px;
    margin: 22px 0 8px;
}
.score-analyzing p {
    color: #43474d;
    margin: 0;
}
.score-analyzing-track {
    width: 240px;
    height: 8px;
    border-radius: 8px;
    background: #e5eeff;
    margin-top: 22px;
    overflow: hidden;
}
.score-analyzing-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #0058bc;
    transition: width .45s ease;
}
@keyframes score-spin {
    to { transform: rotate(360deg); }
}
.score-warning-top {
    margin-top: 0;
    margin-bottom: 18px;
}
.score-gauge {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    padding-top: 8px;
}
.score-gauge svg {
    display: block;
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 1;
}
.gauge-track,
.gauge-arc {
    fill: none;
    stroke-linecap: round;
}
.gauge-track,
.gauge-arc {
    stroke-width: 20;
}
.gauge-track {
    stroke: #e5eeff;
}
.gauge-arc {
    stroke: url(#scoreGaugeGradient);
    filter: drop-shadow(0 8px 12px rgba(7, 26, 47, .08));
}
.gauge-ticks line {
    stroke: rgba(255, 255, 255, .78);
    stroke-width: 2.6;
    stroke-linecap: round;
}
.gauge-needle {
    fill: var(--score-tone-color, #000f22);
    transform-origin: 120px 120px;
    transform: rotate(var(--needle-angle));
    transition: transform 1.15s cubic-bezier(.2, .9, .25, 1);
    filter: drop-shadow(0 5px 6px rgba(7, 26, 47, .22));
}
.gauge-center {
    fill: var(--score-tone-color, #000f22);
    stroke: #fff;
    stroke-width: 3;
}
.gauge-center-dot {
    fill: #fff;
    opacity: .95;
}
.score-gauge-value {
    position: absolute;
    left: 50%;
    top: 73%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 190px;
    z-index: 3;
    pointer-events: none;
}
.score-gauge-value::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 58%;
    z-index: -1;
    width: 142px;
    height: 72px;
    border-radius: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 48%, rgba(255, 255, 255, 0) 76%);
    transform: translate(-50%, -50%);
}
.score-gauge-value span {
    display: block;
    color: #43474d;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}
.score-gauge-value strong {
    display: block;
    color: var(--score-tone-color, #000f22);
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0;
    margin-top: 2px;
    -webkit-text-stroke: 3px rgba(255, 255, 255, .94);
    paint-order: stroke fill;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .98), 0 10px 18px rgba(7, 26, 47, .08);
}
.score-gauge-value em {
    display: inline-flex;
    color: var(--score-tone-color, #0058bc);
    background: var(--score-tone-bg, #eff4ff);
    border-radius: 8px;
    font-size: 13px;
    line-height: 20px;
    font-style: normal;
    font-weight: 600;
    padding: 2px 10px;
    margin-top: 6px;
}
.score-gauge-scale {
    display: flex;
    justify-content: space-between;
    color: #687384;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    margin-top: -10px;
    padding: 0 20px;
}
.score-result-card.tone-low .score-gauge-value em,
.score-result-card.tone-good .score-gauge-value em {
    color: #0a704e;
    background: #e3f7ef;
}
.score-result-card.tone-high .score-gauge-value em,
.score-result-card.tone-critical .score-gauge-value em {
    color: #93000a;
    background: #ffdad6;
}
.score-tone-red {
    --score-tone-color: #8b0012;
    --score-tone-bg: #ffdad6;
}
.score-tone-orange {
    --score-tone-color: #b3451f;
    --score-tone-bg: #fff0d5;
}
.score-tone-yellow {
    --score-tone-color: #987500;
    --score-tone-bg: #fff6cf;
}
.score-tone-blue {
    --score-tone-color: #1b75d0;
    --score-tone-bg: #e5f0ff;
}
.score-tone-green {
    --score-tone-color: #0a704e;
    --score-tone-bg: #e3f7ef;
}
.score-result-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 14px;
    align-items: end;
}
.score-result-top span {
    color: #43474d;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
}
.score-result-top strong {
    grid-row: span 2;
    color: #000f22;
    font-size: 64px;
    line-height: 1;
    letter-spacing: 0;
}
.score-result-top em {
    color: #0058bc;
    font-size: 24px;
    line-height: 32px;
    font-style: normal;
    font-weight: 600;
}
.score-level-summary {
    color: #26384e;
    margin: 18px 0 0;
}
.score-prob-grid {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.score-prob-grid div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    background: #eff4ff;
    border-radius: 8px;
    padding: 12px;
}
.score-prob-grid span {
    color: #43474d;
    font-size: 13px;
}
.score-prob-grid b {
    color: #000f22;
    font-size: 14px;
}
.score-prob-bars {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}
.score-prob-row-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #26384e;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.score-prob-row-head b {
    color: #000f22;
}
.score-prob-track {
    height: 12px;
    border-radius: 8px;
    background: #e5eeff;
    overflow: hidden;
}
.score-prob-track i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #0058bc;
    transition: width 1s cubic-bezier(.2, .9, .25, 1);
}
.score-prob-row.is-filled .score-prob-track i {
    width: var(--target);
}
.score-prob-row.tone-good .score-prob-track i { background: #159466; }
.score-prob-row.tone-stable .score-prob-track i { background: #1b75d0; }
.score-prob-row.tone-weak .score-prob-track i { background: #d6532f; }
.score-prob-row.tone-critical .score-prob-track i { background: #8b000f; }
.score-warning {
    background: #fff4f2;
    border: 1px solid #ffdad6;
    border-radius: 8px;
    margin-top: 18px;
    padding: 14px;
}
.score-warning strong,
.score-result-section h3,
.score-privacy-note strong {
    color: #000f22;
    font-size: 14px;
    line-height: 20px;
}
.score-warning p,
.score-privacy-note span {
    color: #43474d;
    display: block;
    font-size: 13px;
    line-height: 20px;
    margin: 4px 0 0;
}
.score-result-section {
    margin-top: 20px;
}
.score-basis {
    display: grid;
    gap: 10px;
}
.score-basis h3 {
    margin-bottom: 0;
}
.score-basis-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
}
.score-basis-item strong {
    color: #000f22;
    font-size: 14px;
    line-height: 20px;
}
.score-basis-item p {
    color: #687384;
    font-size: 12px;
    line-height: 18px;
    margin: 2px 0 0;
}
.score-basis-item span {
    flex: 0 0 auto;
    border-radius: 8px;
    color: #0058bc;
    background: #eff4ff;
    font-size: 12px;
    line-height: 18px;
    font-weight: 800;
    padding: 3px 8px;
}
.score-basis-item.tone-good span,
.score-basis-item.tone-stable span {
    color: #0a704e;
    background: #e3f7ef;
}
.score-basis-item.tone-weak span {
    color: #a73d19;
    background: #fff0d5;
}
.score-basis-item.tone-critical span {
    color: #93000a;
    background: #ffdad6;
}
.score-result-section h3 {
    margin: 0 0 10px;
}
.score-result-section ul,
.score-result-section ol {
    margin: 0;
    padding: 0;
}
.score-result-section li {
    color: #26384e;
    font-size: 14px;
    line-height: 21px;
    margin: 8px 0;
}
.score-result-section ul li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}
.score-result-section li.positive b {
    color: #1f9c8f;
}
.score-result-section li.negative b {
    color: #ba1a1a;
}
.score-result-section ol {
    padding-left: 18px;
}
.score-privacy-note {
    background: #f8f9ff;
    border: 1px dashed #adc6ff;
    border-radius: 8px;
    margin-top: 18px;
    padding: 14px;
}
.score-mobile-hero {
    margin-bottom: 20px;
}
.score-stepbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.score-stepbar span {
    color: #768dad;
    background: #e5eeff;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    white-space: nowrap;
}
.score-stepbar span.is-active {
    color: #fff;
    background: #0058bc;
}
.score-stepbar i {
    flex: 1;
    height: 2px;
    background: #d7e1ef;
}

@media (max-width: 767px) {
    .text-display-lg { font-size: 32px; line-height: 40px; }
    .px-margin-desktop { padding-left: 16px; padding-right: 16px; }
    .article-body-content h2 {
        border-radius: 4px;
        font-size: 17px;
        line-height: 25px;
        margin: 24px 0 11px;
        padding: 7px 10px;
    }
    .article-body-content h3 {
        font-size: 16px;
        line-height: 24px;
        margin: 19px 0 9px;
    }
    .article-body-content p {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 15px;
    }
    .article-body-content ul {
        padding-left: 20px;
        margin-bottom: 17px;
    }
    .article-body-content li {
        font-size: 15px;
        line-height: 26px;
        margin: 6px 0;
    }
    .article-body-content .article-table-wrap {
        margin: 16px -2px 22px;
        border-radius: 6px;
    }
    .article-body-content table {
        min-width: 560px;
        font-size: 13px;
        line-height: 20px;
    }
    .article-body-content th,
    .article-body-content td {
        padding: 10px 12px;
    }
    .article-context-links {
        margin-top: 26px;
        padding-top: 20px;
    }
    .article-context-links h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .article-context-links nav {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .article-context-links a {
        padding: 12px 13px;
    }
    .topic-center-grid,
    .topic-home-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .topic-card {
        min-height: 170px;
        padding: 18px;
    }
    .topic-card h3 {
        font-size: 18px;
        line-height: 24px;
        margin: 14px 0 8px;
    }
    .topic-card p {
        min-height: auto;
        -webkit-line-clamp: 2;
        font-size: 13px;
        line-height: 20px;
    }
    .pagination {
        display: block;
        margin-top: 28px;
        padding-top: 20px;
    }
    .pagination-summary {
        display: none;
    }
    .pagination-links {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 5px;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }
    .pagination-link,
    .pagination-ellipsis {
        min-width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 18px;
        flex: 0 0 auto;
    }
    .pagination-link {
        padding: 0 8px;
    }
    .pagination-prev,
    .pagination-next {
        min-width: 54px;
    }
    .score-mobile-form {
        gap: 16px;
    }
    .score-form-card {
        padding: 18px;
    }
    .score-form-card h2 {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 14px;
    }
    .score-field {
        margin-top: 12px;
    }
    .score-field-grid {
        grid-template-columns: 1fr;
    }
    .score-field select {
        height: 46px;
    }
    .score-mobile-actions {
        position: sticky;
        bottom: 72px;
        z-index: 20;
        background: rgba(248, 249, 255, .96);
        border: 1px solid #d7e1ef;
        border-radius: 8px;
        padding: 10px;
        margin-top: 0;
    }
    .score-mobile-actions button {
        flex: 1;
        min-width: 0;
    }
    .score-result-panel {
        position: static;
        min-height: auto;
        margin-top: 20px;
        margin-bottom: 28px;
    }
    .score-placeholder {
        min-height: 260px;
        padding: 24px;
    }
    .score-analyzing {
        min-height: 260px;
        padding: 24px;
    }
    .score-analyzing-track {
        width: 190px;
    }
    .score-result-card {
        padding: 20px;
    }
    .score-warning-top {
        margin-bottom: 14px;
    }
    .score-gauge {
        max-width: 280px;
    }
    .score-gauge-value {
        top: 72%;
        width: 160px;
    }
    .score-gauge-value strong {
        font-size: 40px;
    }
    .score-gauge-value::before {
        width: 124px;
        height: 62px;
    }
    .score-gauge-scale {
        margin-top: -4px;
        padding: 0 14px;
    }
    .score-result-top strong {
        font-size: 52px;
    }
    .score-result-top em {
        font-size: 20px;
        line-height: 28px;
    }
    .score-prob-grid div {
        display: block;
    }
    .score-prob-grid b {
        display: block;
        margin-top: 4px;
    }
    .score-prob-row-head {
        display: block;
    }
    .score-prob-row-head b {
        display: block;
        margin-top: 2px;
    }
    .score-basis-item {
        align-items: flex-start;
    }
}
