
/* =========================================================
   乐体育全站基础样式
========================================================= */
:root {
    --tf-bg: #06110c;
    --tf-bg-2: #07150f;
    --tf-card: rgba(255,255,255,.078);
    --tf-card-strong: rgba(255,255,255,.12);
    --tf-border: rgba(255,255,255,.14);
    --tf-text: #f8faf8;
    --tf-muted: #b8c8bf;
    --tf-muted-2: #8da199;
    --tf-green: #22c55e;
    --tf-gold: #f8c95a;
    --tf-shadow: 0 18px 46px rgba(0,0,0,.26);
    --tf-radius: 22px;
    --tf-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.tf-site-body {
    margin: 0;
    background: var(--tf-bg);
    color: var(--tf-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

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

.tf-skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 9999;
}

.tf-skip-link:focus {
    left: 12px;
    background: #fff;
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
}

.tf-main {
    background: var(--tf-bg);
}

/* =========================================================
   全站头部 Header
========================================================= */
.tf-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(4, 12, 8, .90);
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
}

.tf-header__inner {
    width: min(var(--tf-container), calc(100% - 32px));
    min-height: 64px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.tf-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    text-decoration: none;
}

.tf-logo__image,
.tf-logo__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 auto;
}

.tf-logo__image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.tf-logo__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.tf-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #07130e;
    background: linear-gradient(135deg, var(--tf-gold), var(--tf-green));
    font-size: 18px;
    font-weight: 950;
}

.tf-logo__text {
    display: grid;
    gap: 2px;
    line-height: 1.1;
}

.tf-logo__text strong {
    color: #fff;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -.035em;
}

.tf-logo__text small {
    color: #a9baaf;
    font-size: 12px;
    font-weight: 750;
}

.tf-nav {
    flex: 1;
}

.tf-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.tf-nav__menu a {
    color: #e2eee6;
    font-size: 13px;
    font-weight: 750;
    transition: color .2s ease;
}

.tf-nav__menu a:hover,
.tf-nav__menu .current-menu-item > a,
.tf-nav__menu .current_page_item > a {
    color: var(--tf-gold);
}

.tf-nav__menu--empty a {
    color: var(--tf-gold) !important;
}

.tf-header-search {
    width: 230px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    padding: 4px;
}

.tf-header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    padding: 8px 10px;
    font-size: 13px;
}

.tf-header-search input::placeholder {
    color: #8da199;
}

.tf-header-search button {
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    color: #07130e;
    background: var(--tf-gold);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.tf-nav-toggle {
    display: none;
    margin-left: auto;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.tf-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #fff;
}

/* =========================================================
   首页 front-page.php
========================================================= */
.tf-home-page,
.tf-home-page * {
    box-sizing: border-box;
}

.tf-home-page {
    background: var(--tf-bg);
    color: var(--tf-text);
    overflow: hidden;
}

.tf-home-page a {
    color: inherit;
    text-decoration: none;
}

.tf-hero {
    position: relative;
    overflow: hidden;
    padding: 34px 0 52px;
    background:
        radial-gradient(circle at 16% 16%, rgba(34,197,94,.18), transparent 28%),
        radial-gradient(circle at 84% 6%, rgba(248,201,90,.16), transparent 26%),
        linear-gradient(180deg, #06110c 0%, #07180f 55%, #06110c 100%);
}

.tf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .075;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.55), transparent);
}

.tf-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 34px;
    align-items: center;
}

.tf-hero h1 {
    max-width: 760px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.12;
    letter-spacing: -.045em;
    font-weight: 950;
}

.tf-hero h1 mark {
    color: transparent;
    background: linear-gradient(135deg, var(--tf-gold), #fff2ba, var(--tf-green));
    -webkit-background-clip: text;
    background-clip: text;
}

.tf-hero__content > p {
    max-width: 660px;
    margin: 0;
    color: #d4e2d9;
    font-size: 16px;
    line-height: 1.72;
}

.tf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 24px;
}

.tf-button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 950;
    transition: transform .2s ease, box-shadow .2s ease;
}

.tf-button:hover {
    transform: translateY(-2px);
}

.tf-button--primary {
    color: #07130e !important;
    background: linear-gradient(135deg, var(--tf-gold), var(--tf-green));
    box-shadow: 0 14px 34px rgba(34,197,94,.20);
}

.tf-button--ghost {
    color: #fff !important;
    border: 1px solid var(--tf-border);
    background: rgba(255,255,255,.08);
}

.tf-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tf-hero__meta span {
    padding: 8px 11px;
    border-radius: 999px;
    color: #e6f1ea;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
    font-weight: 850;
}

.tf-hero-panel {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid var(--tf-border);
    background:
        linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
        radial-gradient(circle at top right, rgba(248,201,90,.20), transparent 42%);
    box-shadow: var(--tf-shadow);
    backdrop-filter: blur(18px);
}

.tf-hero-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.tf-hero-panel__top span {
    color: var(--tf-gold);
    font-size: 12px;
    font-weight: 950;
}

