html {
    font-size: 16px;
}

body {
    margin: 0;
    color: #102038;
    background: #eef4f9;
    font-family: "Noto Sans TC", "Microsoft JhengHei", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #0b75a5;
}

.site-background {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(122, 185, 215, .28), transparent 30rem),
        radial-gradient(circle at 10% 0%, rgba(207, 223, 235, .9), transparent 28rem),
        linear-gradient(135deg, #f5f9fc 0%, #eaf2f8 52%, #f8fbfd 100%);
}

.site-background::before,
.site-background::after {
    position: absolute;
    z-index: 0;
    width: 24rem;
    height: 24rem;
    content: "";
    opacity: .2;
    background-image:
        linear-gradient(120deg, transparent 47%, #86a9bd 48%, #86a9bd 52%, transparent 53%),
        linear-gradient(20deg, transparent 47%, #86a9bd 48%, #86a9bd 52%, transparent 53%);
    background-size: 5rem 5rem;
}

.site-background::before {
    top: -4rem;
    left: -5rem;
}

.site-background::after {
    right: -5rem;
    bottom: -3rem;
    transform: rotate(180deg);
}

.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

.page-frame {
    width: min(calc(100vw - 4rem), 1100px);
    margin-inline: auto;
}

.site-container {
    width: min(calc(100vw - 4rem), 1100px);
    margin-inline: auto;
}

.home-page .site-container {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: .35rem 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(122, 185, 215, .18), transparent 30rem),
        linear-gradient(135deg, rgba(245, 249, 252, .96) 0%, rgba(234, 242, 248, .96) 52%, rgba(248, 251, 253, .96) 100%);
}

.site-header .site-container {
    width: min(calc(100vw - 4rem), 1100px);
}

.site-header .navbar {
    position: relative;
    z-index: 1001;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.35rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    min-width: 12rem;
    min-height: 3.25rem;
    color: #0b1d33;
}

.brand-mark:hover {
    color: #0b1d33;
}

.brand-logo {
    display: block;
    width: 13.5rem;
    height: 3.25rem;
    object-fit: contain;
    object-position: left center;
    background: transparent;
}

.main-menu {
    gap: 1.35rem;
    margin: 0 auto;
}

.main-menu .nav-link {
    color: #0c2036;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .05em;
    border-radius: 999px;
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus-visible {
    color: #0f80a8;
    background: rgba(15, 128, 168, .08);
}

.main-menu .nav-link.is-selected {
    color: #08749c;
    background: rgba(15, 128, 168, .14);
    box-shadow: inset 0 0 0 1px rgba(15, 128, 168, .24);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.nav-actions button {
    display: inline-grid;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    place-items: center;
    color: #0b1d33;
    background: transparent;
    border: 0;
    border-radius: 999px;
}

.nav-actions button:hover {
    background: rgba(14, 43, 66, .08);
}

.nav-youtube-link {
    display: inline-grid;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 2.35rem;
    place-items: center;
    color: #f00;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 0, 0, .14);
    border-radius: 999px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-youtube-link:hover {
    color: #d90000;
    background: rgba(255, 0, 0, .1);
    transform: translateY(-1px);
}

.nav-youtube-link:focus-visible {
    outline: .2rem solid rgba(255, 0, 0, .2);
    outline-offset: .15rem;
}

.nav-actions button.is-loading {
    cursor: wait;
    opacity: .55;
    animation: action-pulse .65s ease-in-out infinite alternate;
}

.nav-actions button.is-success {
    color: #087a5b;
    background: rgba(8, 122, 91, .12);
}

@keyframes action-pulse {
    to {
        transform: scale(.9);
    }
}

.nav-actions svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.nav-search-form {
    display: flex;
    width: 10.5rem;
    height: 2.35rem;
    align-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 128, 168, .22);
    border-radius: 999px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.nav-search-form:focus-within {
    border-color: #0f80a8;
    box-shadow: 0 0 0 .2rem rgba(15, 128, 168, .12);
}

.nav-search-input {
    width: 100%;
    min-width: 0;
    padding: .4rem .1rem .4rem .8rem;
    color: #0c2036;
    font-size: .85rem;
    background: transparent;
    border: 0;
    outline: 0;
}

.nav-search-input::placeholder {
    color: #637487;
}

.nav-actions .nav-search-button {
    flex: 0 0 2.2rem;
}

.search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .75rem;
    max-width: 46rem;
    margin: 0 auto 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 128, 168, .16);
    border-radius: 1rem;
    box-shadow: 0 .75rem 2rem rgba(34, 70, 98, .08);
}

.search-page-input {
    min-width: 0;
    padding: .8rem 1rem;
    color: #0c2036;
    background: #fff;
    border: 1px solid #c8d5df;
    border-radius: .7rem;
    outline: 0;
}

.search-page-input:focus {
    border-color: #0f80a8;
    box-shadow: 0 0 0 .2rem rgba(15, 128, 168, .12);
}

.search-page-button {
    min-width: 6.5rem;
    padding: .75rem 1.2rem;
    color: #fff;
    font-weight: 800;
    background: #0f80a8;
    border: 0;
    border-radius: .7rem;
}

.search-page-button:hover {
    background: #0b75a5;
}

.search-page-button.is-loading {
    cursor: wait;
    opacity: .68;
}

.search-validation-message {
    grid-column: 1 / -1;
    color: #b42318;
    font-size: .875rem;
}

.search-result-summary {
    margin: 0 0 1.25rem;
    color: #53677a;
    text-align: center;
}

.search-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.search-pagination a {
    padding: .55rem 1rem;
    color: #0b6688;
    font-weight: 800;
    background: rgba(15, 128, 168, .1);
    border-radius: 999px;
}

.search-pagination span {
    color: #53677a;
}

.site-main {
    padding: 6.15rem 0 2.25rem;
}

.home-page {
    padding-bottom: 2rem;
}

.home-alert {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(38, 68, 93, .08);
}

.hero-layout {
    display: grid;
    grid-template-columns: 540px minmax(0, 1fr);
    gap: 2.75rem;
    align-items: center;
    margin-top: 0;
}

.hero-image-link {
    display: block;
    overflow: hidden;
    height: 338px;
    background: #d9e6ee;
    border-radius: .9rem;
    box-shadow: 0 1.4rem 2.8rem rgba(20, 54, 82, .12);
}

.hero-image-link img,
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy {
    padding: .35rem 0 0;
}

.eyebrow,
.card-category {
    color: #0f80a8;
    font-weight: 800;
    letter-spacing: .06em;
}

.hero-title {
    display: -webkit-box;
    max-width: 100%;
    margin: .42rem 0 .65rem;
    overflow: hidden;
    color: #101a31;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: .02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hero-title a {
    color: inherit;
    text-decoration: none;
}

.hero-title a:hover,
.hero-title a:focus-visible {
    color: #0f80a8;
}

.hero-title--short {
    font-size: 3.35rem;
}

.hero-title--medium {
    font-size: 2.95rem;
}

.hero-title--long {
    font-size: 2.05rem;
}

.hero-copy p {
    display: -webkit-box;
    max-width: 38rem;
    margin: 0;
    overflow: hidden;
    color: #263a4d;
    font-size: 1.08rem;
    line-height: 1.68;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem .9rem;
    margin-top: 1.35rem;
}

.news-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: .9rem;
    min-height: 126px;
    padding: .7rem;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(164, 188, 205, .42);
    border-radius: .7rem;
    box-shadow: 0 .7rem 1.6rem rgba(34, 70, 98, .08);
    backdrop-filter: blur(.5rem);
}

.news-card-image {
    display: block;
    overflow: hidden;
    height: 104px;
    align-self: center;
    background: #dce9f0;
    border-radius: .45rem;
}

.news-card-body {
    display: flex;
    min-height: 104px;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: .35rem;
    min-width: 0;
}

.news-card-meta time::before {
    margin-right: .45rem;
    color: #b8a46d;
    content: "•";
}

.news-card h2 {
    display: -webkit-box;
    margin: .2rem 0 0;
    overflow: hidden;
    color: #101a31;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-card time {
    white-space: nowrap;
    color: #9b7a2b;
    font-size: .86rem;
    font-weight: 600;
}

.home-extra-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 1rem;
    margin-top: 2rem;
}

