/**
 * 宠物派 · 饮食安全数据库 专用样式
 * 覆盖三个模板：archive-pet_food / single-pet_food / taxonomy-pet_food_category
 * 加载方式：在 functions.php 中 wp_enqueue_style('cwp-pet-food', ...) 注册
 */

/* ==========================================================================
   1. Topbar：隐藏搜索框（三个模板共用）
   ========================================================================== */
.site-header-center,
.mobile-search-trigger {
    display: none !important;
}

.site-header-left {
    flex: 1;
}

/* ==========================================================================
   2. 全局 Reset & 设计令牌
   ========================================================================== */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.pet-food-page {
    --fp: #fff;
    --fs: #f5f5f7;
    --t1: #1d1d1f;
    --t2: #86868b;
    --t3: #aeaeb2;
    --b2: rgba(0, 0, 0, .25);
    --b3: rgba(0, 0, 0, .1);
    --green: #248A3D;
    --yellow: #BF5700;
    --red: #D70015;
    --font: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;

    font-family: var(--font);
    color: var(--t1);
    max-width: none;
}

@media (prefers-color-scheme: dark) {
    .pet-food-page {
        --fp: #1c1c1e;
        --fs: #2c2c2e;
        --t1: #f5f5f7;
        --t2: #aeaeb2;
        --t3: #636366;
        --b2: rgba(255, 255, 255, .25);
        --b3: rgba(255, 255, 255, .1);
    }
}

@media (min-width: 1024px) {
    .tax-pet_food_category .cat-hero h1 {
        margin-bottom: 0;
    }
}

.single-pet_food .full-page {
    background: var(--bg-page) !important;
}

/* ==========================================================================
   3. 公共组件
   ========================================================================== */

/* 返回链接 */
.pf-back {
    font-size: 13px;
    color: var(--t3);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-bottom: 32px;
}

.pf-back:hover {
    color: var(--t1);
}

/* 危险等级徽标（分类页卡片 & 可复用） */
.pf-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
}

.pf-badge.is-green {
    background: rgba(36, 138, 61, .1);
    color: var(--green);
}

.pf-badge.is-yellow {
    background: rgba(191, 87, 0, .1);
    color: var(--yellow);
}

.pf-badge.is-red {
    background: rgba(215, 0, 21, .1);
    color: var(--red);
}

/* ==========================================================================
   4. 首页（archive-pet_food）
   ========================================================================== */

/* 首页 main：flex 容器，负责撑高和垂直居中 */
.pf-home-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    background: #fff;
}

/* 首页内容区：限制宽度，负责内容布局 */
.pf-wrap {
    width: 100%;
    max-width: 720px;
    padding: 48px 0 56px;
    font-family: var(--font);
    color: var(--t1);
}

/* 品牌区块 */
.brand-block {
    margin-bottom: 32px;
    text-align: center;
}

.brand-logo {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--t1);
    line-height: 1;
    margin-bottom: 20px;
    margin-top: 0;
}

.brand-sub {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    color: var(--t2);
    margin: 0;
}

/* Hero */
.hero {
    margin-bottom: 28px;
    text-align: center;
}

/* archive-pet_food：首页搜索模块（与首页 pf-promo 统一） */
.hero.pf-promo-banner {
    margin-bottom: 28px;
    text-align: center;
}