.tf-hero-panel__top strong {
    color: #fff;
    font-size: 13px;
}

.tf-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin: 14px 0;
}

.tf-countdown div {
    min-height: 66px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.11);
}

.tf-countdown strong {
    color: #fff;
    font-size: 23px;
    line-height: 1;
    letter-spacing: -.04em;
}

.tf-countdown span {
    color: var(--tf-muted);
    font-size: 11px;
}

.tf-next-match {
    padding: 16px;
    border-radius: 18px;
    background: rgba(5,12,9,.74);
    border: 1px solid rgba(248,201,90,.20);
}

.tf-next-match > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--tf-gold);
    font-size: 12px;
    font-weight: 950;
}

.tf-next-match h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 23px;
    line-height: 1.24;
    letter-spacing: -.035em;
}

.tf-next-match p {
    margin: 0;
    color: #cddbd2;
    font-size: 14px;
    line-height: 1.7;
}

.tf-section {
    padding: 52px 0;
    background: #07130e;
}

.tf-section--dark {
    background:
        radial-gradient(circle at 15% 20%, rgba(34,197,94,.10), transparent 26%),
        linear-gradient(180deg, #05100b, #0a1a12);
}

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

.tf-eyebrow {
    margin: 0 0 7px;
    color: var(--tf-gold);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
}

.tf-section-head h2,
.tf-feature-copy h2,
.tf-panel h2,
.tf-final-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.14;
    letter-spacing: -.045em;
}

.tf-section-head p,
.tf-feature-copy p {
    max-width: 540px;
    margin: 0;
    color: var(--tf-muted);
    font-size: 14px;
    line-height: 1.68;
}

.tf-section-head > a {
    color: var(--tf-gold);
    font-size: 14px;
    font-weight: 950;
}

.tf-quick-grid,
.tf-match-grid,
.tf-team-grid,
.tf-post-grid,
.tf-academy-grid {
    display: grid;
    gap: 16px;
}

.tf-quick-grid,
.tf-match-grid,
.tf-team-grid,
.tf-academy-grid {
    grid-template-columns: repeat(4, 1fr);
}

.tf-post-grid {
    grid-template-columns: repeat(3, 1fr);
}

.tf-card,
.tf-match-card,
.tf-team-card,
.tf-post-card,
.tf-panel,
.tf-empty-card {
    border: 1px solid var(--tf-border);
    border-radius: 20px;
    background: rgba(255,255,255,.075);
    box-shadow: 0 16px 40px rgba(0,0,0,.20);
}

.tf-card,
.tf-match-card,
.tf-team-card,
.tf-panel,
.tf-empty-card {
    padding: 20px;
}

.tf-card em,
.tf-team-card em {
    color: var(--tf-gold);
    font-style: normal;
    font-size: 13px;
    font-weight: 950;
}

.tf-card strong,
.tf-match-card h3,
.tf-team-card h3,
.tf-post-card h3,
.tf-panel h2,
.tf-empty-card h3 {
    color: #fff;
}

.tf-card strong {
    display: block;
    margin: 13px 0 8px;
    font-size: 21px;
    line-height: 1.24;
    letter-spacing: -.035em;
}

.tf-card p,
.tf-match-card p,
.tf-team-card p,
.tf-post-card p,
.tf-panel p,
.tf-empty-card p {
    margin: 0;
    color: var(--tf-muted);
    font-size: 14px;
    line-height: 1.68;
}

.tf-card:hover,
.tf-match-card:hover,
.tf-team-card:hover,
.tf-post-card:hover {
    border-color: rgba(248,201,90,.38);
}

.tf-match-card__tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #a8f8c8;
    background: rgba(34,197,94,.14);
    font-size: 12px;
    font-weight: 950;
}

.tf-match-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.26;
    letter-spacing: -.035em;
}

.tf-match-card a,
.tf-team-card a,
.tf-panel a,
.tf-read-more {
    display: inline-flex;
    margin-top: 14px;
    color: var(--tf-gold);
    font-size: 14px;
    font-weight: 950;
}

.tf-team-card__flag,
.tf-team-card__avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 13px;
    color: #07130e;
    background: linear-gradient(135deg, var(--tf-gold), var(--tf-green));
    font-size: 19px;
    font-weight: 950;
}

.tf-team-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.24;
    letter-spacing: -.035em;
}

.tf-feature-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 24px;
    align-items: start;
}

.tf-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tf-hub-grid a {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--tf-border);
    background: rgba(255,255,255,.075);
}

.tf-hub-grid span {
    color: var(--tf-gold);
    font-size: 13px;
    font-weight: 950;
}

.tf-hub-grid strong {
    display: block;
    margin: 12px 0 8px;
    color: #fff;
    font-size: 21px;
    line-height: 1.24;
    letter-spacing: -.035em;
}

.tf-hub-grid p {
    margin: 0;
    color: var(--tf-muted);
    font-size: 14px;
    line-height: 1.68;
}

