:root {
    --fnt-primary: #ff5a24;
    --fnt-primary-dark: #e44918;
    --fnt-ink: #151515;
    --fnt-muted: #6d737c;
    --fnt-soft: #fff8f3;
    --fnt-soft-2: #fff1e8;
    --fnt-line: #f1ded3;
    --fnt-card: #ffffff;
    --fnt-blue: #173b57;
    --fnt-green: #7fb069;
    --fnt-shadow: 0 18px 50px rgba(76, 49, 31, .08);
    --fnt-radius: 8px;
    --fnt-radius-lg: 14px;
    --fnt-container: 1120px;
    --font-main: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #1f2937;
    background:
        radial-gradient(circle at 88% 0, rgba(255, 209, 181, .42), transparent 32rem),
        linear-gradient(180deg, #fffaf6 0, #fff 44rem);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--fnt-container));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0 12px;
    background: rgba(255, 250, 246, .88);
    border-bottom: 1px solid rgba(241, 222, 211, .7);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 184px;
}

.site-brand__mark,
.site-brand__image {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-brand__text {
    display: grid;
    line-height: 1.1;
}

.site-brand__text strong {
    font-size: 21px;
    font-weight: 700;
}

.site-brand__text small {
    margin-top: 5px;
    color: var(--fnt-muted);
    font-size: 12px;
}

.primary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 3vw, 44px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-menu a {
    position: relative;
    display: inline-flex;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover {
    color: var(--fnt-primary);
}

.primary-menu .current-menu-item > a::after,
.primary-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--fnt-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-button,
.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--fnt-line);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}

.icon-search {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--fnt-ink);
    border-radius: 50%;
}

.icon-search::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -5px;
    width: 8px;
    height: 2px;
    background: var(--fnt-ink);
    transform: rotate(45deg);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    place-items: center;
    padding: 11px;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: var(--fnt-ink);
    border-radius: 3px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--fnt-radius);
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--fnt-primary), #ff7441);
    box-shadow: 0 12px 24px rgba(255, 90, 36, .22);
}

.btn-outline {
    color: var(--fnt-primary);
    border-color: rgba(255, 90, 36, .42);
    background: #fff;
}

.btn-large {
    min-height: 54px;
    padding: 0 34px;
    border-radius: 12px;
}

.btn-compact {
    min-height: 42px;
    border-radius: 999px;
}

.btn-small {
    min-height: 36px;
    padding: 0 16px;
    font-size: 13px;
}

.header-search {
    padding: 12px 0 2px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input,
.newsletter-form input {
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius);
    background: #fff;
    outline: none;
}

.search-form input:focus,
.newsletter-form input:focus {
    border-color: rgba(255, 90, 36, .7);
    box-shadow: 0 0 0 4px rgba(255, 90, 36, .08);
}

.search-form--wide {
    max-width: 760px;
}

.hero-section {
    padding: clamp(54px, 7vw, 96px) 0 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
    align-items: center;
    gap: 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    color: var(--fnt-primary);
    background: rgba(255, 90, 36, .08);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.hero-copy h1 {
    max-width: 690px;
    margin: 18px 0 20px;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1.12;
    font-weight: 700;
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 34px;
    color: #4f5963;
    font-size: 19px;
}

.hero-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.hero-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--fnt-shadow);
}

.hero-stat {
    position: absolute;
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius);
    box-shadow: var(--fnt-shadow);
}

.hero-stat strong {
    color: var(--fnt-blue);
}

.hero-stat span {
    color: var(--fnt-muted);
    font-size: 13px;
}

.hero-stat--one {
    left: 18px;
    bottom: 44px;
}

.hero-stat--two {
    right: 8px;
    top: 48px;
}

.home-surface {
    margin-bottom: 34px;
    padding: clamp(24px, 4vw, 42px);
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(241, 222, 211, .76);
    border-radius: 18px;
    box-shadow: var(--fnt-shadow);
}

.seo-intro {
    max-width: 920px;
    padding: 4px 0 28px;
}

.seo-intro h2 {
    margin: 8px 0 10px;
    color: var(--text-strong, #3f3b36);
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}

.seo-intro p {
    margin: 0;
    color: var(--text-soft, #817b73);
    font-size: 14px;
    line-height: 1.85;
}

.section-block {
    padding: 18px 0 34px;
}

.section-block + .section-block {
    border-top: 1px solid rgba(241, 222, 211, .62);
}

.section-block--plain {
    border-top: 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.25;
}

.section-heading a {
    color: var(--fnt-primary);
    font-weight: 600;
    white-space: nowrap;
}

.section-heading--compact {
    align-items: start;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.post-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.post-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: var(--fnt-card);
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius);
    box-shadow: 0 12px 34px rgba(76, 49, 31, .06);
}

.post-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--fnt-soft-2);
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.04);
}

.post-card__content {
    padding: 18px 18px 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    color: var(--fnt-primary);
    background: rgba(255, 90, 36, .1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.post-card h3 {
    margin: 12px 0 14px;
    font-size: 19px;
    line-height: 1.48;
}

.post-card p {
    margin: -4px 0 14px;
    color: var(--fnt-muted);
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    color: var(--fnt-muted);
    font-size: 13px;
}

.entry-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fnt-ink);
    font-weight: 500;
}

.avatar-dot {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #fff;
    background: var(--fnt-blue);
    border-radius: 50%;
    font-size: 13px;
}

.post-list {
    display: grid;
    gap: 18px;
}

.post-card--list {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 22px;
    min-height: 174px;
    padding: 14px;
}

.post-card--list .post-card__image {
    height: 154px;
    aspect-ratio: auto;
    border-radius: var(--fnt-radius);
}

.post-card--list .post-card__content {
    padding: 0;
}

.post-card--list h3 {
    margin: 10px 0 8px;
    font-size: clamp(22px, 2vw, 28px);
}

.bookmark-link {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--fnt-muted);
    border: 1px solid var(--fnt-line);
    border-radius: 999px;
}

.quick-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: 24px;
}

.quick-card,
.side-card,
.newsletter-card,
.risk-notice,
.topic-intro,
.faq-section,
.disclaimer-box,
.not-found-card,
.page-content {
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius-lg);
    box-shadow: 0 12px 34px rgba(76, 49, 31, .05);
}

.quick-card {
    padding: 24px;
}

.news-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--fnt-line);
}

.news-list a {
    font-weight: 500;
}

.news-list span {
    color: var(--fnt-muted);
    white-space: nowrap;
}

.live-room-card {
    min-height: 260px;
    background:
        linear-gradient(135deg, rgba(255, 90, 36, .12), rgba(255, 255, 255, .92)),
        url("../images/thumb-live.png") right bottom / 54% auto no-repeat;
}

.live-room-card h2 {
    max-width: 420px;
    margin: 14px 0 10px;
    font-size: 30px;
    line-height: 1.25;
}

.live-room-card p {
    max-width: 490px;
    color: var(--fnt-muted);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.market-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius);
}

.market-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.market-card div {
    padding: 16px;
}

.market-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.market-card p {
    min-height: 70px;
    margin: 0 0 12px;
    color: var(--fnt-muted);
    font-size: 14px;
}

.market-card a {
    color: var(--fnt-primary);
    font-weight: 600;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.topic-card {
    min-height: 210px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: var(--fnt-radius);
}

.topic-card a {
    display: grid;
    min-height: 210px;
    padding: 24px;
    color: #fff;
}

.topic-card span {
    align-self: start;
    font-size: 13px;
    font-weight: 600;
}

.topic-card h3 {
    align-self: center;
    margin: 12px 0;
    font-size: 25px;
}

.topic-card p {
    max-width: 440px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
}

.topic-card strong {
    justify-self: end;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 26px;
}

.content-primary {
    min-width: 0;
}

.content-sidebar {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.side-card {
    padding: 22px;
}

.side-card h2,
.newsletter-card h2,
.risk-notice h2 {
    margin: 0 0 14px;
    font-size: 21px;
}

.rank-list {
    display: grid;
    gap: 14px;
}

.latest-list {
    display: grid;
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.rank-item > span {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: #fff;
    background: var(--fnt-primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.rank-item:nth-child(n+4) > span {
    color: var(--fnt-muted);
    background: #f2f2f2;
}

.post-compact {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
}

.post-compact__image {
    overflow: hidden;
    aspect-ratio: 1.18;
    border-radius: var(--fnt-radius);
}

.post-compact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-compact h3 {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.45;
}

.post-compact span {
    color: var(--fnt-muted);
    font-size: 12px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 16px;
    color: #555c65;
    background: #fff4ee;
    border: 1px solid rgba(241, 222, 211, .65);
    border-radius: var(--fnt-radius);
    font-weight: 700;
}

.newsletter-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    background: linear-gradient(135deg, #fff, #fff0e7);
}

.newsletter-card img {
    width: 112px;
    margin-left: auto;
    margin-bottom: -12px;
    opacity: .8;
}

.newsletter-form {
    display: grid;
    gap: 10px;
    position: relative;
}

.risk-notice {
    padding: 22px;
}

.risk-notice p {
    margin: 0;
    color: var(--fnt-muted);
}

.page-hero {
    padding: 46px 0 34px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .42)),
        radial-gradient(circle at right 20%, rgba(255, 214, 190, .44), transparent 26rem);
    border-bottom: 1px solid rgba(241, 222, 211, .72);
}

.page-hero--articles {
    min-height: 280px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .96) 0, rgba(255, 255, 255, .74) 56%, rgba(255, 255, 255, .22) 100%),
        url("../images/thumb-knowledge.png") right center / 48% auto no-repeat;
}

.page-hero h1 {
    margin: 12px 0 8px;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.2;
}

.page-hero p {
    max-width: 680px;
    margin: 0 0 24px;
    color: var(--fnt-muted);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--fnt-muted);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--fnt-primary);
}

.archive-content,
.category-layout {
    padding: 34px 0 58px;
}

.category-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr) 320px;
    align-items: start;
    gap: 26px;
}

.category-filter {
    position: sticky;
    top: 100px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius-lg);
    box-shadow: 0 12px 34px rgba(76, 49, 31, .05);
}

.filter-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--fnt-line);
}