.home-supplemental-loading {
    display: flex;
    min-height: 8rem;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-top: 2rem;
    color: #53687b;
    font-weight: 800;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(164, 188, 205, .3);
    border-radius: 1rem;
}

.home-supplemental-spinner {
    width: 1.35rem;
    height: 1.35rem;
    border: 3px solid rgba(15, 128, 168, .2);
    border-top-color: #0f80a8;
    border-radius: 50%;
    animation: home-supplemental-spin .8s linear infinite;
}

@keyframes home-supplemental-spin {
    to {
        transform: rotate(360deg);
    }
}

.home-section {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(164, 188, 205, .38);
    border-radius: 1rem;
    box-shadow: 0 .9rem 1.9rem rgba(34, 70, 98, .08);
}

.section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem .75rem;
    border-bottom: 1px solid rgba(164, 188, 205, .28);
}

.section-heading span {
    color: #0f80a8;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: #101a31;
    font-size: 1.25rem;
    font-weight: 900;
}

.popular-list {
    display: grid;
    gap: .2rem;
    margin: 0;
    padding: .75rem 1.15rem 1rem;
    list-style: none;
}

.popular-list li {
    display: grid;
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: .75rem;
    align-items: start;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(164, 188, 205, .22);
}

.popular-list li:last-child {
    border-bottom: 0;
}