.tf-post-card {
    overflow: hidden;
}

.tf-post-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #10251a;
}

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

.tf-post-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #07130e;
    font-size: 30px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--tf-gold), var(--tf-green));
}

.tf-post-card__body {
    padding: 18px;
}

.tf-post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--tf-gold);
    font-size: 12px;
    font-weight: 900;
}

.tf-post-card h3 {
    margin: 11px 0 9px;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -.035em;
}

.tf-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.tf-panel {
    padding: 22px;
}

.tf-link-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.tf-link-list a {
    padding: 13px 15px;
    border-radius: 15px;
    color: #fff;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    font-size: 14px;
}

.tf-disclaimer-card {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(248,201,90,.26);
    background:
        radial-gradient(circle at top right, rgba(248,201,90,.16), transparent 36%),
        rgba(248,201,90,.075);
}

.tf-disclaimer-card h2 {
    margin: 0 0 10px;
    color: var(--tf-gold);
    font-size: 23px;
    letter-spacing: -.035em;
}

.tf-disclaimer-card p {
    margin: 0;
    color: #e5ecdf;
    font-size: 14px;
    line-height: 1.75;
}

.tf-final-cta {
    padding: 50px 0;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(34,197,94,.13), transparent 32%),
        linear-gradient(180deg, #07130e, #040a07);
}

.tf-final-cta p {
    max-width: 720px;
    margin: 14px auto 22px;
    color: var(--tf-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* =========================================================
   全站页脚 Footer
========================================================= */
.tf-footer {
    background: #030806;
    border-top: 1px solid rgba(255,255,255,.10);
}

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

.tf-footer__top {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 32px;
    padding: 34px 0 20px;
}

.tf-footer .tf-logo__image,
.tf-footer .tf-logo__mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
}

.tf-footer .tf-logo__text strong {
    font-size: 18px;
}

.tf-footer .tf-logo__text small {
    font-size: 12px;
}

.tf-footer__brand p {
    max-width: 420px;
    margin: 13px 0 0;
    color: var(--tf-muted);
    font-size: 13.5px;
    line-height: 1.65;
}

.tf-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tf-footer__links h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 15px;
}

.tf-footer__links a {
    display: block;
    margin: 7px 0;
    color: var(--tf-muted);
    font-size: 13px;
}

.tf-footer__links a:hover {
    color: var(--tf-gold);
}

.tf-footer__notice {
    padding: 13px 16px;
    border-radius: 16px;
    color: #d4dfd8;
    background: rgba(248,201,90,.08);
    border: 1px solid rgba(248,201,90,.22);
}

.tf-footer__notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
}

.tf-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 0 20px;
    color: var(--tf-muted);
    font-size: 13px;
}

.tf-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tf-footer-menu a {
    color: var(--tf-muted);
    font-size: 13px;
}

.tf-footer-menu a:hover {
    color: var(--tf-gold);
}