.hero.pf-promo-banner .pf-promo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    padding: 24px 0 22px;
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero.pf-promo-banner .pf-promo-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero.pf-promo-banner .pf-promo-title {
    margin: 0 0 10px;
    color: var(--t1);
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.hero.pf-promo-banner .pf-promo-desc {
    margin: 0 0 18px;
    color: var(--t2);
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: -0.01em;
}

.hero.pf-promo-banner .search-shell {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.hero.pf-promo-banner .pf-promo-form {
    width: 100%;
    margin: 0 auto;
}

.hero.pf-promo-banner .pf-promo-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    border: 1px solid rgba(45, 40, 56, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.hero.pf-promo-banner .pf-promo-search:focus-within {
    background: #fff;
    border-color: var(--theme-color, #5C3FC4);
    box-shadow: 0 0 0 3px rgba(76, 59, 113, 0.08);
}

.hero.pf-promo-banner .pf-promo-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--t3);
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23000' stroke-width='2' fill='none'/%3E%3Cpath d='M20 20L16.5 16.5' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23000' stroke-width='2' fill='none'/%3E%3Cpath d='M20 20L16.5 16.5' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.hero.pf-promo-banner .pf-promo-search input {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 18px 0 52px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--t1);
    outline: none;
    line-height: 1;
}

.hero.pf-promo-banner .pf-promo-search input::placeholder {
    color: var(--t3);
    opacity: 1;
}

/* 搜索建议下拉 */
.search-suggestions {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: var(--fp);
    border: .5px solid var(--b3);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    z-index: 20;
    text-align: left;
}

.suggestion-item {
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.suggestion-item:hover {
    background: var(--fs);
}

.suggestion-name {
    font-size: 14px;
    color: var(--t1);
}

.suggestion-alias {
    font-size: 12px;
    color: var(--t3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 48%;
}

/* 区块 */
.pf-wrap .section {
    margin-top: 38px;
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--t2);
    margin-bottom: 14px;
    margin-top: 0;
}

/* 标签组 */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 6px 16px;
    border: .5px solid var(--b3);
    border-radius: 999px;
    font-size: 14px;
    color: var(--t1);
    background: var(--fp);
    text-decoration: none;
    transition: border-color .15s ease;
}

.tag:hover {
    border-color: var(--b2);
}

/* 热门标签：只用淡色文字区分，不加重边框和背景 */
.tag.red-tag {
    color: #c0392b;
    background: #fff8f8;
    border-color: rgba(192, 57, 43, .15);
}

.tag.green-tag {
    color: #27742a;
    background: #f6fbf4;
    border-color: rgba(39, 116, 42, .15);
}

.tag .dot {
    display: none;
}

.tag.red-tag .dot {
    background: #D70015;
}

.tag.green-tag .dot {
    background: #248A3D;
}

.tag:not(.red-tag):not(.green-tag) .dot {
    background: #BF5700;
}

/* 分类浏览面板 */
.browse-panel {
    margin-top: 14px;
}

/* 未找到提示：去掉黄色背景，改用细边框 */
.not-found-msg {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: .5px solid var(--b3);
    background: var(--fp);
    color: var(--t2);
    font-size: 13px;
    line-height: 1.8;
}

/* ==========================================================================
   5. 详情页（single-pet_food）
   ========================================================================== */

.pf-single {
    background: var(--fp);
}

.pf-inner {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 32px 24px 72px;
}

/* 状态标识 */
.pf-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.pf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pf-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
}

/* 标题区 */
.pf-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.pf-conclusion {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: var(--t1);
    margin: 0;
}

.pf-aliases {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pf-alias {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--fs);
    color: var(--t2);
}

/* 犬/猫切换 */
.pf-toggle {
    display: flex;
    border: .5px solid var(--b2);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.pf-tab {
    flex: 1;
    padding: 11px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--t2);
    background: transparent;
    border: none;
    transition: all .15s;
}

.pf-tab.active {
    background: var(--theme-color);
    color: var(--fp);
}

/* 内容块 */
.pf-block {
    padding: 24px 0;
    border-top: .5px solid var(--b3);
}

.pf-block:first-of-type {
    margin-top: 28px;
}

.pf-block-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--t3);
    margin-bottom: 10px;
}

.pf-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--t2);
}

/* 症状盒 */
.pf-sym {
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 12px;
}

.pf-sym-label {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pf-sym-text {
    font-size: 13px;
    line-height: 1.65;
}

/* 处理步骤 */
.pf-steps {
    list-style: none;
    counter-reset: s;
    margin: 0;
    padding: 0;
}

.pf-steps li {
    counter-increment: s;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: .5px solid var(--b3);
    font-size: 14px;
    color: var(--t2);
    line-height: 1.7;
}

.pf-steps li:last-child {
    border-bottom: none;
}

.pf-steps li::before {
    content: counter(s);
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fs);
    color: var(--t2);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 相关食材 */
.pf-related {
    margin-top: 48px;
    padding-top: 24px;
    border-top: .5px solid var(--b3);
}

.pf-related-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--t3);
    margin-bottom: 12px;
}

.pf-related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-rtag {
    padding: 7px 14px;
    border: .5px solid var(--b2);
    border-radius: 999px;
    font-size: 13px;
    color: var(--t2);
    text-decoration: none;
}

.pf-rtag:hover {
    color: var(--t1);
}