.popular-rank {
    color: #0f80a8;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1;
}

.popular-list a {
    display: -webkit-box;
    overflow: hidden;
    color: #101a31;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    padding: 1rem 1.15rem 1.15rem;
}

.editor-card {
    display: grid;
    gap: .7rem;
}

.editor-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dce9f0;
    border-radius: .65rem;
}

.editor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editor-card h3 {
    display: -webkit-box;
    margin: .25rem 0 .35rem;
    overflow: hidden;
    color: #101a31;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.editor-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #53687b;
    font-size: .86rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.trend-section {
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.trend-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    padding: 1rem 1.15rem 0;
}

.trend-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    padding: .35rem .85rem;
    color: #0c5f86;
    font-size: .95rem;
    font-weight: 800;
    background: rgba(231, 244, 250, .92);
    border: 1px solid rgba(91, 154, 183, .28);
    border-radius: 999px;
}

.category-page {
    padding-bottom: 2rem;
}

.category-frame {
    width: min(calc(100vw - 4rem), 1100px);
    margin-inline: auto;
}

.category-header {
    padding: 1.65rem 0 1.4rem;
}

.category-header span {
    color: #0f80a8;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-header h1 {
    margin: .35rem 0 .5rem;
    color: #101a31;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: .03em;
}

.category-header p {
    max-width: 38rem;
    margin: 0;
    color: #42586d;
    font-size: 1.05rem;
    line-height: 1.7;
}

.category-lead-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .95fr);
    gap: 1.35rem;
    align-items: center;
    padding: .8rem;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(164, 188, 205, .38);
    border-radius: 1rem;
    box-shadow: 0 .9rem 1.9rem rgba(34, 70, 98, .08);
}

.category-lead-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dce9f0;
    border-radius: .8rem;
}

.category-lead-image img,
.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-lead-copy h2 {
    display: -webkit-box;
    margin: .45rem 0 .6rem;
    overflow: hidden;
    color: #101a31;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.12;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-lead-copy p {
    display: -webkit-box;
    margin: 0 0 .8rem;
    overflow: hidden;
    color: #42586d;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.category-lead-copy time {
    color: #9b7a2b;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.category-card {
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(164, 188, 205, .38);
    border-radius: 1rem;
    box-shadow: 0 .75rem 1.6rem rgba(34, 70, 98, .07);
}

.category-ad-card {
    display: flex;
    min-height: 10rem;
    grid-column: 1 / -1;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: .35rem;
    overflow: hidden;
    padding: .75rem 1rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(164, 188, 205, .38);
    border-radius: 1rem;
    box-shadow: 0 .75rem 1.6rem rgba(34, 70, 98, .07);
}

.category-ad-card > span {
    color: #0f80a8;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.category-ad-card .adsbygoogle {
    width: 100%;
}

.category-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dce9f0;
}

.category-card-body {
    padding: .85rem .95rem 1rem;
}