/* =========================================================
   响应式
========================================================= */
@media (max-width: 1080px) {
    .tf-hero__grid,
    .tf-feature-grid,
    .tf-two-col,
    .tf-footer__top {
        grid-template-columns: 1fr;
    }

    .tf-quick-grid,
    .tf-match-grid,
    .tf-team-grid,
    .tf-post-grid,
    .tf-academy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tf-footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .tf-header__inner {
        flex-wrap: wrap;
        min-height: 58px;
        padding: 8px 0;
    }

    .tf-nav-toggle {
        display: block;
    }

    .tf-nav,
    .tf-header-search {
        display: none;
        width: 100%;
    }

    body.tf-mobile-nav-open .tf-nav,
    body.tf-mobile-nav-open .tf-header-search {
        display: block;
    }

    .tf-nav__menu {
        display: grid;
        justify-content: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .tf-nav__menu a {
        display: block;
        padding: 12px 0;
    }
}

@media (max-width: 760px) {
    .tf-container,
    .tf-footer__top,
    .tf-footer__bottom,
    .tf-footer__notice {
        width: min(100%, calc(100% - 24px));
    }

    .tf-logo__image,
    .tf-logo__mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .tf-logo__text strong {
        font-size: 16px;
    }

    .tf-logo__text small {
        font-size: 11px;
    }

    .tf-hero {
        padding: 28px 0 42px;
    }

    .tf-hero h1 {
        font-size: 30px;
        line-height: 1.12;
    }

    .tf-hero__content > p {
        font-size: 14.5px;
    }

    .tf-countdown,
    .tf-quick-grid,
    .tf-match-grid,
    .tf-team-grid,
    .tf-post-grid,
    .tf-academy-grid,
    .tf-hub-grid,
    .tf-footer__links {
        grid-template-columns: 1fr;
    }

    .tf-section {
        padding: 40px 0;
    }

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

    .tf-footer__top {
        padding: 28px 0 18px;
    }
}

/**
 * 乐体育世界杯专题：全站紧凑版视觉补丁
 * 作用：
 * 1. 统一缩小 Hero 高度
 * 2. 统一缩小页面大标题
 * 3. 统一缩小 section 间距
 * 4. 统一压缩卡片、按钮、导航高度
 * 5. 覆盖首页、赛程、球队、小组、前瞻、学院、关于页面
 */

/* =========================
   1. 全局 Hero 压缩
========================= */

body .tf-wc-hero,
body .tf-s-hero,
body .lt-hero,
body .lg-hero,
body .lp-hero,
body .la-hero {
    min-height: auto !important;
    padding: 46px 0 72px !important;
}

body .tf-wc-hero::after,
body .tf-s-hero::after,
body .lt-hero::after,
body .lg-hero::after,
body .lp-hero::after,
body .la-hero::after {
    display: none !important;
}

body .tf-wc-hero::before,
body .tf-s-hero::before,
body .lt-hero::before,
body .lg-hero::before,
body .lp-hero::before,
body .la-hero::before {
    opacity: 0.08 !important;
}

body .tf-wc-hero-grid,
body .tf-s-hero-grid,
body .lt-hero-grid,
body .lg-hero-grid,
body .lp-hero-grid,
body .la-hero-grid {
    gap: 32px !important;
    align-items: center !important;
}

/* =========================
   2. Hero 大标题统一缩小
========================= */

body .tf-wc-hero-title,
body .tf-s-hero h1,
body .lt-hero h1,
body .lg-hero h1,
body .lp-hero h1,
body .la-hero h1 {
    max-width: 720px !important;
    margin: 18px 0 16px !important;
    font-size: clamp(32px, 4.6vw, 56px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.055em !important;
}

/* Hero 描述文字缩小 */
body .tf-wc-hero-desc,
body .tf-s-hero p,
body .lt-hero p,
body .lg-hero p,
body .lp-hero p,
body .la-hero p {
    max-width: 660px !important;
    font-size: 15.5px !important;
    line-height: 1.72 !important;
}

/* 顶部小标签缩小 */
body .tf-wc-kicker,
body .tf-s-kicker,
body .lt-kicker,
body .lg-kicker,
body .lp-kicker,
body .la-kicker {
    padding: 8px 13px !important;
    font-size: 12px !important;
}

/* Hero 按钮区域缩小 */
body .tf-wc-hero-actions,
body .tf-s-hero-actions,
body .lt-actions,
body .lg-actions,
body .lp-actions,
body .la-actions {
    gap: 11px !important;
    margin-top: 22px !important;
}

body .tf-wc-btn,
body .tf-s-btn,
body .lt-btn,
body .lg-btn,
body .lp-btn,
body .la-btn {
    min-height: 44px !important;
    padding: 0 19px !important;
    font-size: 14px !important;
}

/* =========================
   3. Hero 右侧卡片压缩
========================= */

body .tf-wc-hero-card,
body .tf-s-hero-card,
body .lt-hero-card,
body .lg-hero-card,
body .lp-hero-card,
body .la-hero-card {
    padding: 22px !important;
    border-radius: 26px !important;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28) !important;
}

body .tf-wc-hero-card-top,
body .tf-s-hero-card-top,
body .lt-hero-card-top,
body .lg-hero-card-top,
body .la-hero-card-top {
    margin-bottom: 15px !important;
}

body .tf-wc-hero-card-top span,
body .tf-s-hero-card-top span,
body .lt-hero-card-top span,
body .lg-hero-card-top span,
body .la-hero-card-top span {
    font-size: 11px !important;
}

body .tf-wc-hero-card-top strong,
body .tf-s-hero-card-top strong,
body .lt-hero-card-top strong,
body .lg-hero-card-top strong,
body .la-hero-card-top strong {
    font-size: 13px !important;
}

/* 统计卡片压缩 */
body .tf-s-stat,
body .lt-stat,
body .lg-stat,
body .la-stat {
    min-height: 88px !important;
    padding: 16px !important;
    border-radius: 18px !important;
}

body .tf-s-stat b,
body .lt-stat b,
body .lg-stat b,
body .la-stat b {
    font-size: 30px !important;
}

body .tf-s-stat small,
body .lt-stat small,
body .lg-stat small,
body .la-stat small {
    font-size: 12px !important;
}

/* 首页倒计时压缩 */
body .tf-wc-countdown div {
    min-height: 68px !important;
    padding: 9px 6px !important;
    border-radius: 16px !important;
}

body .tf-wc-countdown b {
    font-size: 23px !important;
}

body .tf-wc-countdown small {
    font-size: 11px !important;
}

/* 首页揭幕战卡片压缩 */
body .tf-wc-spotlight-match,
body .tf-s-next-card {
    margin-top: 14px !important;
    padding: 17px !important;
    border-radius: 20px !important;
}

body .tf-wc-team-pill {
    min-height: 58px !important;
    padding: 11px !important;
    border-radius: 16px !important;
}

body .tf-wc-team-pill strong {
    font-size: 15px !important;
}

body .tf-wc-team-pill i {
    width: 28px !important;
    height: 28px !important;
    border-radius: 10px !important;
}

/* =========================
   4. 导航条压缩
========================= */

body .tf-wc-nav-strip,
body .tf-s-nav-strip,
body .lt-nav-strip,
body .lg-nav-strip,
body .lp-nav-strip,
body .la-nav-strip {
    margin-top: -38px !important;
}

body .tf-wc-nav-inner,
body .tf-s-nav-inner,
body .lt-nav,
body .lg-nav,
body .lp-nav,
body .la-nav {
    gap: 8px !important;
    padding: 10px !important;
    border-radius: 22px !important;
}

body .tf-wc-nav-inner a,
body .tf-s-nav-inner a,
body .lt-nav a,
body .lg-nav a,
body .lp-nav a,
body .la-nav a {
    min-height: 43px !important;
    padding: 8px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
}

/* =========================
   5. Section 间距统一缩小
========================= */

body .tf-wc-section,
body .tf-s-section,
body .lt-section,
body .lg-section,
body .lp-section,
body .la-section {
    padding: 52px 0 !important;
}

body .tf-wc-section-head,
body .tf-s-section-head,
body .lt-section-head,
body .lg-section-head,
body .lp-section-head,
body .la-section-head {
    gap: 20px !important;
    margin-bottom: 22px !important;
}

/* Section 标题统一缩小 */
body .tf-wc-section-title,
body .tf-s-section-title,
body .lt-section-title,
body .lg-title,
body .lp-title,
body .la-title {
    font-size: clamp(24px, 3vw, 38px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.045em !important;
}

/* 小英文标题缩小 */
body .tf-wc-section-kicker,
body .tf-s-section-kicker,
body .lt-kicker-title,
body .lg-eyebrow,
body .lp-eyebrow,
body .la-eyebrow {
    margin-bottom: 7px !important;
    font-size: 12px !important;
}

/* Section 说明文字缩小 */
body .tf-wc-section-head p,
body .tf-s-section-head p,
body .lt-section-head p,
body .lg-section-head p,
body .lp-section-head p,
body .la-section-head p {
    font-size: 14px !important;
    line-height: 1.68 !important;
}

/* =========================
   6. 卡片统一压缩
========================= */

body .tf-wc-quick-card,
body .tf-wc-match-card,
body .tf-wc-group-card,
body .tf-wc-news-card,
body .tf-wc-editorial-card,
body .tf-wc-panel,
body .tf-s-info-card,
body .tf-s-match-card,
body .lt-team-card,
body .lt-hot-card,
body .lg-group-card,
body .lg-rule,
body .lp-post-card,
body .lp-fallback-card,
body .lp-guide-card,
body .la-lesson,
body .la-system-card,
body .la-contact-card,
body .la-principle-card,
body .la-intro-card,
body .la-panel {
    padding: 21px !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.20) !important;
}

/* 卡片标题缩小 */
body .tf-wc-quick-card strong,
body .tf-wc-match-teams strong,
body .tf-wc-group-card h3,
body .tf-wc-news-card h3,
body .tf-wc-editorial-card h3,
body .tf-wc-panel h2,
body .tf-s-info-card h3,
body .tf-s-match-card-teams strong,
body .lt-team-card h2,
body .lt-hot-card h3,
body .lg-group-head h2,
body .lg-rule h3,
body .lp-post-body h2,
body .lp-fallback-card h2,
body .lp-guide-card h3,
body .la-lesson h2,
body .la-system-card h3,
body .la-contact-card h3,
body .la-principle-card h3,
body .la-intro-card h2,
body .la-panel h2 {
    font-size: 21px !important;
    line-height: 1.22 !important;
    letter-spacing: -0.035em !important;
}

/* 卡片正文缩小 */
body .tf-wc-quick-card p,
body .tf-wc-match-desc,
body .tf-wc-news-card p,
body .tf-wc-editorial-card p,
body .tf-wc-panel p,
body .tf-s-info-card p,
body .lt-team-card p,
body .lt-hot-card p,
body .lg-rule p,
body .lg-note p,
body .lp-post-body p,
body .lp-fallback-card p,
body .lp-guide-card p,
body .la-lesson p,
body .la-system-card p,
body .la-contact-card p,
body .la-principle-card p,
body .la-intro-card p,
body .la-panel p {
    font-size: 14px !important;
    line-height: 1.68 !important;
}

/* =========================
   7. 表格 / 筛选区域压缩
========================= */

body .tf-s-filter-panel,
body .lt-filter-panel,
body .lg-filter {
    padding: 16px !important;
    border-radius: 22px !important;
    margin-bottom: 18px !important;
}

body .tf-s-search-input,
body .lt-search-input {
    min-height: 46px !important;
    font-size: 14px !important;
}

body .tf-s-search-reset,
body .lt-reset-btn {
    min-height: 46px !important;
    font-size: 14px !important;
}

body .tf-s-filter-btn,
body .lt-group-filter button,
body .lg-filter button {
    padding: 8px 13px !important;
    font-size: 13px !important;
}

body .tf-s-table th,
body .tf-s-table td {
    padding: 13px 14px !important;
    font-size: 13px !important;
}

/* =========================
   8. 声明 / CTA 区域压缩
========================= */

body .tf-wc-disclaimer,
body .tf-s-disclaimer,
body .lt-disclaimer,
body .lg-disclaimer,
body .lp-disclaimer,
body .la-warning,
body .la-disclaimer {
    padding: 26px !important;
    border-radius: 24px !important;
}

body .tf-wc-disclaimer h2,
body .tf-s-disclaimer h2,
body .lt-disclaimer h2,
body .lg-disclaimer h2,
body .lp-disclaimer h2,
body .la-warning h2,
body .la-disclaimer h2 {
    font-size: 24px !important;
    margin-bottom: 10px !important;
}

body .tf-wc-disclaimer p,
body .tf-s-disclaimer p,
body .lt-disclaimer p,
body .lg-disclaimer p,
body .lp-disclaimer p,
body .la-warning p,
body .la-disclaimer p {
    font-size: 14px !important;
    line-height: 1.75 !important;
}

body .tf-wc-final-cta,
body .la-final-cta {
    padding: 58px 0 !important;
}

body .tf-wc-final-cta h2,
body .la-final-cta h2 {
    font-size: clamp(26px, 3.4vw, 42px) !important;
    line-height: 1.12 !important;
}

body .tf-wc-final-cta p,
body .la-final-cta p {
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* =========================
   9. 移动端进一步压缩
========================= */

@media (max-width: 760px) {
    body .tf-wc-hero,
    body .tf-s-hero,
    body .lt-hero,
    body .lg-hero,
    body .lp-hero,
    body .la-hero {
        padding: 34px 0 58px !important;
    }

    body .tf-wc-hero-title,
    body .tf-s-hero h1,
    body .lt-hero h1,
    body .lg-hero h1,
    body .lp-hero h1,
    body .la-hero h1 {
        font-size: 31px !important;
        line-height: 1.08 !important;
        margin: 15px 0 13px !important;
    }

    body .tf-wc-hero-desc,
    body .tf-s-hero p,
    body .lt-hero p,
    body .lg-hero p,
    body .lp-hero p,
    body .la-hero p {
        font-size: 14.5px !important;
        line-height: 1.66 !important;
    }

    body .tf-wc-hero-card,
    body .tf-s-hero-card,
    body .lt-hero-card,
    body .lg-hero-card,
    body .lp-hero-card,
    body .la-hero-card {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    body .tf-wc-nav-strip,
    body .tf-s-nav-strip,
    body .lt-nav-strip,
    body .lg-nav-strip,
    body .lp-nav-strip,
    body .la-nav-strip {
        margin-top: -28px !important;
    }

    body .tf-wc-section,
    body .tf-s-section,
    body .lt-section,
    body .lg-section,
    body .lp-section,
    body .la-section {
        padding: 40px 0 !important;
    }

    body .tf-wc-section-title,
    body .tf-s-section-title,
    body .lt-section-title,
    body .lg-title,
    body .lp-title,
    body .la-title {
        font-size: 25px !important;
    }

    body .tf-wc-quick-card,
    body .tf-wc-match-card,
    body .tf-wc-group-card,
    body .tf-wc-news-card,
    body .tf-wc-editorial-card,
    body .tf-wc-panel,
    body .tf-s-info-card,
    body .tf-s-match-card,
    body .lt-team-card,
    body .lt-hot-card,
    body .lg-group-card,
    body .lg-rule,
    body .lp-post-card,
    body .lp-fallback-card,
    body .lp-guide-card,
    body .la-lesson,
    body .la-system-card,
    body .la-contact-card,
    body .la-principle-card,
    body .la-intro-card,
    body .la-panel {
        padding: 18px !important;
    }

    body .tf-wc-quick-card strong,
    body .tf-wc-match-teams strong,
    body .tf-wc-group-card h3,
    body .tf-wc-news-card h3,
    body .tf-wc-editorial-card h3,
    body .tf-wc-panel h2,
    body .tf-s-info-card h3,
    body .tf-s-match-card-teams strong,
    body .lt-team-card h2,
    body .lt-hot-card h3,
    body .lg-group-head h2,
    body .lg-rule h3,
    body .lp-post-body h2,
    body .lp-fallback-card h2,
    body .lp-guide-card h3,
    body .la-lesson h2,
    body .la-system-card h3,
    body .la-contact-card h3,
    body .la-principle-card h3,
    body .la-intro-card h2,
    body .la-panel h2 {
        font-size: 20px !important;
    }
}
/* =========================================================
   乐体育普通文章详情页 single.php 安全版样式
========================================================= */

.lt-single-page {
    background: #06110c;
    color: #f8faf8;
}

.lt-single-page a {
    color: inherit;
    text-decoration: none;
}

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

.lt-single-narrow {
    width: min(860px, calc(100% - 40px));
}

.lt-single-hero {
    padding: 42px 0 54px;
    background:
        radial-gradient(circle at 16% 16%, rgba(34, 197, 94, .18), transparent 28%),
        radial-gradient(circle at 84% 6%, rgba(248, 201, 90, .16), transparent 26%),
        linear-gradient(180deg, #06110c 0%, #07180f 55%, #06110c 100%);
}

.lt-single-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #a9baaf;
    font-size: 13px;
    font-weight: 750;
}

.lt-single-breadcrumb a {
    color: #dce8e0;
}

.lt-single-breadcrumb a:hover {
    color: #f8c95a;
}

.lt-single-kicker {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    color: #ffe7a3;
    background: rgba(248, 201, 90, .1);
    border: 1px solid rgba(248, 201, 90, .3);
    font-size: 12px;
    font-weight: 950;
}

.lt-single-hero h1 {
    max-width: 860px;
    margin: 18px 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
    letter-spacing: -0.045em;
    font-weight: 950;
}

.lt-single-desc {
    max-width: 820px;
    margin: 0;
    color: #c5d3ca;
    font-size: 15.5px;
    line-height: 1.75;
}

.lt-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.lt-single-meta span {
    padding: 8px 11px;
    border-radius: 999px;
    color: #dce8e0;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
    font-weight: 850;
}

.lt-single-body-section {
    padding: 44px 0;
    background: #07130e;
}

.lt-single-featured-image {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.lt-single-featured-image img {
    width: 100%;
    max-height: 440px;
    display: block;
    object-fit: cover;
}

.lt-single-content {
    padding: 34px;
    border-radius: 24px;
    color: #e6eee8;
    background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.052));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 16px 44px rgba(0,0,0,.20);
    font-size: 17px;
    line-height: 1.9;
}

.lt-single-content h2 {
    margin: 36px 0 16px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.26;
    letter-spacing: -0.035em;
}

.lt-single-content h3 {
    margin: 28px 0 13px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
}

.lt-single-content p {
    margin: 0 0 20px;
}

.lt-single-content a {
    color: #f8c95a;
    border-bottom: 1px solid rgba(248, 201, 90, .38);
}

.lt-single-content ul,
.lt-single-content ol {
    margin: 0 0 22px 22px;
    padding: 0;
}

.lt-single-content li {
    margin-bottom: 8px;
}

.lt-single-content table {
    width: 100%;
    margin: 26px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    font-size: 14px;
}

.lt-single-content th,
.lt-single-content td {
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.lt-single-content th {
    color: #f8c95a;
    background: rgba(0, 0, 0, .25);
}

.lt-single-content td {
    color: #dce8e0;
    background: rgba(255, 255, 255, .055);
}

.lt-single-content img {
    width: auto;
    max-width: min(100%, 760px);
    max-height: 520px;
    height: auto;
    display: block;
    margin: 26px auto;
    border-radius: 18px;
    object-fit: contain;
}

.lt-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 20px;
    color: #dce8e0;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
}

.lt-single-tags strong {
    color: #f8c95a;
}

.lt-single-tags a {
    color: #dce8e0;
    font-size: 13px;
}

.lt-single-nav-section {
    padding: 0 0 48px;
    background: #07130e;
}

.lt-single-prev-next {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.lt-single-prev,
.lt-single-next {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .14);
}

.lt-single-prev span,
.lt-single-next span {
    display: block;
    margin-bottom: 8px;
    color: #f8c95a;
    font-size: 12px;
    font-weight: 950;
}

.lt-single-prev a,
.lt-single-next a {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.lt-single-prev p,
.lt-single-next p {
    margin: 0;
    color: #a9baaf;
}

@media (max-width: 760px) {
    .lt-single-container,
    .lt-single-narrow {
        width: min(100%, calc(100% - 24px));
    }

    .lt-single-hero {
        padding: 32px 0 46px;
    }

    .lt-single-hero h1 {
        font-size: 30px;
    }

    .lt-single-content {
        padding: 22px;
        font-size: 16px;
        line-height: 1.82;
    }

    .lt-single-content h2 {
        font-size: 24px;
    }

    .lt-single-prev-next {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   乐体育普通文章详情页 single.php
========================================================= */

.lt-single-page {
    background: #06110c;
    color: #f8faf8;
}

.lt-single-page a {
    color: inherit;
    text-decoration: none;
}

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

.lt-single-narrow {
    width: min(860px, calc(100% - 40px));
}

.lt-single-hero {
    padding: 42px 0 54px;
    background:
        radial-gradient(circle at 16% 16%, rgba(34, 197, 94, .18), transparent 28%),
        radial-gradient(circle at 84% 6%, rgba(248, 201, 90, .16), transparent 26%),
        linear-gradient(180deg, #06110c 0%, #07180f 55%, #06110c 100%);
}

.lt-single-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #a9baaf;
    font-size: 13px;
    font-weight: 750;
}

.lt-single-breadcrumb a {
    color: #dce8e0;
}

.lt-single-breadcrumb a:hover {
    color: #f8c95a;
}

.lt-single-kicker {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    color: #ffe7a3;
    background: rgba(248, 201, 90, .1);
    border: 1px solid rgba(248, 201, 90, .3);
    font-size: 12px;
    font-weight: 950;
}

.lt-single-hero h1 {
    max-width: 860px;
    margin: 18px 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
    letter-spacing: -0.045em;
    font-weight: 950;
}

.lt-single-desc {
    max-width: 820px;
    margin: 0;
    color: #c5d3ca;
    font-size: 15.5px;
    line-height: 1.75;
}

.lt-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.lt-single-meta span {
    padding: 8px 11px;
    border-radius: 999px;
    color: #dce8e0;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
    font-weight: 850;
}

.lt-single-body-section {
    padding: 44px 0;
    background: #07130e;
}

.lt-single-featured-image {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.lt-single-featured-image img {
    width: 100%;
    max-height: 440px;
    display: block;
    object-fit: cover;
}

.lt-single-content {
    padding: 34px;
    border-radius: 24px;
    color: #e6eee8;
    background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.052));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 16px 44px rgba(0,0,0,.20);
    font-size: 17px;
    line-height: 1.9;
}

.lt-single-content h2 {
    margin: 36px 0 16px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.26;
    letter-spacing: -0.035em;
}

.lt-single-content h3 {
    margin: 28px 0 13px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
}

.lt-single-content p {
    margin: 0 0 20px;
}

.lt-single-content a {
    color: #f8c95a;
    border-bottom: 1px solid rgba(248, 201, 90, .38);
}

.lt-single-content ul,
.lt-single-content ol {
    margin: 0 0 22px 22px;
    padding: 0;
}

.lt-single-content li {
    margin-bottom: 8px;
}

.lt-single-content table {
    width: 100%;
    margin: 26px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    font-size: 14px;
}

.lt-single-content th,
.lt-single-content td {
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.lt-single-content th {
    color: #f8c95a;
    background: rgba(0, 0, 0, .25);
}

.lt-single-content td {
    color: #dce8e0;
    background: rgba(255, 255, 255, .055);
}

.lt-single-content img {
    width: auto;
    max-width: min(100%, 760px);
    max-height: 520px;
    height: auto;
    display: block;
    margin: 26px auto;
    border-radius: 18px;
    object-fit: contain;
}

.lt-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 20px;
    color: #dce8e0;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
}

.lt-single-tags strong {
    color: #f8c95a;
}

.lt-single-tags a {
    color: #dce8e0;
    font-size: 13px;
}

.lt-single-nav-section,
.lt-single-related-section,
.lt-single-guide-section {
    padding: 0 0 48px;
    background: #07130e;
}

.lt-single-prev-next {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.lt-single-prev,
.lt-single-next,
.lt-single-related-card,
.lt-single-empty,
.lt-single-guide-grid a {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .14);
}

.lt-single-prev span,
.lt-single-next span,
.lt-single-related-card span,
.lt-single-guide-grid span {
    display: block;
    margin-bottom: 8px;
    color: #f8c95a;
    font-size: 12px;
    font-weight: 950;
}

.lt-single-prev a,
.lt-single-next a {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.lt-single-prev p,
.lt-single-next p,
.lt-single-related-card p,
.lt-single-empty p,
.lt-single-guide-grid p {
    margin: 0;
    color: #a9baaf;
    font-size: 14px;
    line-height: 1.68;
}

.lt-single-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.lt-single-section-head span {
    color: #f8c95a;
    font-size: 12px;
    font-weight: 950;
}

.lt-single-section-head h2 {
    margin: 7px 0 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.lt-single-section-head p {
    max-width: 480px;
    margin: 0;
    color: #a9baaf;
    font-size: 14px;
    line-height: 1.68;
}

.lt-single-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lt-single-related-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.035em;
}

.lt-single-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lt-single-guide-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

@media (max-width: 960px) {
    .lt-single-related-grid,
    .lt-single-guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .lt-single-container,
    .lt-single-narrow {
        width: min(100%, calc(100% - 24px));
    }

    .lt-single-hero {
        padding: 32px 0 46px;
    }

    .lt-single-hero h1 {
        font-size: 30px;
    }

    .lt-single-content {
        padding: 22px;
        font-size: 16px;
        line-height: 1.82;
    }

    .lt-single-content h2 {
        font-size: 24px;
    }

    .lt-single-prev-next,
    .lt-single-related-grid,
    .lt-single-guide-grid {
        grid-template-columns: 1fr;
    }

    .lt-single-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   Emergency render guard: prevent giant logo/image when CSS cache fails
========================================================= */
.tf-logo__image,
.tf-logo__mark {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    flex: 0 0 42px !important;
    overflow: hidden !important;
}
.tf-logo__image img,
.tf-logo img,
.tf-header img {
    max-width: 42px !important;
    max-height: 42px !important;
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
}
.site-branding img,
.custom-logo {
    max-width: 42px !important;
    max-height: 42px !important;
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
}