/* ==========================================================================
   5b. Hero / 搜索框 / 分类导航（taxonomy-pet_food_category 新版，来源 category-baike.css）
   ========================================================================== */

.hero-container {
    padding: 0 0 30px;
    --t1: #1d1d1f;
    --t2: #86868b;
    --t3: #aeaeb2;
}

/* cat-hero：桌面端 flex 换行 + 词条统计行独占一行 */
.cat-hero {
    flex-wrap: wrap;
}

.desc-count {
    margin-top: 0;
}

.cat-hero-count {
    width: 100%;
    font-size: 12px !important;
    color: var(--text-muted);
    margin-top: 8px !important;
    line-height: 1.4;
}

.cat-hero-count strong {
    color: var(--theme-color);
}

@media (min-width: 1024px) {
    .cat-hero p {
        margin: 0;
        font-size: 14px;
    }

    .desc-count {
        margin-top: 38px;
    }
}

/* 搜索框行 */
.m-bar {
    display: flex;
    width: 100%;
    margin: 16px auto 0;
    padding: 0 16px;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .m-bar {
        max-width: var(--max);
        padding: 0 30px;
    }
}

/* 分类导航 chip */
.sys-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    z-index: 20;
    margin: 10px 0 0;
    padding: 8px 16px;
    gap: 8px;
    border-radius: var(--radius-xs, 0);
    background: #fff;
    scrollbar-width: none;
}

.sys-nav::-webkit-scrollbar {
    display: none;
}

.sys-nav a {
    display: inline-block;
    flex: 0 0 auto;
    height: 36px;
    line-height: 35px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--border-color, #e0e0e5);
    border-radius: 999px;
    text-align: center;
    white-space: nowrap;
    color: var(--t1);
    font-size: 14px;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
}

.sys-nav a:hover {
    background: color-mix(in srgb, var(--theme-color, #5C3FC4) 8%, transparent);
    border-color: color-mix(in srgb, var(--theme-color, #5C3FC4) 40%, transparent);
    color: var(--theme-color, #5C3FC4);
    text-decoration: none;
}

.sys-nav a.is-active {
    background: var(--theme-color, #5C3FC4);
    border-color: var(--theme-color, #5C3FC4);
    color: #fff;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .sys-nav {
        flex-wrap: wrap;
        overflow-x: visible;
        margin: 30px auto 0;
        max-width: var(--max);
        padding: 0 30px;
        gap: 6px;
    }
}

/* ==========================================================================
   6. 分类页（taxonomy-pet_food_category）
   ========================================================================== */

.pf-tax-inner {
    width: 100%;
    margin: 0 auto;
}

.pf-tax-back {
    font-size: 13px;
    color: var(--t3);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-bottom: 28px;
}

.pf-tax-back:hover {
    color: var(--t1);
}

.pf-tax-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.pf-tax-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--t2);
    margin-bottom: 6px;
}

.pf-tax-count {
    font-size: 13px;
    color: var(--t3);
    margin-bottom: 32px;
}

/* 分类导航 */
.pf-tax-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.pf-tax-nav a,
.pf-tax-nav span {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: .5px solid var(--b2);
    font-size: 13px;
    color: var(--t2);
    text-decoration: none;
}

.pf-tax-nav .is-current {
    background: var(--t1);
    color: var(--fp);
    border-color: var(--t1);
}

.pf-tax-nav a:hover {
    color: var(--t1);
}

/* 卡片网格 */
.pf-tax-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: .5px solid var(--b3);
    border-radius: 14px;
    overflow: hidden;
}

.pf-food-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--fp);
    padding: 30px;
    text-decoration: none;
    color: var(--t1);
    transition: background .12s;
    border-right: .5px solid var(--b3);
    border-bottom: .5px solid var(--b3);
}

.pf-food-card:hover {
    background: var(--fs);
}

.pf-food-card:nth-child(4n) {
    border-right: none;
}

.pf-food-card:nth-last-child(-n+4):nth-child(4n+1),
.pf-food-card:nth-last-child(-n+4):nth-child(4n+1)~.pf-food-card {
    border-bottom: none;
}

/* 卡片内容 */
.pf-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.pf-card-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.pf-card-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
}

.pf-card-badge.is-green {
    background: rgba(36, 138, 61, .1);
    color: var(--green);
}

.pf-card-badge.is-yellow {
    background: rgba(191, 87, 0, .1);
    color: var(--yellow);
}