.filter-tabs span {
    padding: 10px 0;
    text-align: center;
    color: var(--fnt-muted);
    font-weight: 600;
}

.filter-tabs .is-active {
    color: var(--fnt-primary);
    border-bottom: 2px solid var(--fnt-primary);
}

.category-filter ul {
    display: grid;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-filter a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: var(--fnt-radius);
    color: var(--fnt-muted);
    font-weight: 500;
}

.category-filter .is-active a,
.category-filter a:hover {
    color: var(--fnt-primary);
    background: #fff2ea;
}

.category-filter em {
    font-style: normal;
}

.archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.archive-toolbar h2 {
    margin: 0;
    font-size: 24px;
}

.archive-toolbar span {
    padding: 8px 14px;
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius);
    color: var(--fnt-muted);
    background: #fff;
}

.hero-tags {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-tags strong {
    white-space: nowrap;
}

.fnt-pagination {
    margin-top: 26px;
}

.fnt-pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.fnt-pagination a,
.fnt-pagination span {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--fnt-line);
    border-radius: 999px;
    background: #fff;
}

.fnt-pagination .current {
    color: #fff;
    border-color: var(--fnt-primary);
    background: var(--fnt-primary);
}

.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
    align-items: start;
    padding: 42px 0 64px;
}

.single-main {
    min-width: 0;
}

.single-header {
    margin-bottom: 26px;
}

.single-header h1 {
    max-width: 900px;
    margin: 14px 0 18px;
    font-size: clamp(36px, 4.8vw, 62px);
    line-height: 1.22;
}

.single-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.article-actions {
    display: flex;
    gap: 10px;
}

.article-actions button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--fnt-line);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}

.single-cover {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: var(--fnt-radius-lg);
}

.single-cover img {
    width: 100%;
    aspect-ratio: 16 / 8.2;
    object-fit: cover;
}

.core-view {
    margin-bottom: 28px;
    padding: 22px 26px;
    background: linear-gradient(135deg, rgba(255, 90, 36, .1), rgba(255, 255, 255, .92));
    border-left: 3px solid var(--fnt-primary);
    border-radius: var(--fnt-radius);
}

.core-view p {
    margin: 4px 0 0;
}

.entry-content {
    color: #343a40;
    font-size: 17px;
}

.entry-content h2 {
    margin: 34px 0 14px;
    color: var(--fnt-ink);
    font-size: 28px;
    line-height: 1.35;
}

.entry-content h3 {
    margin: 24px 0 10px;
    color: var(--fnt-ink);
    font-size: 22px;
}

.entry-content p {
    margin: 0 0 18px;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.3em;
}

.disclaimer-box {
    margin-top: 34px;
    padding: 24px;
}

.disclaimer-box h2 {
    margin: 0 0 10px;
}

.disclaimer-box p {
    margin: 0;
    color: var(--fnt-muted);
}

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 28px 0 36px;
}

.post-nav a {
    display: grid;
    gap: 5px;
    min-height: 86px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius);
}

.post-nav span {
    color: var(--fnt-muted);
    font-size: 13px;
}

.side-toc {
    position: sticky;
    top: 100px;
}

.side-toc ol,
.question-list {
    display: grid;
    gap: 10px;
    padding-left: 18px;
    margin: 0;
}

.side-toc a {
    color: var(--fnt-muted);
}

.side-toc a:hover {
    color: var(--fnt-primary);
}

.related-section {
    margin-top: 24px;
}

.page-content-wrap {
    padding: 42px 0 62px;
}

.page-content {
    padding: clamp(24px, 5vw, 52px);
}

.page-title h1 {
    margin: 12px 0 24px;
    font-size: clamp(34px, 4vw, 54px);
}

.topic-list {
    display: grid;
    gap: 18px;
}

.topic-list-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius);
}

.topic-list-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: var(--fnt-radius);
}

.topic-list-card h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
    font-size: 27px;
}

.topic-list-card h2 span {
    display: inline-flex;
    min-height: 26px;
    padding: 0 10px;
    color: var(--fnt-primary);
    background: rgba(255, 90, 36, .1);
    border-radius: 999px;
    font-size: 13px;
}

.topic-list-card p {
    margin: 0 0 14px;
    color: var(--fnt-muted);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 26px;
}

.category-tabs a {
    position: relative;
    padding-bottom: 10px;
    font-weight: 500;
}

.category-tabs .is-active,
.category-tabs a:hover {
    color: var(--fnt-primary);
}

.category-tabs .is-active::after,
.category-tabs a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--fnt-primary);
}

.topic-hero {
    min-height: 430px;
    display: grid;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.topic-hero .breadcrumb,
.topic-hero .breadcrumb a,
.topic-hero p {
    color: rgba(255, 255, 255, .86);
}

.topic-hero h1 {
    max-width: 780px;
    margin: 16px 0 14px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.12;
}

.topic-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.topic-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
}

.topic-page-layout {
    padding: 38px 0 64px;
}

.topic-intro,
.faq-section {
    padding: 26px;
    margin-bottom: 24px;
}

.topic-intro h2,
.faq-section h2 {
    margin: 0 0 12px;
}

.faq-section details {
    padding: 16px 0;
    border-top: 1px solid var(--fnt-line);
}

.faq-section summary {
    color: var(--fnt-ink);
    font-weight: 600;
    cursor: pointer;
}

.faq-section p {
    margin: 10px 0 0;
    color: var(--fnt-muted);
}

.not-found-wrap {
    min-height: 64vh;
    display: grid;
    place-items: center;
    padding: 64px 0;
}

.not-found-card {
    max-width: 760px;
    padding: clamp(28px, 6vw, 58px);
    text-align: center;
}

.not-found-card h1 {
    margin: 12px 0 12px;
    font-size: clamp(38px, 5vw, 68px);
}

.not-found-card p {
    margin: 0 auto 26px;
    max-width: 620px;
    color: var(--fnt-muted);
}

.not-found-card .search-form {
    margin: 0 auto 18px;
}

.empty-state {
    padding: 26px;
    color: var(--fnt-muted);
    background: #fff;
    border: 1px dashed var(--fnt-line);
    border-radius: var(--fnt-radius);
}

.site-footer {
    padding: 42px 0 28px;
    background: #fffaf6;
    border-top: 1px solid var(--fnt-line);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) .7fr .7fr minmax(280px, 1fr);
    gap: 34px;
    align-items: start;
}

.footer-brand p {
    color: var(--fnt-muted);
}

.social-row {
    display: flex;
    gap: 10px;
    margin: 18px 0;
}

.social-row span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid var(--fnt-line);
    border-radius: 999px;
    font-size: 12px;
}

.footer-links h2,
.footer-newsletter h2 {
    margin: 0 0 14px;
    font-size: 17px;
}

.footer-links ul,
.footer-menu {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-menu a {
    color: var(--fnt-muted);
}

.footer-links a:hover,
.footer-menu a:hover {
    color: var(--fnt-primary);
}

.footer-newsletter {
    padding: 22px;
}

.footer-contact-list {
    min-width: 0;
}

.footer-newsletter img {
    display: none;
}

.footer-contact,
.copyright,
.icp {
    font-size: 13px;
}

.footer-contact {
    margin: 16px 0 0;
    color: var(--fnt-muted);
    line-height: 1.65;
}

@media (max-width: 1180px) {
    .hero-grid,
    .single-layout,
    .content-layout,
    .category-layout {
        grid-template-columns: 1fr;
    }

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

    .side-toc,
    .category-filter {
        position: static;
    }

    .market-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .site-header__inner {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        display: none;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--fnt-line);
        border-radius: var(--fnt-radius-lg);
        box-shadow: var(--fnt-shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .primary-menu {
        display: grid;
        justify-content: stretch;
        gap: 4px;
    }

    .primary-menu a {
        padding: 12px;
        border-radius: var(--fnt-radius);
    }

    .primary-menu a:hover {
        background: #fff3ec;
    }

    .primary-menu a::after {
        display: none;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-visual {
        min-height: auto;
    }

    .quick-grid,
    .topic-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .post-card--list,
    .topic-list-card {
        grid-template-columns: 1fr;
    }

    .post-card--list .post-card__image,
    .topic-list-card img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .bookmark-link {
        display: none;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--fnt-container));
    }

    .site-header {
        padding-top: 10px;
    }

    .site-header__inner {
        gap: 8px;
    }

    .site-brand {
        min-width: 0;
        gap: 8px;
    }

    .site-brand__mark,
    .site-brand__image {
        width: 36px;
        height: 36px;
    }

    .site-brand__text strong {
        max-width: 128px;
        font-size: 16px;
        line-height: 1.16;
    }

    .site-brand__text small {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-compact {
        min-width: 58px;
        padding: 0 12px;
        overflow: hidden;
        font-size: 0;
        color: #fff;
    }

    .btn-compact::after {
        content: "\8BA2\9605";
        font-size: 13px;
        line-height: 1;
    }

    .hero-section {
        padding-top: 34px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-stat {
        display: none;
    }

    .home-surface {
        width: calc(100% - 20px);
        padding: 18px;
        border-radius: 14px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .post-grid,
    .post-grid--four,
    .market-grid,
    .content-sidebar {
        grid-template-columns: 1fr;
    }

    .single-meta-row,
    .news-list li,
    .archive-toolbar {
        align-items: start;
        flex-direction: column;
    }

    .single-cover img {
        aspect-ratio: 4 / 3;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .search-form {
        flex-direction: column;
    }

    .topic-hero {
        min-height: 380px;
    }

    .topic-list-card h2 {
        align-items: start;
        flex-direction: column;
    }
}

/* Rich homepage market dashboard */
.hero-visual--dashboard {
    min-height: 380px;
}

.market-dashboard {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 380px;
    padding: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .94), transparent 12rem),
        linear-gradient(135deg, #fff4ed 0%, #ffd9c9 100%);
    border: 1px solid rgba(255, 116, 68, .16);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(76, 49, 31, .1);
}

.market-dashboard::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, .36) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .34) 1px, transparent 1px);
    background-size: 74px 64px;
    opacity: .78;
    pointer-events: none;
}

.market-dashboard::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    content: "";
    border: 1px solid rgba(255, 90, 36, .13);
    border-radius: 50%;
    box-shadow: inset 0 0 0 42px rgba(255, 255, 255, .16);
}