.category-card h3 {
    display: -webkit-box;
    margin: .35rem 0 .45rem;
    overflow: hidden;
    color: #101a31;
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #53687b;
    font-size: .9rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.category-pagination a,
.category-pagination span {
    display: inline-flex;
    min-width: 4rem;
    min-height: 2.35rem;
    align-items: center;
    justify-content: center;
    padding: .35rem .9rem;
    color: #0c5f86;
    font-weight: 800;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(164, 188, 205, .38);
    border-radius: 999px;
}

.category-load-state {
    min-height: 2.5rem;
    margin-top: 1.25rem;
    color: #53687b;
    font-size: .95rem;
    font-weight: 700;
    text-align: center;
}

.category-loader {
    color: #0f80a8;
}

.category-load-error {
    color: #9b4b2b;
}

.category-load-sentinel {
    width: 100%;
    height: 1px;
}

.article-page {
    padding-bottom: 3rem;
}

.article-frame {
    width: min(calc(100vw - 4rem), 860px);
    margin-inline: auto;
}

.article-block {
    padding: 2rem 0 3rem;
    border-bottom: 1px solid rgba(164, 188, 205, .42);
}

.article-block + .article-block {
    margin-top: 2.5rem;
}

.article-header {
    max-width: 760px;
    margin-inline: auto;
}

.article-category {
    color: #0f80a8;
    font-weight: 900;
    letter-spacing: .06em;
}

.article-header h1 {
    margin: .65rem 0 .75rem;
    color: #101a31;
    font-size: clamp(1.75rem, 3.2vw, 2.55rem);
    font-weight: 900;
    line-height: 1.18;
}

.article-meta {
    color: #9b7a2b;
    font-weight: 700;
}

.article-hero-image {
    margin: 1.6rem 0 1.8rem;
    overflow: hidden;
    background: #dce9f0;
    border-radius: 1rem;
    box-shadow: 0 1rem 2.2rem rgba(34, 70, 98, .1);
}

.article-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

.article-content {
    max-width: 760px;
    margin-inline: auto;
    color: #18263a;
    font-size: 1.3rem;
    line-height: 1.82;
}

.article-content p {
    margin: 0 0 1.35rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: .8rem;
}

.article-ad-container,
.article-ad-placeholder {
    display: flex;
    min-height: 8.5rem;
    max-width: 760px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .25rem;
    margin: 2.25rem auto 0;
    color: #6d8294;
    text-align: center;
}

.article-ad-container {
    width: 100%;
}

.article-ad-container > span,
.article-ad-placeholder span {
    color: #0f80a8;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.article-ad-container .adsbygoogle {
    width: 100%;
}

.article-ad-placeholder {
    background:
        repeating-linear-gradient(135deg, rgba(15, 128, 168, .06) 0, rgba(15, 128, 168, .06) .7rem, transparent .7rem, transparent 1.4rem),
        rgba(255, 255, 255, .72);
    border: 1px dashed rgba(15, 128, 168, .35);
    border-radius: 1rem;
}

.article-ad-placeholder strong {
    color: #233950;
    font-size: 1.1rem;
    font-weight: 900;
}

.article-ad-placeholder p {
    margin: 0;
    font-size: .9rem;
}

.article-reader-state {
    min-height: 2.75rem;
    margin-top: 1.5rem;
    color: #53687b;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.article-reader-loader {
    color: #0f80a8;
}

.article-related-loader {
    color: #0f80a8;
}

.article-reader-error,
.article-related-error {
    color: #9b4b2b;
}

.article-related-host {
    width: min(calc(100vw - 4rem), 960px);
    margin: 1.5rem auto 0;
}

.article-related {
    padding: 1.5rem;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(164, 188, 205, .38);
    border-radius: 1.15rem;
    box-shadow: 0 1rem 2.2rem rgba(34, 70, 98, .08);
}

.article-related-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-related-heading span {
    color: #0f80a8;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.article-related-heading h2 {
    margin: 0;
    color: #101a31;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 900;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.article-related-card {
    overflow: hidden;
    background: rgba(247, 251, 253, .92);
    border: 1px solid rgba(164, 188, 205, .32);
    border-radius: 1rem;
}

.article-related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dce9f0;
}

.article-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-related-body {
    padding: .85rem .95rem 1rem;
}