.pf-card-badge.is-red {
    background: rgba(215, 0, 21, .1);
    color: var(--red);
}

.pf-card-summary {
    font-size: 13px;
    line-height: 1.7;
    color: var(--t2);
}

.pf-card-aliases {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.pf-card-alias {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    border: var(--fs) 1px solid;
    color: var(--t3);
}

/* 空状态 */
.pf-tax-empty {
    padding: 40px 0;
    color: var(--t3);
    font-size: 14px;
}

/* 分页 */
.pf-tax-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.pf-tax-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    border: .5px solid var(--b2);
    color: var(--t2);
    text-decoration: none;
    font-size: 13px;
}

.pf-tax-pagination .page-numbers.current {
    background: var(--t1);
    color: var(--fp);
    border-color: var(--t1);
}

/* ==========================================================================
   6b. 分类页新版：无图卡片（pf-card-noimg）+ 食材 grid
   ========================================================================== */

/* 覆盖 archive-page-wrap 里的 grid 默认列数：食材页用 3 列 */
.pf-food-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 0 0 40px;
}

@media (min-width: 1024px) {
    .pf-food-grid {
        padding: 24px 30px 40px;
        margin: 0 auto;
        max-width: var(--max);
    }
}

/* 无图卡片基础 */
.pf-card-noimg {
    position: relative;
    background: var(--fp);
    border: .5px solid var(--b3);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .15s, transform .15s;
}

.pf-card-noimg:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

/* 全卡片主链接（语义化方案，替代空 absolute 覆盖层）*/
.pf-card-noimg .pf-card-main-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.pf-card-noimg .card-body {
    position: relative;
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 头部：食材名 + 徽标 */
.pf-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.pf-card-noimg .title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.pf-card-noimg .title a {
    color: var(--t1);
    text-decoration: none;
}

.pf-card-noimg .title a:hover {
    color: #5C3FC4;
}

.pf-card-noimg .desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--t2);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   7. 响应式
   ========================================================================== */

@media (max-width: 720px) {
    .pf-tax-inner {
        padding: 24px 18px 60px;
    }

    .pf-tax-title {
        font-size: 30px;
    }

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

    /* 新版食材 grid：移动端 2 列 */
    .pf-food-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    /* 重置 3 列规则，应用 2 列规则 */
    .pf-food-card:nth-child(3n) {
        border-right: .5px solid var(--b3);
    }

    .pf-food-card:nth-child(2n) {
        border-right: none;
    }

    .pf-food-card:nth-last-child(-n+3):nth-child(3n+1),
    .pf-food-card:nth-last-child(-n+3):nth-child(3n+1)~.pf-food-card {
        border-bottom: .5px solid var(--b3);
    }

    .pf-food-card:nth-last-child(-n+2):nth-child(2n+1),
    .pf-food-card:nth-last-child(-n+2):nth-child(2n+1)~.pf-food-card {
        border-bottom: none;
    }
}

@media (max-width: 640px) {
    .pf-wrap {
        padding: 32px 0 40px;
    }

    .brand-logo {
        font-size: 34px;
    }

    .pf-inner {
        padding: 24px 18px 60px;
    }

    .pf-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .pf-tax-grid {
        grid-template-columns: 1fr;
    }

    .pf-food-card {
        border-right: none;
    }

    .pf-food-card:nth-last-child(1) {
        border-bottom: none;
    }

    /* 新版食材 grid：手机单列 */
    .pf-food-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (min-width: 768px) {
    .hero.pf-promo-banner .pf-promo-inner {
        padding: 34px 0 28px;
        border-radius: 0;
    }

    .hero.pf-promo-banner .pf-promo-desc {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .hero.pf-promo-banner .pf-promo-inner {
        padding: 42px 0 34px;
        border-radius: 0;
    }

    .hero.pf-promo-banner .pf-promo-title {
        font-size: clamp(42px, 4vw, 60px);
        line-height: 1.02;
    }

    .hero.pf-promo-banner .pf-promo-desc {
        font-size: 17px;
        line-height: 1.95;
    }
}

/* ==========================================================================
   8. A11y & GEO 辅助类
   ========================================================================== */

.pf-title-sub {
    font-size: 18px;
    font-weight: 500;
    color: var(--t2);
}

.sys-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: inherit;
    justify-content: inherit;
}

.sys-nav-list li {
    display: inline-flex;
}