.market-dashboard__top,
.market-dashboard__main,
.market-dashboard__bottom {
    position: relative;
    z-index: 1;
}

.market-dashboard__top {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    margin-bottom: 14px;
}

.market-dashboard__top span {
    color: var(--fnt-primary);
    font-size: 12px;
    font-weight: 600;
}

.market-dashboard__top strong {
    color: #1f2937;
    font-size: 17px;
    font-weight: 700;
}

.market-dashboard__top em {
    margin-left: auto;
    padding: 7px 10px;
    color: #7c4a3a;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
}

.market-dashboard__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 14px;
    align-items: stretch;
}

.market-orbit {
    position: absolute;
    top: 64px;
    right: 122px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 50%;
    opacity: .92;
}

.market-orbit::before,
.market-orbit::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, .56);
    border-radius: 50%;
}

.market-orbit::before {
    inset: 32px -10px;
}

.market-orbit::after {
    inset: -10px 42px;
}

.market-orbit span {
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--fnt-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 90, 36, .12);
}

.market-orbit span:nth-child(1) { top: 16px; left: 86px; }
.market-orbit span:nth-child(2) { top: 72px; right: 8px; }
.market-orbit span:nth-child(3) { right: 42px; bottom: 18px; }
.market-orbit span:nth-child(4) { bottom: 38px; left: 28px; }
.market-orbit span:nth-child(5) { top: 58px; left: 20px; }

.hero-chart {
    min-height: 244px;
    padding: 18px;
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.hero-chart__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-chart__head span {
    color: #8b5a44;
    font-size: 12px;
    font-weight: 500;
}

.hero-chart__head strong {
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
}

.hero-chart__plot {
    position: relative;
    height: 142px;
    overflow: hidden;
}

.hero-chart__plot svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-chart__plot polyline {
    fill: none;
    stroke: var(--fnt-primary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.hero-bars {
    position: absolute;
    right: 12px;
    bottom: 8px;
    left: 12px;
    display: flex;
    align-items: end;
    gap: 12px;
    height: 102px;
}

.hero-chart__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.hero-chart__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    color: #7c4a3a;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.hero-bars span {
    width: 24px;
    height: 46px;
    background: rgba(255, 112, 68, .26);
    border-radius: 5px 5px 0 0;
}

.hero-bars span:nth-child(2) { height: 72px; }
.hero-bars span:nth-child(4) { height: 86px; }
.hero-bars span:nth-child(6) { height: 102px; }
.hero-bars .is-low { height: 28px; }
.hero-bars .is-mid { height: 58px; }
.hero-bars .is-high { background: rgba(255, 90, 36, .34); }

.hero-market-grid {
    display: grid;
    gap: 10px;
}

.hero-market-grid a {
    display: grid;
    gap: 3px;
    padding: 12px 13px;
    color: inherit;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(76, 49, 31, .06);
}

.hero-market-grid a:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 90, 36, .28);
}

.hero-market-grid span {
    color: var(--fnt-primary);
    font-size: 12px;
    font-weight: 600;
}