.article-related-body h3 {
    display: -webkit-box;
    margin: .35rem 0 .45rem;
    overflow: hidden;
    color: #101a31;
    font-size: 1.02rem;
    font-weight: 850;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-related-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #53687b;
    font-size: .9rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-related-empty {
    margin: 0;
    color: #53687b;
    font-weight: 700;
}

.article-reader-sentinel {
    width: 100%;
    height: 1px;
}

.empty-state {
    margin-top: 2rem;
    padding: 2rem;
    color: #42586d;
    text-align: center;
    background: rgba(255, 255, 255, .76);
    border-radius: 1rem;
}

.scroll-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0f80a8, #0b5d82);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 .85rem 1.8rem rgba(15, 77, 110, .24);
    opacity: .94;
    transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.scroll-to-top[hidden] {
    display: none;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    opacity: 1;
    transform: translateY(-.15rem);
    box-shadow: 0 1rem 2rem rgba(15, 77, 110, .3);
}

.scroll-to-top.is-success {
    background: linear-gradient(135deg, #087a5b, #075c47);
}

.scroll-to-top:focus-visible {
    outline: 3px solid rgba(15, 128, 168, .28);
    outline-offset: 3px;
}

.scroll-to-top svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.site-footer {
    padding: 3rem 0 0;
    color: #53687b;
    font-size: .9rem;
    text-align: left;
    background: rgba(255, 255, 255, .42);
    border-top: 1px solid rgba(164, 188, 205, .28);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(10rem, 1fr) minmax(13rem, 1.2fr);
    gap: 2.5rem;
    align-items: start;
}

.footer-links h2,
.footer-youtube h2 {
    margin: 0 0 1rem;
    color: #0c2036;
    font-size: 1.25rem;
    font-weight: 900;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: .75rem;
}

.footer-links a {
    color: #53687b;
    font-weight: 700;
}

.footer-links a:hover {
    color: #0f80a8;
}

.footer-youtube a {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #53687b;
    font-weight: 800;
}

.footer-youtube a:hover {
    color: #0f80a8;
}

.footer-youtube svg {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    fill: #f00;
}

.footer-company-info {
    margin: 0;
    color: #53687b;
    font-style: normal;
    line-height: 1.8;
}

.footer-company-info strong {
    display: inline-block;
    margin-bottom: .35rem;
    color: #0c2036;
    font-size: 1.05rem;
}

.footer-company-info a {
    color: #0b75a5;
}

.footer-company-info a:hover {
    color: #0f80a8;
    text-decoration: underline;
}

.footer-copyright {
    grid-column: 1 / -1;
    padding: 1.4rem 0;
    color: #53687b;
    text-align: center;
    border-top: 1px solid rgba(164, 188, 205, .35);
}

@media (max-width: 767.98px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-copyright {
        grid-column: 1;
    }
}

.information-page {
    padding: 1rem 0 3rem;
}

.information-frame {
    width: min(calc(100vw - 4rem), 860px);
    margin-inline: auto;
}

.information-header {
    padding: 1.65rem 0 1.4rem;
}

.information-header span {
    color: #0f80a8;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.information-header h1 {
    margin: .25rem 0 0;
    color: #0c2036;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 950;
}

.information-content {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    color: #31475a;
    line-height: 1.9;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(164, 188, 205, .28);
    border-radius: 1rem;
    box-shadow: 0 1rem 2.5rem rgba(34, 70, 98, .08);
}

.information-content h2 {
    margin: 1.6rem 0 .5rem;
    color: #0c2036;
    font-size: 1.2rem;
    font-weight: 900;
}

.information-content p,
.information-content ul {
    margin-bottom: 1rem;
}

.information-content a {
    color: #0b75a5;
    font-weight: 700;
}

.information-content hr {
    margin: 2rem 0;
    border-color: rgba(164, 188, 205, .42);
}

@media (max-width: 991.98px) {
    .site-nav {
        align-items: flex-start;
    }

    .main-menu {
        gap: .35rem;
        margin: 1rem 0;
    }

    .nav-actions {
        flex-wrap: wrap;
        padding-bottom: .4rem;
    }

    .nav-search-form {
        width: min(100%, 18rem);
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .hero-title {
        max-width: 14ch;
    }

    .hero-title--short {
        font-size: clamp(1.85rem, 6.5vw, 2.65rem);
    }

    .hero-title--medium {
        font-size: clamp(1.6rem, 5.8vw, 2.25rem);
    }

    .hero-title--long {
        font-size: clamp(1.35rem, 5vw, 1.95rem);
    }

    .news-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-extra-layout {
        grid-template-columns: 1fr;
    }

    .category-lead-card {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .site-header {
        padding-top: .35rem;
    }

    .brand-mark {
        min-width: auto;
    }

    .brand-logo {
        width: 10.5rem;
        height: 2.85rem;
    }

    .search-page-form {
        grid-template-columns: 1fr;
    }

    .search-page-button {
        width: 100%;
    }

    .search-pagination {
        flex-wrap: wrap;
    }

    .hero-layout {
        gap: 1.1rem;
    }

    .hero-image-link {
        max-height: none;
    }

    .hero-title--short {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .hero-title--medium {
        font-size: clamp(1.5rem, 8vw, 2.05rem);
    }

    .hero-title--long {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }

    .news-card-grid {
        grid-template-columns: 1fr;
    }

    .editor-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .article-related-host {
        width: min(calc(100vw - 2rem), 960px);
    }

    .article-related {
        padding: 1rem;
    }

    .article-related-grid {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 2.75rem;
        height: 2.75rem;
    }
}