.hero-market-grid strong {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-market-grid em {
    color: #7c8490;
    font-size: 12px;
    font-style: normal;
}

.market-dashboard__bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.market-dashboard__bottom div {
    padding: 11px 12px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
}

.market-dashboard__bottom strong {
    display: block;
    color: #1f2937;
    font-size: 16px;
    line-height: 1.2;
}

.market-dashboard__bottom span {
    color: #7c8490;
    font-size: 12px;
}

@media (max-width: 1180px) {
    .market-dashboard {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .hero-visual--dashboard {
        min-height: auto;
    }

    .market-dashboard {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
    }

    .market-dashboard__main {
        grid-template-columns: 1fr;
    }

    .market-orbit {
        right: 24px;
        opacity: .45;
    }

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

    .market-dashboard__bottom {
        grid-template-columns: 1fr;
    }
}

/* Inline article table of contents */
.article-toc--inline {
    margin: 22px 0 28px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(31, 41, 55, .04);
}

.article-toc--inline strong {
    display: block;
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}

.article-toc--inline ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: article-toc;
}

.article-toc--inline li {
    min-width: 0;
    counter-increment: article-toc;
}

.article-toc--inline a {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

.article-toc--inline a::before {
    min-width: 18px;
    content: counter(article-toc, decimal-leading-zero);
    color: var(--fnt-primary);
    font-size: 12px;
    font-weight: 600;
}

.article-toc--inline a:hover {
    color: var(--fnt-primary);
}

.side-toc {
    display: none;
}

@media (max-width: 640px) {
    .article-toc--inline {
        margin: 18px 0 22px;
        padding: 14px;
    }

    .article-toc--inline ol {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .article-toc--inline a {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* Homepage hero spacing alignment */
.hero-section {
    padding: clamp(30px, 3.4vw, 48px) 0 30px;
}

.hero-grid {
    gap: clamp(36px, 5vw, 72px);
}

.hero-visual {
    min-height: 340px;
}

.hero-copy h1 {
    margin-top: 14px;
}

.hero-copy p {
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .hero-section {
        padding: 28px 0 24px;
    }

    .hero-visual {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 22px;
    }
}

/* Typography system refinement */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111827;
    font-family: var(--font-main);
    letter-spacing: 0;
    text-wrap: pretty;
}

h1,
.hero-copy h1,
.single-header h1,
.page-hero h1,
.page-title h1,
.topic-hero h1,
.not-found-card h1 {
    font-size: clamp(32px, 3.2vw, 42px);
    line-height: 1.22;
    font-weight: 700;
}

h2,
.section-heading h2,
.live-room-card h2,
.side-card h2,
.newsletter-card h2,
.risk-notice h2,
.archive-toolbar h2,
.disclaimer-box h2,
.topic-intro h2,
.faq-section h2,
.footer-links h2,
.footer-newsletter h2 {
    font-size: clamp(26px, 2.2vw, 32px);
    line-height: 1.32;
    font-weight: 700;
}

h3,
.post-card h3,
.market-card h3,
.topic-card h3,
.post-compact h3,
.topic-list-card h2 {
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.45;
    font-weight: 600;
}

p,
li {
    font-weight: 400;
}

.site-brand__text strong {
    color: #111827;
    font-weight: 700;
}

.site-brand__text small,
.entry-meta,
.breadcrumb,
.post-compact span,
.post-nav span,
.footer-contact,
.copyright,
.icp,
.hero-stat span,
.archive-toolbar span {
    color: #6b7280;
    font-size: 13px;
    font-weight: 400;
}

.primary-menu a,
.category-tabs a,
.category-filter a,
.section-heading a,
.market-card a,
.news-list a,
.footer-links a,
.footer-menu a {
    font-weight: 500;
}

.primary-menu a {
    font-size: 15px;
}

.btn,
.badge,
.eyebrow,
.pill,
.topic-card span,
.rank-item > span,
.filter-tabs span {
    font-weight: 600;
}

.btn {
    font-size: 15px;
    letter-spacing: 0;
}

.btn-small,
.btn-compact,
.badge,
.eyebrow,
.topic-card span,
.entry-meta {
    font-size: 13px;
}

.pill,
.category-filter a {
    font-size: 14px;
}

.hero-copy p,
.page-hero p,
.topic-hero p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.78;
    font-weight: 400;
}

.post-card h3 {
    font-size: 17px;
    line-height: 1.52;
    font-weight: 600;
}

.post-card--list h3 {
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.42;
    font-weight: 600;
}

.post-card p,
.market-card p,
.topic-list-card p,
.live-room-card p,
.newsletter-card p,
.risk-notice p,
.disclaimer-box p,
.faq-section p,
.topic-intro p,
.footer-brand p,
.not-found-card p,
.empty-state {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
}

.entry-author {
    color: #1f2937;
    font-weight: 500;
}

.avatar-dot {
    font-weight: 600;
}

.single-header h1 {
    max-width: 900px;
}

.entry-content {
    color: #374151;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
}

.entry-content h2 {
    margin: 38px 0 16px;
    color: #111827;
    font-size: clamp(26px, 2.1vw, 32px);
    line-height: 1.36;
    font-weight: 700;
}

.entry-content h3 {
    margin: 28px 0 12px;
    color: #111827;
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.45;
    font-weight: 600;
}

.entry-content p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 22px;
    padding-left: 1.35em;
}

.entry-content li {
    margin: 0 0 10px;
    line-height: 1.8;
}

.entry-content blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    color: #4b5563;
    background: #fff8f3;
    border-left: 3px solid var(--fnt-primary);
    border-radius: var(--fnt-radius);
}

.core-view,
.disclaimer-box,
.faq-section,
.risk-notice {
    font-size: 15px;
    line-height: 1.78;
}

.core-view strong,
.faq-section summary {
    color: #111827;
    font-weight: 600;
}

.core-view p {
    color: #374151;
    font-size: 16px;
    line-height: 1.78;
}

.side-card h2 {
    font-size: 20px;
}

.post-compact h3 {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.topic-card h3 {
    color: #fff;
    font-weight: 600;
}

.topic-stats span {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
        line-height: 1.72;
    }

    h1,
    .hero-copy h1,
    .single-header h1,
    .page-hero h1,
    .page-title h1,
    .topic-hero h1,
    .not-found-card h1 {
        font-size: 30px;
        line-height: 1.24;
        font-weight: 700;
    }

    h2,
    .section-heading h2,
    .live-room-card h2,
    .side-card h2,
    .newsletter-card h2,
    .risk-notice h2,
    .archive-toolbar h2,
    .disclaimer-box h2,
    .topic-intro h2,
    .faq-section h2 {
        font-size: 24px;
        line-height: 1.34;
    }

    h3,
    .post-card h3,
    .market-card h3,
    .topic-card h3,
    .topic-list-card h2 {
        font-size: 16px;
        line-height: 1.48;
    }

    .hero-copy p,
    .page-hero p,
    .topic-hero p,
    .entry-content,
    .entry-content p {
        font-size: 16px;
        line-height: 1.78;
    }

    .post-card h3,
    .post-card--list h3 {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
    }

    .post-card p,
    .market-card p,
    .topic-list-card p,
    .live-room-card p,
    .newsletter-card p,
    .risk-notice p,
    .disclaimer-box p,
    .faq-section p,
    .topic-intro p {
        font-size: 14px;
    }

    .entry-meta,
    .breadcrumb,
    .badge,
    .eyebrow {
        font-size: 12px;
    }

    .btn {
        font-size: 14px;
    }

    .btn-compact {
        font-size: 0;
    }

    .btn-compact::after {
        content: "\8BA2\9605";
        font-size: 13px;
        line-height: 1;
    }
}

/* CC Switch inspired typography tuning */
:root {
    --text-strong: #3f3b36;
    --text-main: #5f5a54;
    --text-soft: #817b73;
    --text-faint: #aaa39b;
}

body {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 400;
}

.site-brand__text strong {
    color: var(--text-strong);
    font-size: 20px;
    line-height: 1.18;
    font-weight: 700;
}

.site-brand__text small {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
}

.primary-menu a,
.footer-menu a,
.footer-links a,
.category-tabs a {
    color: #3f4650;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover,
.category-tabs .is-active,
.category-tabs a:hover {
    color: var(--fnt-primary);
    font-weight: 500;
}

.hero-copy h1,
.single-header h1,
.page-hero h1,
.page-title h1,
.topic-hero h1,
.not-found-card h1 {
    color: var(--text-strong);
    font-size: clamp(34px, 3.45vw, 48px);
    line-height: 1.16;
    font-weight: 600;
}

.hero-copy p,
.page-hero p,
.topic-hero p {
    color: #626b76;
    font-size: 17px;
    line-height: 1.78;
    font-weight: 400;
}

.section-heading h2,
.live-room-card h2,
.archive-toolbar h2,
.topic-list-card h2,
.topic-intro h2,
.faq-section h2,
.disclaimer-box h2,
.risk-notice h2,
.newsletter-card h2,
.not-found-card h2 {
    color: var(--text-strong);
    font-size: clamp(25px, 2vw, 30px);
    line-height: 1.32;
    font-weight: 600;
}

.side-card h2,
.footer-links h2,
.footer-newsletter h2 {
    color: var(--text-strong);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.post-card h3,
.market-card h3,
.post-compact h3 {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
}

.post-card--list h3,
.topic-card h3 {
    font-size: clamp(19px, 1.65vw, 23px);
    line-height: 1.42;
    font-weight: 600;
}

.post-card p,
.market-card p,
.topic-list-card p,
.live-room-card p,
.newsletter-card p,
.risk-notice p,
.disclaimer-box p,
.faq-section p,
.topic-intro p,
.footer-brand p,
.not-found-card p,
.empty-state {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.76;
    font-weight: 400;
}

.entry-content {
    color: #414b57;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
}

.entry-content p {
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 1.85;
}

.entry-content .article-summary-box {
    margin: 22px 0 28px;
    padding: 18px 20px;
    background: #fff8f3;
    border: 1px solid var(--fnt-line);
    border-radius: var(--fnt-radius);
}

.entry-content .article-summary-box p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
}

.entry-content figure {
    margin: 26px 0;
}

.entry-content figure img {
    width: 100%;
    height: auto;
    border-radius: var(--fnt-radius);
    border: 1px solid var(--fnt-line);
}

.entry-content figcaption {
    margin-top: 9px;
    color: var(--text-faint, #aaa39b);
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

.entry-content h2 {
    color: var(--text-strong);
    font-size: clamp(25px, 2vw, 30px);
    line-height: 1.36;
    font-weight: 600;
}

.entry-content h3 {
    color: var(--text-strong);
    font-size: clamp(20px, 1.55vw, 23px);
    line-height: 1.45;
    font-weight: 600;
}

.entry-content li,
.faq-section summary,
.question-list li {
    font-size: 15px;
    line-height: 1.8;
}

.entry-meta,
.breadcrumb,
.post-compact span,
.post-nav span,
.footer-contact,
.copyright,
.icp,
.archive-toolbar span,
.hero-stat span {
    color: var(--text-faint);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

.entry-author {
    color: #374151;
    font-weight: 500;
}

.btn {
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
}

.btn-small,
.btn-compact {
    font-size: 14px;
}

.eyebrow,
.badge,
.topic-card span,
.pill,
.filter-tabs span,
.category-filter a {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.pill,
.category-filter a {
    font-size: 14px;
}

.core-view,
.disclaimer-box,
.faq-section,
.risk-notice {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.core-view p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
        line-height: 1.74;
    }

    .site-brand__text strong {
        font-size: 16px;
        line-height: 1.15;
    }

    .primary-menu a {
        font-size: 15px;
    }

    .hero-copy h1,
    .single-header h1,
    .page-hero h1,
    .page-title h1,
    .topic-hero h1,
    .not-found-card h1 {
        font-size: 30px;
        line-height: 1.22;
        font-weight: 600;
    }

    .hero-copy p,
    .page-hero p,
    .topic-hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .section-heading h2,
    .live-room-card h2,
    .archive-toolbar h2,
    .topic-list-card h2,
    .topic-intro h2,
    .faq-section h2,
    .disclaimer-box h2,
    .risk-notice h2,
    .newsletter-card h2 {
        font-size: 23px;
        line-height: 1.35;
    }

    .post-card h3,
    .post-card--list h3,
    .market-card h3,
    .post-compact h3 {
        font-size: 16px;
        line-height: 1.52;
    }

    .post-card p,
    .market-card p,
    .topic-list-card p,
    .live-room-card p,
    .newsletter-card p,
    .risk-notice p,
    .disclaimer-box p,
    .faq-section p,
    .topic-intro p {
        font-size: 14px;
        line-height: 1.76;
    }

    .entry-content,
    .entry-content p {
        font-size: 15px;
        line-height: 1.85;
    }

    .entry-content h2 {
        font-size: 23px;
    }

    .entry-content h3 {
        font-size: 19px;
    }

    .btn {
        font-size: 14px;
    }

    .btn-compact {
        font-size: 0;
    }
}

/* Content typography scale correction */
.page-hero h1,
.page-title h1 {
    font-size: clamp(22px, 1.85vw, 26px);
    line-height: 1.28;
    font-weight: 600;
}

.single-header h1 {
    font-size: clamp(24px, 2.05vw, 30px);
    line-height: 1.32;
    font-weight: 600;
}

.post-card--list h3 {
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.52;
    font-weight: 600;
}

.entry-content h2 {
    margin: 28px 0 10px;
    font-size: clamp(18px, 1.25vw, 20px);
    line-height: 1.48;
    font-weight: 600;
}

.entry-content h3 {
    margin: 22px 0 8px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
}

.disclaimer-box h2 {
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
}

.disclaimer-box p {
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 640px) {
    .page-hero h1,
    .page-title h1 {
        font-size: 22px;
        line-height: 1.28;
    }

    .single-header h1 {
        font-size: 23px;
        line-height: 1.32;
    }

    .post-card--list h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    .entry-content h2 {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.5;
    }

    .entry-content h3 {
        font-size: 16px;
        line-height: 1.55;
    }

    .disclaimer-box h2 {
        font-size: 16px;
    }

    .disclaimer-box p {
        font-size: 13px;
    }
}

/* Compact module typography correction */
.hero-copy h1 {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.18;
    font-weight: 600;
}

.section-heading h2 {
    font-size: clamp(21px, 1.55vw, 24px);
    line-height: 1.35;
    font-weight: 600;
}

.newsletter-card h2,
.risk-notice h2 {
    font-size: 18px;
    line-height: 1.42;
    font-weight: 600;
}

.side-card h2 {
    font-size: 17px;
    line-height: 1.42;
    font-weight: 600;
}

.post-compact h3 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.topic-list-card h2 {
    font-size: clamp(20px, 1.65vw, 24px);
    line-height: 1.35;
    font-weight: 600;
}

.topic-card h3 {
    font-size: 18px;
    line-height: 1.42;
    font-weight: 600;
}

.market-card h3 {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.risk-notice p,
.newsletter-card p {
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 640px) {
    .hero-copy h1 {
        font-size: 27px;
        line-height: 1.22;
    }

    .section-heading h2 {
        font-size: 20px;
        line-height: 1.38;
    }

    .newsletter-card h2,
    .risk-notice h2,
    .side-card h2 {
        font-size: 16px;
    }

    .post-compact h3 {
        font-size: 14px;
        line-height: 1.5;
    }

    .topic-list-card h2 {
        font-size: 20px;
        line-height: 1.36;
    }

    .topic-card h3 {
        font-size: 17px;
    }
}

/* Article list refinement */
.page-hero--articles,
.page-hero--category {
    position: relative;
    min-height: 238px;
    padding: 42px 0 26px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .86) 54%, rgba(255, 255, 255, .38) 100%),
        radial-gradient(circle at 88% 28%, rgba(255, 237, 226, .92), transparent 19rem),
        url("../images/thumb-knowledge.png") right center / 44% auto no-repeat;
}

.page-hero--articles .container,
.page-hero--category .container {
    position: relative;
    z-index: 1;
}

.page-hero--articles h1,
.page-hero--category h1 {
    margin: 10px 0 8px;
    color: #1f2937;
    font-size: clamp(26px, 2.5vw, 34px);
    line-height: 1.28;
    font-weight: 700;
}

.page-hero--articles p,
.page-hero--category p {
    max-width: 620px;
    margin-bottom: 20px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.72;
}

.page-hero .category-filter {
    max-width: 920px;
}

.category-filter--bar {
    position: static;
    padding: 0;
    overflow-x: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scrollbar-width: none;
}

.category-filter--bar::-webkit-scrollbar {
    display: none;
}

.category-filter--bar ul {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: max-content;
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-filter--bar a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 34px;
    padding: 0 11px;
    color: #4b5563;
    border-radius: 0;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    background: transparent;
    white-space: nowrap;
}

.category-filter--bar a::after {
    position: absolute;
    right: 11px;
    bottom: 0;
    left: 11px;
    height: 2px;
    content: "";
    background: transparent;
    border-radius: 999px;
}

.category-filter--bar em {
    color: #9ca3af;
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
}

.category-filter--bar .is-active a,
.category-filter--bar a:hover {
    color: var(--fnt-primary);
    background: transparent;
}

.category-filter--bar .is-active a::after,
.category-filter--bar a:hover::after {
    background: var(--fnt-primary);
}

.archive-content,
.category-layout {
    padding: 30px 0 58px;
}

.category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 318px;
    align-items: start;
    gap: 28px;
}

.archive-toolbar {
    min-height: 38px;
    margin-bottom: 14px;
}

.archive-toolbar h2 {
    color: #1f2937;
    font-size: 20px;
    line-height: 1.38;
    font-weight: 600;
}

.archive-toolbar span {
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    color: #6b7280;
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 6px;
    font-size: 12px;
}

.post-list {
    gap: 14px;
}

.post-card--list {
    grid-template-columns: 210px minmax(0, 1fr) 34px;
    gap: 18px;
    min-height: 132px;
    padding: 12px;
    background: #fff;
    border-color: #edf0f3;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(31, 41, 55, .04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.post-card--list:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 90, 36, .22);
    box-shadow: 0 14px 30px rgba(31, 41, 55, .07);
}

.post-card--list .post-card__image {
    height: 126px;
    border-radius: 7px;
}

.post-card--list .post-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.post-card--list .badge {
    align-self: flex-start;
    min-height: auto;
    padding: 0;
    color: var(--fnt-primary);
    background: transparent;
    border-radius: 0;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.post-card--list h3 {
    margin: 7px 0 7px;
    color: #1f2937;
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.45;
    font-weight: 600;
}

.post-card--list p {
    display: -webkit-box;
    margin: 0 0 9px;
    overflow: hidden;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-card--list .entry-meta {
    gap: 8px 12px;
    color: #8b95a1;
    font-size: 12px;
    line-height: 1.35;
}

.post-card--list .avatar-dot {
    width: 22px;
    height: 22px;
    font-size: 11px;
}

.bookmark-link {
    width: 30px;
    height: 30px;
    color: #9ca3af;
    background: #fff;
    border-color: #edf0f3;
    font-size: 16px;
}

.bookmark-link:hover {
    color: var(--fnt-primary);
    border-color: rgba(255, 90, 36, .35);
}

.archive-content .content-sidebar,
.category-layout .content-sidebar {
    gap: 14px;
}

.archive-content .side-card,
.category-layout .side-card {
    padding: 18px;
    border-color: #edf0f3;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(31, 41, 55, .04);
}

.archive-content .side-card h2,
.category-layout .side-card h2 {
    margin-bottom: 12px;
    font-size: 16px;
}

.archive-content .post-compact,
.category-layout .post-compact {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
}

.archive-content .post-compact__image,
.category-layout .post-compact__image {
    border-radius: 6px;
}

.archive-content .post-compact h3,
.category-layout .post-compact h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 1180px) {
    .category-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .page-hero--articles,
    .page-hero--category {
        min-height: 0;
        padding: 30px 0 22px;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .86)),
            radial-gradient(circle at 86% 22%, rgba(255, 237, 226, .9), transparent 15rem);
    }

    .page-hero .category-filter {
        max-width: 100%;
    }

    .content-sidebar {
        grid-template-columns: 1fr;
    }

    .post-card--list {
        grid-template-columns: 158px minmax(0, 1fr);
        gap: 12px;
        min-height: 112px;
    }

    .post-card--list .post-card__image {
        height: 104px;
    }

    .post-card--list p,
    .post-card--list .entry-meta span:nth-child(n+3),
    .bookmark-link {
        display: none;
    }
}

@media (max-width: 640px) {
    .page-hero--articles h1,
    .page-hero--category h1 {
        font-size: 24px;
    }

    .category-filter--bar a {
        min-height: 32px;
        padding: 0 9px;
        font-size: 12px;
    }

    .category-filter--bar a::after {
        right: 9px;
        left: 9px;
    }

    .archive-content,
    .category-layout {
        padding-top: 22px;
    }

    .post-card--list {
        grid-template-columns: 116px minmax(0, 1fr);
        padding: 10px;
    }

    .post-card--list .post-card__image {
        height: 86px;
    }

    .post-card--list h3 {
        margin: 5px 0;
        font-size: 15px;
        line-height: 1.42;
    }

    .post-card--list .badge,
    .post-card--list .entry-meta {
        font-size: 11px;
    }
}

.post-card,
.side-card,
.market-card,
.topic-card,
.newsletter-card,
.risk-notice,
.seo-intro,
.fnt-ad {
    border-radius: var(--fnt-card-radius, 8px);
}

.fnt-ad {
    overflow: hidden;
    margin-top: 18px;
    margin-bottom: 18px;
    color: #334155;
    font-size: 14px;
}

.fnt-ad--top {
    padding: 0;
}

.fnt-ad--sidebar {
    margin: 0 0 18px;
}

.fnt-ad img,
.fnt-ad iframe {
    display: block;
    max-width: 100%;
}

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.social-row a:hover {
    background: var(--fnt-primary);
    color: #fff;
}

.site-footer--simple .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, .8fr));
}

.site-footer--simple .footer-contact-list {
    display: none;
}

.fnt-lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(15, 23, 42, .82);
}

.fnt-lightbox.is-open {
    display: flex;
}

.fnt-lightbox img {
    display: block;
    max-width: min(1080px, 94vw);
    max-height: 86vh;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.fnt-lightbox button {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #111827;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.fnt-lightbox-enabled .entry-content img,
.fnt-lightbox-enabled .js-article-content img {
    cursor: zoom-in;
}

.auto-keyword-link {
    color: var(--fnt-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Yinkar compact homepage */
body.home {
    background:
        radial-gradient(circle at 74% 10%, rgba(255, 214, 190, .48), transparent 28rem),
        radial-gradient(circle at 18% 14%, rgba(255, 241, 232, .88), transparent 24rem),
        linear-gradient(180deg, #fffaf6 0, #fff 54rem);
}

body.home .site-header {
    padding: 10px 0;
    background: rgba(255, 250, 246, .9);
    border-bottom-color: rgba(241, 222, 211, .68);
}

body.home .site-header__inner,
body.home .yk-hero__grid,
body.home .yk-feature-rail,
body.home .yk-home-surface,
body.home .site-footer > .container {
    width: min(calc(100% - 72px), 1120px);
    max-width: 1120px;
}

body.home .site-header__inner {
    min-height: 52px;
    gap: 22px;
}

body.home .site-brand {
    min-width: 0;
    gap: 9px;
}

body.home .site-brand__mark,
body.home .site-brand__image {
    width: 38px;
    height: 38px;
}

body.home .site-brand__text strong {
    font-size: 16px;
    line-height: 1.16;
    white-space: nowrap;
}

body.home .site-brand__text small {
    margin-top: 4px;
    font-size: 10px;
}

body.home .primary-menu {
    gap: clamp(18px, 2.6vw, 34px);
}

body.home .primary-menu a {
    padding: 9px 0;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

body.home .primary-menu .current-menu-item > a::after,
body.home .primary-menu a:hover::after {
    bottom: 0;
}

body.home .icon-button,
body.home .menu-toggle {
    width: 38px;
    height: 38px;
}

body.home .header-actions .btn-compact {
    min-height: 38px;
    padding: 0 17px;
    border-radius: 999px;
    font-size: 13px;
}

body.home .yk-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 26px;
}

body.home .yk-hero::before {
    position: absolute;
    top: 86px;
    left: 49%;
    width: 380px;
    height: 380px;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle, rgba(255, 90, 36, .2) 1.1px, transparent 1.5px) 0 0 / 9px 9px;
    border-radius: 50%;
    mask-image: radial-gradient(circle, #000 0 48%, transparent 72%);
    opacity: .72;
}

body.home .yk-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 540px);
    gap: 46px;
    align-items: center;
}

body.home .yk-hero__copy {
    position: relative;
    z-index: 1;
}

body.home .yk-hero__copy .eyebrow {
    color: var(--fnt-primary);
    font-size: 13px;
    font-weight: 700;
}

body.home .yk-hero__copy h1 {
    max-width: 510px;
    margin: 16px 0;
    color: #141414;
    font-size: clamp(40px, 3.8vw, 52px);
    line-height: 1.24;
    font-weight: 700;
    letter-spacing: 0;
}

body.home .yk-hero__copy p {
    max-width: 510px;
    margin: 0 0 26px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.9;
}

body.home .yk-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

body.home .yk-hero__actions .btn {
    min-height: 48px;
    padding-inline: 28px;
    border-radius: 999px;
    font-size: 14px;
}

body.home .yk-ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    color: #475569;
    background: rgba(255, 255, 255, .72);
    border: 1px solid #f4e2d7;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(76, 49, 31, .06);
    font-size: 14px;
    font-weight: 600;
}

body.home .yk-ghost-link::before {
    display: inline-block;
    width: 14px;
    height: 14px;
    content: "";
    border: 2px solid currentColor;
    border-radius: 50%;
}

body.home .yk-stat-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(74px, 1fr));
    gap: 12px;
    max-width: 430px;
    margin-top: 28px;
}

body.home .yk-stat-row div {
    min-height: 66px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid #f3e3d9;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(76, 49, 31, .055);
}

body.home .yk-stat-row strong {
    display: block;
    color: #111827;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

body.home .yk-stat-row span {
    display: block;
    margin-top: 5px;
    color: #7a8491;
    font-size: 11px;
    line-height: 1.25;
}

body.home .yk-dashboard {
    width: 100%;
    max-width: 540px;
    min-height: auto;
    padding: 18px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid #f3e2d9;
    border-radius: 14px;
    box-shadow: 0 24px 62px rgba(76, 49, 31, .1);
    backdrop-filter: blur(16px);
}

body.home .yk-dashboard::before,
body.home .yk-dashboard::after {
    display: none;
}

body.home .yk-dashboard__top {
    min-height: 0;
    margin-bottom: 14px;
}

body.home .yk-dashboard__top span {
    color: var(--fnt-primary);
    font-size: 13px;
    font-weight: 800;
}

body.home .yk-dashboard__top strong {
    font-size: 16px;
    font-weight: 700;
}

body.home .yk-dashboard__top a {
    margin-left: auto;
    padding: 6px 11px;
    color: #94a3b8;
    background: #fff8f4;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

body.home .yk-dashboard__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 208px;
    gap: 12px;
    padding: 0;
}

body.home .yk-chart {
    min-height: auto;
    min-width: 0;
    padding: 16px;
    background: linear-gradient(135deg, #fffdfa, #fff7f1);
    border: 1px solid #f6e5dc;
    border-radius: 12px;
}

body.home .yk-chart .hero-chart__head {
    align-items: center;
    margin-bottom: 14px;
}

body.home .yk-chart .hero-chart__plot {
    height: 142px;
}

body.home .yk-chart .hero-bars {
    gap: 12px;
}

body.home .yk-chart .hero-chart__chips span {
    min-height: 25px;
    color: #64748b;
    background: #fff;
    border-color: #f4e2d8;
    font-size: 11px;
}

body.home .yk-market-card {
    padding: 15px 13px 13px;
    background: #fff;
    border: 1px solid #f4e2d8;
    border-radius: 12px;
}

body.home .yk-market-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

body.home .yk-market-card__head strong {
    color: #111827;
    font-size: 13px;
    font-weight: 700;
}

body.home .yk-market-card__head span {
    color: #94a3b8;
    font-size: 10px;
}

body.home .yk-market-card__list {
    display: grid;
    gap: 8px;
}

body.home .yk-market-card__row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 42px 38px;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.2;
}

body.home .yk-market-card__row strong {
    overflow: hidden;
    color: #111827;
    font-size: 11px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.home .yk-market-card__row em {
    color: #16a34a;
    font-style: normal;
    font-weight: 700;
    text-align: right;
}

body.home .yk-market-card__row.is-down em {
    color: #ef4444;
}

body.home .yk-market-card__row svg {
    width: 38px;
    height: 16px;
}

body.home .yk-market-card__row polyline {
    fill: none;
    stroke: #16a34a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.home .yk-market-card__row.is-down polyline {
    stroke: #ef4444;
}

body.home .yk-market-card > a {
    display: inline-flex;
    margin-top: 10px;
    color: var(--fnt-primary);
    font-size: 11px;
    font-weight: 700;
}

body.home .yk-dashboard__tiles {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
    margin-top: 12px;
}

body.home .yk-dashboard__tiles a {
    min-width: 0;
    padding: 12px 10px;
    background: #fff8f4;
    border: 1px solid #f5e2d8;
    border-radius: 10px;
    box-shadow: none;
}

body.home .yk-dashboard__tiles strong {
    font-size: 13px;
}

body.home .yk-dashboard__tiles span,
body.home .yk-dashboard__tiles em {
    font-size: 11px;
}

body.home .yk-feature-rail {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0;
    margin-top: 8px;
    margin-bottom: 20px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #f2e2d9;
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(76, 49, 31, .06);
}

body.home .yk-feature-rail__item {
    display: grid;
    min-height: 62px;
    place-items: center;
    gap: 7px;
    color: #111827;
    font-size: 12px;
    font-weight: 600;
}

body.home .yk-feature-rail__icon {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    color: var(--fnt-primary);
}

body.home .yk-feature-rail__icon::before,
body.home .yk-feature-rail__icon::after {
    position: absolute;
    content: "";
}

body.home .yk-feature-rail__icon::before {
    inset: 5px;
    border: 2px solid currentColor;
    border-radius: 8px;
}

body.home .yk-feature-rail__icon::after {
    right: 2px;
    bottom: 4px;
    width: 12px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-18deg);
}

body.home .yk-home-surface {
    margin-bottom: 34px;
    padding: 20px 20px 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #f2e2d9;
    border-radius: 12px;
    box-shadow: 0 24px 58px rgba(76, 49, 31, .06);
}

body.home .yk-home-surface .section-block {
    padding: 22px 0 24px;
}

body.home .yk-home-surface .section-block:first-child {
    padding-top: 0;
}

body.home .yk-home-surface .section-block + .section-block {
    border-top: 1px solid #f2e5dd;
}

body.home .yk-heading {
    margin-bottom: 15px;
}

body.home .yk-heading h2,
body.home .yk-card-head h2 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

body.home .yk-heading > a,
body.home .yk-card-head a {
    color: #7a8491;
    font-size: 12px;
    font-weight: 700;
}

body.home .yk-heading > a:hover,
body.home .yk-card-head a:hover {
    color: var(--fnt-primary);
}

body.home .yk-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(245px, .74fr) 315px;
    gap: 14px;
    align-items: stretch;
}

body.home .yk-lead-card,
body.home .yk-mini-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-radius: 8px;
    background: #141414;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .08);
}

body.home .yk-lead-card__image,
body.home .yk-mini-card__image {
    position: absolute;
    inset: 0;
}

body.home .yk-lead-card__image img,
body.home .yk-mini-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .78;
}

body.home .yk-lead-card::after,
body.home .yk-mini-card::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(180deg, rgba(7, 12, 20, .1) 0, rgba(7, 12, 20, .78) 100%);
}

body.home .yk-lead-card__content,
body.home .yk-mini-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    min-height: inherit;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 26px;
}

body.home .yk-lead-card .badge,
body.home .yk-mini-card .badge {
    align-self: flex-start;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .16);
    backdrop-filter: blur(10px);
}

body.home .yk-lead-card h3 {
    max-width: 420px;
    margin: 14px 0 7px;
    color: #fff;
    font-size: 26px;
    line-height: 1.34;
    font-weight: 700;
}

body.home .yk-lead-card p {
    display: -webkit-box;
    max-width: 390px;
    margin: 0 0 18px;
    overflow: hidden;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.75;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

body.home .yk-card-arrow,
body.home .yk-mini-card__content span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

body.home .yk-mini-stack {
    display: grid;
    gap: 14px;
}

body.home .yk-mini-card {
    min-height: 158px;
}

body.home .yk-mini-card__content {
    padding: 20px;
}

body.home .yk-mini-card h3 {
    display: -webkit-box;
    margin: 11px 0 12px;
    overflow: hidden;
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.home .yk-hot-card,
body.home .yk-topic-card,
body.home .yk-analysis-card,
body.home .yk-side-card,
body.home .yk-side-stack .newsletter-card,
body.home .yk-side-stack .risk-notice {
    background: #fff;
    border: 1px solid #f1e5dd;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(76, 49, 31, .035);
}

body.home .yk-hot-card {
    padding: 20px;
}

body.home .yk-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

body.home .yk-hot-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: yk-hot;
}

body.home .yk-hot-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    counter-increment: yk-hot;
}

body.home .yk-hot-list li::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    color: var(--fnt-primary);
    content: counter(yk-hot, decimal-leading-zero);
    background: #fff3ec;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

body.home .yk-hot-list a {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.home .yk-hot-list span {
    grid-column: 2;
    margin-top: -8px;
    color: #94a3b8;
    font-size: 11px;
}

body.home .yk-news-topics {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 16px;
}

body.home .yk-latest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

body.home .yk-latest-grid .post-card {
    overflow: hidden;
    border-color: #f1e5dd;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(76, 49, 31, .04);
}

body.home .yk-latest-grid .post-card__image {
    height: 104px;
}

body.home .yk-latest-grid .post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home .yk-latest-grid .post-card__content {
    padding: 11px 12px 13px;
}

body.home .yk-latest-grid .post-card h3 {
    display: -webkit-box;
    margin: 7px 0 9px;
    overflow: hidden;
    color: #111827;
    font-size: 13px;
    line-height: 1.48;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.home .yk-latest-grid .entry-meta {
    gap: 6px 8px;
    color: #7a8491;
    font-size: 10px;
    line-height: 1.35;
}

body.home .yk-latest-grid .avatar-dot {
    width: 18px;
    height: 18px;
    font-size: 10px;
}

body.home .yk-latest-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}

body.home .yk-inline-article {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 84px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #f1e5dd;
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(76, 49, 31, .035);
}

body.home .yk-inline-article__image {
    display: block;
    overflow: hidden;
    width: 112px;
    height: 64px;
    border-radius: 8px;
    background: #f8fafc;
}

body.home .yk-inline-article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home .yk-inline-article h3 {
    display: -webkit-box;
    margin: 0 0 7px;
    overflow: hidden;
    color: #111827;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.home .yk-inline-article time {
    color: #8792a1;
    font-size: 12px;
}

body.home .yk-topic-card {
    padding: 18px;
}

body.home .yk-topic-list {
    display: grid;
    gap: 10px;
}

body.home .yk-topic-item {
    overflow: hidden;
    min-height: 58px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

body.home .yk-topic-item a {
    display: grid;
    min-height: 58px;
    align-content: center;
    gap: 3px;
    padding: 12px 14px;
    color: #fff;
}

body.home .yk-topic-item strong {
    font-size: 14px;
    line-height: 1.35;
}

body.home .yk-topic-item span {
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
}

body.home .yk-analysis-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 16px;
    align-items: start;
}

body.home .yk-analysis-card {
    padding: 20px;
}

body.home .yk-analysis-list {
    display: grid;
    gap: 0;
}

body.home .yk-analysis-list .post-card--list {
    grid-template-columns: 126px minmax(0, 1fr);
    min-height: 100px;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid #f1e5dd;
    border-radius: 0;
    box-shadow: none;
}

body.home .yk-analysis-list .post-card--list:last-child {
    border-bottom: 0;
}

body.home .yk-analysis-list .post-card--list .post-card__image {
    height: 82px;
    border-radius: 7px;
}

body.home .yk-analysis-list .post-card--list .post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home .yk-analysis-list .post-card--list h3 {
    margin: 4px 0 5px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

body.home .yk-analysis-list .post-card--list p {
    display: -webkit-box;
    margin-bottom: 7px;
    overflow: hidden;
    color: #64748b;
    font-size: 12px;
    line-height: 1.55;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

body.home .yk-analysis-list .post-card--list .entry-meta {
    font-size: 11px;
}

body.home .yk-analysis-list .bookmark-link {
    display: none;
}

body.home .yk-side-stack {
    display: grid;
    gap: 16px;
}

body.home .yk-side-card {
    padding: 18px;
}

body.home .yk-side-card .pill-row {
    gap: 8px;
}

body.home .yk-side-card .pill {
    min-height: 28px;
    padding: 0 11px;
    color: #64748b;
    background: #fff8f4;
    border-color: #f1e3da;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
}

body.home .yk-side-stack .newsletter-card {
    padding: 20px;
}

body.home .yk-side-stack .newsletter-card h2,
body.home .yk-side-stack .risk-notice h2 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

body.home .yk-side-stack .newsletter-card p,
body.home .yk-side-stack .risk-notice p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.7;
}

body.home .yk-side-stack .newsletter-card img {
    width: 92px;
    margin-bottom: -8px;
}

body.home .yk-side-stack .newsletter-form {
    grid-template-columns: 1fr;
    gap: 10px;
}

body.home .yk-side-stack .newsletter-form input,
body.home .yk-side-stack .newsletter-form .btn {
    min-height: 38px;
    border-radius: 8px;
    font-size: 12px;
}

body.home .yk-side-stack .risk-notice {
    position: relative;
    min-height: 142px;
    padding: 20px 96px 20px 20px;
    overflow: hidden;
}

body.home .yk-side-stack .risk-notice::after {
    position: absolute;
    right: 24px;
    bottom: 22px;
    display: grid;
    place-items: center;
    width: 60px;
    height: 70px;
    color: rgba(255, 90, 36, .28);
    content: "✓";
    background: rgba(255, 90, 36, .08);
    clip-path: polygon(50% 0, 90% 16%, 82% 72%, 50% 100%, 18% 72%, 10% 16%);
    font-size: 32px;
    font-weight: 800;
}

body.home .site-footer {
    padding: 40px 0 24px;
    background: linear-gradient(180deg, #fff7f1 0, #fffdfb 100%);
    border-top-color: #f1e0d6;
}

body.home .footer-grid {
    grid-template-columns: minmax(230px, 1.15fr) .66fr .66fr minmax(250px, .95fr);
    gap: 30px;
}

body.home .footer-brand p,
body.home .footer-links a,
body.home .footer-contact,
body.home .copyright,
body.home .icp {
    font-size: 12px;
}

body.home .footer-links h2 {
    font-size: 15px;
}

@media (max-width: 1180px) {
    body.home .yk-hero__grid,
    body.home .yk-analysis-layout {
        grid-template-columns: 1fr;
    }

    body.home .yk-dashboard {
        max-width: 100%;
    }

    body.home .yk-focus-grid {
        grid-template-columns: minmax(0, 1fr) minmax(260px, .82fr);
    }

    body.home .yk-hot-card {
        grid-column: 1 / -1;
    }

    body.home .yk-news-topics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    body.home .site-header__inner,
    body.home .yk-hero__grid,
    body.home .yk-feature-rail,
    body.home .yk-home-surface,
    body.home .site-footer > .container {
        width: min(calc(100% - 44px), 1120px);
    }

    body.home .yk-dashboard__main,
    body.home .yk-focus-grid {
        grid-template-columns: 1fr;
    }

    body.home .yk-feature-rail {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.home .yk-latest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    body.home .site-header__inner,
    body.home .yk-hero__grid,
    body.home .yk-feature-rail,
    body.home .yk-home-surface,
    body.home .site-footer > .container {
        width: min(calc(100% - 28px), 1120px);
    }

    body.home .yk-hero {
        padding: 32px 0 18px;
    }

    body.home .yk-hero__copy h1 {
        font-size: 30px;
    }

    body.home .yk-hero__copy p {
        font-size: 14px;
        line-height: 1.8;
    }

    body.home .yk-stat-row,
    body.home .yk-dashboard__tiles,
    body.home .yk-latest-grid,
    body.home .footer-grid {
        grid-template-columns: 1fr;
    }

    body.home .yk-feature-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 12px;
    }

    body.home .yk-home-surface {
        padding: 16px;
    }

    body.home .yk-lead-card h3 {
        font-size: 22px;
    }

    body.home .yk-lead-card,
    body.home .yk-mini-card {
        min-height: 230px;
    }

    body.home .yk-analysis-list .post-card--list {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    body.home .yk-analysis-list .post-card--list .post-card__image {
        height: 72px;
    }

    body.home .yk-latest-inline {
        grid-template-columns: 1fr;
    }

    body.home .yk-inline-article {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    body.home .yk-inline-article__image {
        width: 96px;
        height: 62px;
    }

    body.home .yk-side-stack .risk-notice {
        padding-right: 20px;
    }

    body.home .yk-side-stack .risk-notice::after {
        display: none;
    }
}

/* Single article compact typography alignment */
.single-article .related-section .section-heading {
    margin-bottom: 18px;
}

.single-article .related-section .eyebrow {
    min-height: 24px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 600;
}

.single-article .related-section .section-heading h2 {
    font-size: 22px;
    line-height: 1.34;
    font-weight: 600;
}

.single-article .related-section .post-card__content {
    padding: 13px 14px 15px;
}

.single-article .related-section .post-card h3 {
    display: -webkit-box;
    margin: 8px 0 8px;
    overflow: hidden;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.single-article .related-section .badge {
    min-height: 22px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 500;
}

.single-article .related-section .entry-meta {
    gap: 6px 8px;
    font-size: 11px;
    line-height: 1.35;
}

.single-article .content-sidebar .side-card h2 {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.single-article .content-sidebar .rank-list,
.single-article .content-sidebar .latest-list {
    gap: 13px;
}

.single-article .content-sidebar .post-compact h3 {
    display: -webkit-box;
    margin: 0 0 5px;
    overflow: hidden;
    color: #111827;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.single-article .content-sidebar .post-compact span {
    color: #8b95a1;
    font-size: 12px;
    line-height: 1.35;
}

.single-article .content-sidebar .rank-item > span {
    width: 21px;
    height: 21px;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 640px) {
    .single-article .related-section .section-heading h2 {
        font-size: 20px;
    }

    .single-article .related-section .post-card h3,
    .single-article .content-sidebar .post-compact h3 {
        font-size: 13px;
        line-height: 1.45;
    }

    .single-article .content-sidebar .side-card h2 {
        font-size: 15px;
    }
}

/* Standard portal width 2026-07-08: align finance theme with ai.seoaget.com scale */
@media (min-width: 1181px) {
    :root {
        --fnt-container: 1320px;
    }

    body.home .site-header__inner,
    body.home .yk-hero__grid,
    body.home .yk-feature-rail,
    body.home .yk-home-surface,
    body.home .site-footer > .container {
        width: min(calc(100% - 96px), 1320px);
        max-width: 1320px;
    }

    body.home .yk-hero {
        padding: 70px 0 34px;
    }

    body.home .yk-hero__grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(580px, 640px);
        gap: 72px;
    }

    body.home .yk-hero__copy h1,
    body.home .yk-hero__copy p {
        max-width: 600px;
    }

    body.home .yk-hero__copy h1 {
        font-size: clamp(46px, 3.9vw, 60px);
        line-height: 1.16;
    }

    body.home .yk-hero__copy p {
        font-size: 16px;
        line-height: 1.92;
    }

    body.home .yk-dashboard {
        max-width: 640px;
        padding: 22px;
        border-radius: 16px;
        box-shadow: 0 28px 76px rgba(76, 49, 31, .09);
    }

    body.home .yk-dashboard__main {
        grid-template-columns: minmax(0, 1fr) 236px;
        gap: 16px;
    }

    body.home .yk-dashboard__tiles {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.home .yk-feature-rail {
        gap: 14px;
        margin-bottom: 28px;
    }

    body.home .yk-feature-rail__item {
        min-height: 96px;
        padding: 18px 16px;
        border-radius: 12px;
    }

    body.home .yk-home-surface {
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 26px 72px rgba(76, 49, 31, .07);
    }

    body.home .yk-focus-grid {
        grid-template-columns: minmax(0, 1.28fr) minmax(300px, .78fr) 360px;
        gap: 20px;
    }

    body.home .yk-lead-card {
        min-height: 390px;
    }

    body.home .yk-mini-card {
        min-height: 185px;
    }

    body.home .yk-latest-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    body.home .yk-latest-grid .post-card__image {
        aspect-ratio: 1.58 / 1;
    }

    body.home .yk-news-topics {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 22px;
    }

    body.home .yk-analysis-layout {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 22px;
    }

    body.home .yk-analysis-list .post-card--list {
        grid-template-columns: 156px minmax(0, 1fr);
        gap: 16px;
    }

    body.home .yk-analysis-list .post-card--list .post-card__image {
        width: 156px;
        min-width: 156px;
        height: 104px;
    }

    .content-layout,
    .single-layout,
    .archive-content,
    .topic-page-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 30px;
    }

    .post-grid,
    .post-grid--four {
        gap: 22px;
    }
}

@media (min-width: 1440px) {
    body.home .site-header__inner,
    body.home .yk-hero__grid,
    body.home .yk-feature-rail,
    body.home .yk-home-surface,
    body.home .site-footer > .container {
        width: min(calc(100% - 120px), 1360px);
        max-width: 1360px;
    }

    :root {
        --fnt-container: 1360px;
    }
}

/* Yinkar strong portal refresh 2026-07-08: make the homepage visibly match the wider standard */
@media (min-width: 1181px) {
    body.home {
        background:
            radial-gradient(circle at 82% 8%, rgba(255, 116, 62, .22), transparent 30rem),
            radial-gradient(circle at 24% 18%, rgba(255, 239, 226, .9), transparent 34rem),
            linear-gradient(180deg, #fffaf6 0, #fff 46rem);
    }

    body.home .site-header {
        padding: 12px 0;
    }

    body.home .site-header__inner,
    body.home .yk-hero__grid,
    body.home .yk-feature-rail,
    body.home .yk-home-surface,
    body.home .site-footer > .container {
        width: min(calc(100% - 96px), 1360px);
        max-width: 1360px;
    }

    body.home .yk-hero {
        padding: 66px 0 36px;
    }

    body.home .yk-hero__grid {
        grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
        gap: 74px;
        align-items: center;
    }

    body.home .yk-hero__copy h1 {
        max-width: 650px;
        margin: 18px 0 22px;
        font-size: clamp(56px, 4.45vw, 72px);
        line-height: 1.08;
        letter-spacing: 0;
    }

    body.home .yk-hero__copy p {
        max-width: 650px;
        font-size: 17px;
        line-height: 2;
    }

    body.home .yk-hero__actions {
        gap: 18px;
        margin-top: 28px;
    }

    body.home .yk-hero__actions .btn,
    body.home .yk-ghost-link {
        min-height: 54px;
        padding-inline: 30px;
        border-radius: 999px;
        font-size: 15px;
    }

    body.home .yk-stat-row {
        max-width: 620px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin-top: 34px;
    }

    body.home .yk-stat-row div {
        min-height: 76px;
        padding: 16px 18px;
        border-radius: 14px;
    }

    body.home .yk-stat-row strong {
        font-size: 24px;
    }

    body.home .yk-hero__visual {
        min-height: 470px;
    }

    body.home .yk-dashboard {
        position: relative;
        max-width: 650px;
        min-height: 470px;
        padding: 24px;
        overflow: hidden;
        border-radius: 18px;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .70)),
            url("../images/hero-market.png") right center / auto 100% no-repeat;
        box-shadow: 0 34px 86px rgba(76, 49, 31, .12);
    }

    body.home .yk-dashboard::before {
        display: block;
        position: absolute;
        inset: 0;
        pointer-events: none;
        content: "";
        background:
            linear-gradient(90deg, rgba(255,255,255,.96) 0 44%, rgba(255,255,255,.72) 68%, rgba(255,255,255,.35) 100%),
            radial-gradient(circle at 80% 20%, rgba(255, 90, 36, .18), transparent 18rem);
    }

    body.home .yk-dashboard > * {
        position: relative;
        z-index: 1;
    }

    body.home .yk-dashboard__top {
        margin-bottom: 18px;
    }

    body.home .yk-dashboard__top strong {
        font-size: 20px;
    }

    body.home .yk-dashboard__main {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 18px;
        max-width: 570px;
    }

    body.home .yk-chart {
        padding: 20px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .82);
        backdrop-filter: blur(10px);
    }

    body.home .yk-chart .hero-chart__plot {
        height: 182px;
    }

    body.home .yk-market-card {
        padding: 18px 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .86);
        backdrop-filter: blur(10px);
    }

    body.home .yk-dashboard__tiles {
        max-width: 570px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        margin-top: 18px;
    }

    body.home .yk-dashboard__tiles a {
        min-height: 86px;
        padding: 16px;
        border-radius: 14px;
        background: rgba(255, 248, 244, .92);
        backdrop-filter: blur(8px);
    }

    body.home .yk-feature-rail {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 14px;
        margin-top: 28px;
        margin-bottom: 34px;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 28px 76px rgba(76, 49, 31, .08);
    }

    body.home .yk-feature-rail__item {
        min-height: 96px;
        gap: 10px;
        border-radius: 14px;
        background: #fff8f4;
    }

    body.home .yk-feature-rail__icon {
        width: 38px;
        height: 38px;
    }

    body.home .yk-home-surface {
        padding: 34px;
        border-radius: 18px;
    }

    body.home .yk-focus-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr) 360px;
        gap: 24px;
    }

    body.home .yk-lead-card {
        min-height: 420px;
        border-radius: 14px;
    }

    body.home .yk-mini-card {
        min-height: 198px;
        border-radius: 14px;
    }

    body.home .yk-hot-card,
    body.home .yk-topic-card,
    body.home .yk-analysis-card,
    body.home .yk-side-card,
    body.home .yk-side-stack .newsletter-card,
    body.home .yk-side-stack .risk-notice {
        border-radius: 14px;
    }

    body.home .yk-news-topics,
    body.home .yk-analysis-layout {
        gap: 26px;
    }
}

/* Yinkar nav and hero polish 2026-07-08: keep homepage and inner-page navigation consistent */
.site-header {
    padding: 12px 0;
    background: rgba(255, 250, 246, .94);
    border-bottom: 1px solid rgba(241, 222, 211, .78);
}

.site-header__inner {
    min-height: 52px;
}

.primary-menu {
    gap: clamp(18px, 2.5vw, 34px);
}

.primary-menu a,
body.home .primary-menu a {
    padding: 9px 0;
    color: #151515;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover {
    color: #ea580c;
}

.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after,
.primary-menu .current-menu-ancestor > a::after,
.primary-menu a:hover::after,
body.home .primary-menu .current-menu-item > a::after,
body.home .primary-menu a:hover::after {
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: #ea580c;
}

.yk-title-accent {
    color: #c2410c;
}

@media (min-width: 1181px) {
    body.home .yk-hero__copy h1 {
        max-width: 620px;
        font-size: clamp(44px, 3.55vw, 58px);
        line-height: 1.16;
    }
}

/* Yinkar focus-card height tune 2026-07-08: align the feature cards with the hot-list card */
@media (min-width: 1181px) {
    body.home .yk-focus-grid {
        gap: 22px;
        align-items: start;
    }

    body.home .yk-lead-card {
        min-height: 356px;
    }

    body.home .yk-mini-stack {
        gap: 12px;
    }

    body.home .yk-mini-card {
        min-height: 172px;
    }

    body.home .yk-lead-card__content {
        padding: 24px;
    }

    body.home .yk-mini-card__content {
        padding: 18px;
    }

    body.home .yk-lead-card h3 {
        max-width: 450px;
        margin: 12px 0 6px;
        font-size: 23px;
        line-height: 1.32;
    }

    body.home .yk-lead-card p {
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    body.home .yk-mini-card h3 {
        margin: 10px 0 10px;
        font-size: 15px;
        line-height: 1.42;
    }
}

/* Yinkar taxonomy index 2026-07-08: stable 分类 / 标签 landing page */
.page-hero--taxonomy-index {
    min-height: 240px;
}

.taxonomy-index-hero {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 54px;
    align-items: center;
}

.taxonomy-hot-tags {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.taxonomy-hot-tags strong,
.taxonomy-side-tags h2,
.taxonomy-index-main .archive-toolbar strong {
    color: #111827;
    font-size: 16px;
}

.taxonomy-index-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
    padding: 42px 0 64px;
}

.taxonomy-index-sidebar {
    display: grid;
    align-self: start;
    gap: 26px;
    position: sticky;
    top: 96px;
}

.taxonomy-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #f1e5dd;
}

.taxonomy-tabs span,
.taxonomy-tabs a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
}

.taxonomy-tabs .is-active {
    color: #ff5a24;
    border-bottom: 2px solid #ff5a24;
}

.taxonomy-list {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid #f1e5dd;
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(76, 49, 31, .04);
}

.taxonomy-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: #4b5563;
    border-radius: 8px;
    font-size: 14px;
}

.taxonomy-list a:hover,
.taxonomy-list a.is-active {
    color: #ff5a24;
    background: #fff2ea;
}

.taxonomy-list em {
    color: #8a94a3;
    font-style: normal;
}

.taxonomy-side-tags {
    padding: 18px;
    background: #fff;
    border: 1px solid #f1e5dd;
    border-radius: 10px;
}

.taxonomy-side-tags h2 {
    margin: 0 0 14px;
}

.taxonomy-index-main .post-list {
    gap: 16px;
}

@media (max-width: 980px) {
    .taxonomy-index-hero,
    .taxonomy-index-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .taxonomy-index-sidebar {
        position: static;
    }

    .taxonomy-hot-tags {
        grid-template-columns: 1fr;
    }
}

/* Yinkar compact hero balance 2026-07-08: reduce top-heavy first screen */
@media (min-width: 1181px) {
    body.home .yk-hero {
        padding: 42px 0 18px;
    }

    body.home .yk-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(430px, 500px);
        gap: 42px;
    }

    body.home .yk-hero__copy {
        padding-left: clamp(32px, 4.2vw, 58px);
    }

    body.home .yk-hero__copy .eyebrow {
        font-size: 12px;
    }

    body.home .yk-hero__copy h1 {
        max-width: 560px;
        margin: 12px 0 14px;
        font-size: clamp(36px, 3.05vw, 48px);
        line-height: 1.18;
        font-weight: 700;
    }

    body.home .yk-hero__copy p {
        max-width: 560px;
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.75;
    }

    body.home .yk-hero__actions {
        gap: 12px;
    }

    body.home .yk-hero__actions .btn,
    body.home .yk-ghost-link {
        min-height: 42px;
        padding-inline: 22px;
        font-size: 13px;
    }

    body.home .yk-stat-row {
        max-width: 400px;
        gap: 10px;
        margin-top: 22px;
    }

    body.home .yk-stat-row div {
        min-height: 58px;
        padding: 11px 12px;
        border-radius: 9px;
    }

    body.home .yk-stat-row strong {
        font-size: 17px;
    }

    body.home .yk-dashboard {
        max-width: 500px;
        min-height: 0;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 18px 42px rgba(76, 49, 31, .085);
    }

    body.home .yk-dashboard__top {
        margin-bottom: 10px;
    }

    body.home .yk-dashboard__top strong {
        font-size: 17px;
    }

    body.home .yk-dashboard__top span,
    body.home .yk-dashboard__top a {
        font-size: 11px;
    }

    body.home .yk-dashboard__main {
        grid-template-columns: minmax(0, 1fr) 200px;
        gap: 12px;
    }

    body.home .yk-chart {
        padding: 14px;
        border-radius: 10px;
    }

    body.home .yk-chart .hero-chart__plot {
        height: 134px;
    }

    body.home .yk-market-card {
        padding: 14px 12px;
        border-radius: 10px;
    }

    body.home .yk-dashboard__tiles {
        gap: 10px;
        margin-top: 12px;
    }

    body.home .yk-dashboard__tiles a {
        min-height: 66px;
        padding: 12px;
        border-radius: 10px;
    }

    body.home .yk-lead-card {
        min-height: 330px;
    }

    body.home .yk-mini-stack {
        gap: 10px;
    }

    body.home .yk-mini-card {
        min-height: 160px;
    }

    body.home .yk-lead-card__content {
        padding: 22px;
    }

    body.home .yk-mini-card__content {
        padding: 16px;
    }

    body.home .yk-lead-card h3 {
        font-size: 21px;
        line-height: 1.3;
    }

    body.home .yk-mini-card h3 {
        font-size: 14px;
        line-height: 1.38;
    }
}
