* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--wh-ink);
    background:
        radial-gradient(circle at top right, rgba(31, 75, 153, 0.06), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #f6f1e8 46%, #f8f5ef 100%);
    font: 16px/1.75 "Aptos", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    text-rendering: optimizeLegibility;
}
::selection {
    background: rgba(31, 75, 153, 0.16);
    color: var(--wh-ink);
}
a {
    color: var(--wf-brand);
    text-decoration: none;
    transition: color 160ms ease, opacity 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
a:hover { text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.wh-shell { width: var(--wh-shell); margin: 0 auto; }
.wh-page-shell { padding: 36px 0 84px; }
body.wh-spacing-compact .wh-page-shell { padding: 28px 0 64px; }
body.wh-spacing-compact .wf-grid { gap: 22px; }
body.wh-spacing-compact .wf-panel,
body.wh-spacing-compact .wf-card,
body.wh-spacing-compact .wf-sidebar-card,
body.wh-spacing-compact .wf-product-summary,
body.wh-spacing-compact .wf-related { padding: 22px; }
body.wh-spacing-relaxed .wh-page-shell { padding: 48px 0 104px; }
body.wh-spacing-relaxed .wf-grid { gap: 34px; }
body.wh-spacing-relaxed .wf-panel,
body.wh-spacing-relaxed .wf-card,
body.wh-spacing-relaxed .wf-sidebar-card,
body.wh-spacing-relaxed .wf-product-summary,
body.wh-spacing-relaxed .wf-related { padding: 34px; }

.wf-panel,
.wf-card,
.wf-sidebar-card,
.wf-product-summary,
.wf-related,
.wf-faq-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--wf-radius);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.wf-panel,
.wf-card,
.wf-sidebar-card,
.wf-product-summary,
.wf-related { padding: 28px; }

.wf-grid { display: grid; gap: 28px; }
.wf-main-with-sidebar { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
.wf-main-with-left-sidebar { grid-template-columns: 320px minmax(0, 1fr); align-items: start; }
.wh-detail-grid .wf-sidebar-region,
.wh-listing-grid .wf-sidebar-region {
    position: static;
}

.wh-site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(251, 250, 247, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
body.wh-header-mode-scroll .wh-site-header {
    position: static;
    box-shadow: none;
}
.wh-site-header__band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 12px 0;
}
.wh-site-header__brand {
    display: grid;
    gap: 4px;
    color: var(--wh-ink);
    flex: 0 1 380px;
    min-width: 0;
}
.wh-site-header__brand:hover { opacity: 0.9; }
.wh-site-header__brand strong {
    font-family: "Aptos Display", "Aptos", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    font-size: 23px;
    line-height: 1.02;
    letter-spacing: -0.04em;
}
.wh-site-header__tagline {
    color: var(--wh-ink-soft);
    font-size: 12px;
    line-height: 1.45;
}
.wh-site-header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}
body.wh-header-style-compact .wh-site-header__band {
    min-height: 64px;
    padding: 10px 0;
}
body.wh-header-style-compact .wh-site-header__brand strong {
    font-size: 21px;
}
body.wh-header-style-compact .wf-main-nav a,
body.wh-header-style-compact .wf-main-nav span,
body.wh-header-style-compact .wf-site-footer-nav a,
body.wh-header-style-compact .wf-site-footer-nav span {
    min-height: 34px;
    padding: 0 12px;
}
body.wh-header-style-prominent .wh-site-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
body.wh-header-style-prominent .wh-site-header__band {
    min-height: 82px;
    padding: 18px 0;
}
body.wh-header-style-prominent .wh-site-header__brand strong {
    font-size: 26px;
}
body.wh-header-style-prominent .wf-main-nav > ul {
    gap: 10px;
}
body.wh-header-style-prominent .wf-main-nav a,
body.wh-header-style-prominent .wf-main-nav span {
    min-height: 40px;
    padding: 0 16px;
}

.wf-main-nav ul,
.wf-site-footer-nav ul,
.wf-sidebar-card ul,
.wf-related__list,
.wf-mobile-nav__panel ul,
.wh-home-coverage__list,
.wh-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wf-main-nav {
    display: flex;
    align-items: center;
}
.wf-main-nav > ul,
.wf-site-footer-nav > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
}
.wf-main-nav > ul {
    padding-bottom: 16px;
    margin-bottom: -16px;
}
.wf-main-nav > ul > li {
    position: relative;
}
.wf-main-nav > ul > li.has-children::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: calc(100% - 4px);
    height: 22px;
}
.wf-main-nav a,
.wf-main-nav span,
.wf-site-footer-nav a,
.wf-site-footer-nav span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.wf-main-nav a,
.wf-main-nav span {
    color: rgba(15, 23, 42, 0.78);
    border: 1px solid transparent;
}
.wf-main-nav li.has-children > a,
.wf-main-nav li.has-children > span {
    gap: 7px;
}
.wf-main-nav li.has-children > a::after,
.wf-main-nav li.has-children > span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.65;
}
.wf-main-nav li.is-current > a,
.wf-main-nav li.is-ancestor > a,
.wf-main-nav a:hover {
    background: rgba(31, 75, 153, 0.08);
    border-color: rgba(31, 75, 153, 0.12);
    color: var(--wf-brand);
}
.wf-site-footer-nav a,
.wf-site-footer-nav span {
    color: rgba(241, 245, 249, 0.86);
}
.wf-site-footer-nav a:hover,
.wf-site-footer-nav li.is-current > a,
.wf-site-footer-nav li.is-ancestor > a {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}
.wf-main-nav ul.is-submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 236px;
    padding: 10px;
    display: grid;
    gap: 4px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 40;
}
.wf-main-nav ul.is-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 18px;
}
.wf-main-nav ul.is-submenu li {
    min-width: 0;
}
.wf-main-nav ul.is-submenu a,
.wf-main-nav ul.is-submenu span {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    min-height: 0;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.35;
    color: var(--wh-ink);
    background: transparent;
}
.wf-main-nav ul.is-submenu li.is-current > a,
.wf-main-nav ul.is-submenu li.is-ancestor > a,
.wf-main-nav ul.is-submenu a:hover {
    background: rgba(31, 75, 153, 0.08);
    color: var(--wf-brand);
}
.wf-main-nav > ul > li:hover > ul.is-submenu,
.wf-main-nav > ul > li:focus-within > ul.is-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.wf-mobile-nav {
    display: none;
    position: relative;
    width: auto;
}
.wf-mobile-nav > summary {
    cursor: pointer;
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 42px;
    padding: 0 14px 0 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--wh-ink);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 14px;
    font-weight: 700;
}
.wf-mobile-nav > summary::after {
    content: "";
    width: 9px;
    height: 9px;
    margin-left: 2px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.68;
}
.wf-mobile-nav__toggle-icon {
    display: inline-grid;
    gap: 4px;
    width: 16px;
}
.wf-mobile-nav__toggle-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
.wf-mobile-nav__toggle-label {
    display: inline-flex;
    align-items: center;
}
.wf-mobile-nav[open] > summary::after {
    transform: translateY(2px) rotate(-135deg);
}
.wf-mobile-nav__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 45;
    width: min(420px, calc(100vw - 28px));
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--wh-shadow);
}
.wf-mobile-nav__list,
.wf-mobile-nav__sublist {
    display: grid;
    gap: 8px;
}
.wf-mobile-nav__list > li > a,
.wf-mobile-nav__list > li > .wf-mobile-nav__label {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(247, 244, 237, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.09);
    color: var(--wh-ink);
    font-weight: 700;
}
.wf-mobile-nav__list > li.is-current > a,
.wf-mobile-nav__list > li.is-ancestor > a {
    border-color: rgba(31, 75, 153, 0.18);
    background: rgba(31, 75, 153, 0.08);
    color: var(--wf-brand);
}
.wf-mobile-nav__branch {
    display: grid;
    gap: 8px;
}
.wf-mobile-nav__branch > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(247, 244, 237, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.09);
    color: var(--wh-ink);
    font-weight: 700;
}
.wf-mobile-nav__branch > summary::-webkit-details-marker {
    display: none;
}
.wf-mobile-nav__branch > summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.68;
}
.wf-mobile-nav__branch[open] > summary {
    border-color: rgba(31, 75, 153, 0.18);
    background: rgba(31, 75, 153, 0.08);
    color: var(--wf-brand);
}
.wf-mobile-nav__branch[open] > summary::after {
    transform: translateY(2px) rotate(-135deg);
}
.wf-mobile-nav__branch-body {
    display: grid;
    gap: 8px;
    margin-left: 10px;
    padding: 6px 0 0 14px;
    border-left: 2px solid rgba(31, 75, 153, 0.14);
}
.wf-mobile-nav__branch-link {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 2px 0 18px;
    color: var(--wf-brand);
    font-size: 14px;
    font-weight: 700;
    position: relative;
}
.wf-mobile-nav__branch-link::before {
    content: "";
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.72;
}
.wf-mobile-nav__sublist a,
.wf-mobile-nav__sublist .wf-mobile-nav__label {
    display: flex;
    min-height: 38px;
    align-items: center;
    padding: 0 2px;
    color: rgba(15, 23, 42, 0.88);
    font-size: 14px;
    font-weight: 600;
}
.wf-mobile-nav__sublist li.is-current > a,
.wf-mobile-nav__sublist li.is-ancestor > a {
    color: var(--wf-brand);
}

.wh-site-footer {
    margin-top: 84px;
    padding: 54px 0 58px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(13, 18, 32, 0.98));
    color: rgba(226, 232, 240, 0.82);
}
.wh-site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    gap: 36px;
    align-items: start;
}
.wh-site-footer__identity {
    display: grid;
    gap: 10px;
    align-content: start;
}
.wh-site-footer__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: rgba(226, 232, 240, 0.58);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.wh-site-footer__title {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: "Aptos Display", "Aptos", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    font-size: clamp(22px, 2.6vw, 29px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.wh-site-footer__copy {
    margin: 0;
    max-width: 54ch;
    color: rgba(226, 232, 240, 0.72);
    font-size: 15px;
    line-height: 1.82;
}
.wh-site-footer__nav-shell {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: rgba(255, 255, 255, 0.03);
}
.wh-site-footer .wf-site-footer-nav > ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
}
body.wh-footer-style-standard .wh-site-footer .wf-site-footer-nav a,
body.wh-footer-style-standard .wh-site-footer .wf-site-footer-nav span {
    width: 100%;
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
body.wh-footer-style-compact .wh-site-footer {
    margin-top: 64px;
    padding: 34px 0 38px;
}
body.wh-footer-style-compact .wh-site-footer__grid {
    gap: 22px;
}
body.wh-footer-style-compact .wh-site-footer__title {
    font-size: clamp(22px, 2.8vw, 28px);
}
body.wh-footer-style-compact .wh-site-footer__copy {
    font-size: 14px;
}
body.wh-footer-style-prominent .wh-site-footer {
    margin-top: 104px;
    padding: 66px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(31, 75, 153, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(10, 16, 30, 0.98), rgba(13, 18, 32, 1));
}
body.wh-footer-style-prominent .wh-site-footer__grid {
    gap: 42px;
}
body.wh-footer-style-prominent .wh-site-footer__title {
    font-size: clamp(25px, 3.2vw, 34px);
}
body.wh-footer-style-prominent .wh-site-footer__copy {
    font-size: 16px;
    max-width: 62ch;
}
body.wh-footer-style-prominent .wh-site-footer__nav-shell {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(226, 232, 240, 0.12);
}

.wh-hero {
    position: relative;
    display: grid;
    gap: 28px;
    margin-bottom: 32px;
    padding: clamp(30px, 4vw, 46px);
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(244, 240, 233, 0.94));
}
body.wh-route-home.wh-home-hero-style-compact .wh-hero {
    padding: clamp(24px, 3vw, 34px);
    gap: 22px;
}
body.wh-route-home.wh-home-hero-style-compact .wf-hero__copy h1 {
    font-size: clamp(31px, 3.6vw, 42px);
    max-width: 12ch;
}
body.wh-route-home.wh-home-hero-style-compact .wf-hero__copy p {
    font-size: 16px;
}
body.wh-route-home.wh-home-hero-style-prominent .wh-hero {
    padding: clamp(40px, 5vw, 58px);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 1), rgba(236, 242, 252, 0.98));
    box-shadow: 0 30px 72px rgba(15, 23, 42, 0.1);
}
body.wh-route-home.wh-home-hero-style-prominent .wf-hero__copy h1 {
    font-size: clamp(36px, 4.6vw, 54px);
    max-width: 10ch;
}
body.wh-route-home.wh-home-hero-style-prominent .wf-hero__copy p {
    font-size: 18px;
    max-width: 42ch;
}
.wh-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 34%;
    min-width: 220px;
    aspect-ratio: 1;
    transform: translate(20%, -16%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 75, 153, 0.12), rgba(31, 75, 153, 0));
    pointer-events: none;
}
.wh-hero::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 240px;
    height: 240px;
    transform: translate(-24%, 30%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 167, 111, 0.12), rgba(196, 167, 111, 0));
    pointer-events: none;
}
.wh-hero:not(.wf-hero--with-cover) .wf-hero__copy {
    max-width: 760px;
}
.wf-hero--with-cover {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
}
.wf-hero__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}
.wf-hero__copy h1,
.wf-content-header h1,
.wf-section-heading h2 {
    margin: 0;
    font-family: "Aptos Display", "Aptos", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    letter-spacing: -0.03em;
}
.wf-hero__copy h1 {
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.02;
    max-width: 11ch;
}
body.wh-route-home .wf-hero__copy h1 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.02;
}
.wf-hero__copy p {
    margin: 0;
    color: var(--wh-ink-soft);
    font-size: 17px;
    max-width: 40ch;
}
.wf-hero__media {
    position: relative;
    z-index: 1;
}
.wf-hero__media img {
    width: 100%;
    min-height: 320px;
    border-radius: calc(var(--wf-radius) + 4px);
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.wf-breadcrumbs,
.wf-meta,
.wf-content-meta,
.wh-home-actions,
.wh-home-actions__buttons,
.wh-capability-badges,
.wh-sibling-badges,
.wh-home-proof__list,
.wh-category-editorial__actions,
.wf-post-card__meta,
.wf-product-card__meta,
.wf-search-result-card__meta,
.wf-post-card__footer,
.wf-product-card__footer,
.wf-search-result-card__actions,
.wf-product-summary__actions,
.wf-empty-state__action,
.wh-404-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.wf-breadcrumbs {
    gap: 8px;
    color: var(--wh-ink-muted);
    font-size: 14px;
}
.wf-breadcrumbs .wf-sep { opacity: 0.45; }
.wf-meta,
.wf-content-meta {
    color: var(--wh-ink-muted);
    font-size: 14px;
}

.wf-content-header {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}
.wf-content-header h1 {
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.12;
    max-width: 18ch;
}
.wf-content-header__excerpt {
    margin: 0;
    color: var(--wh-ink-soft);
    font-size: 17px;
    max-width: 46ch;
}
.wf-content-header__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wf-content-body {
    display: grid;
    gap: 20px;
    max-width: 76ch;
    color: var(--wh-ink-soft);
    font-size: 17px;
    line-height: 1.9;
}
.wf-content-body > *:first-child { margin-top: 0; }
.wf-content-body > *:last-child { margin-bottom: 0; }
.wf-content-body h2,
.wf-content-body h3,
.wf-content-body h4,
.wf-content-body h5,
.wf-content-body h6 {
    color: var(--wh-ink);
    line-height: 1.24;
    margin: 1.32em 0 0.52em;
}
.wf-content-body h1 {
    color: var(--wh-ink);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin: 1.1em 0 0.5em;
}
.wf-content-body h2 {
    font-size: clamp(24px, 2.5vw, 30px);
    letter-spacing: -0.02em;
}
.wf-content-body h3 {
    font-size: clamp(20px, 2vw, 24px);
    letter-spacing: -0.01em;
}
.wf-content-body h4 { font-size: 18px; }
.wf-content-body h5 { font-size: 16px; }
.wf-content-body h6 {
    font-size: 15px;
    color: var(--wh-ink-soft);
}
.wf-content-body p,
.wf-content-body ul,
.wf-content-body ol,
.wf-content-body blockquote,
.wf-content-body table { margin: 0; }
.wf-content-body p {
    line-height: 1.9;
    text-wrap: pretty;
}
.wf-content-body ul,
.wf-content-body ol {
    padding-left: 1.2em;
    display: grid;
    gap: 12px;
}
.wf-content-body li {
    color: var(--wh-ink-soft);
    line-height: 1.82;
}
.wf-content-body .wm-share-shell {
    margin: 8px 0 0;
}
.wf-content-body .wm-share-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    list-style: none;
}
.wf-content-body .wm-share-list li {
    display: flex;
    padding-left: 0;
}
.wf-content-body .wm-share-list li::before {
    content: none;
}
.wf-content-body .wm-share-button {
    min-width: 44px;
}
.wf-content-body .wm-share-button:not(.is-icon-only) {
    min-width: 0;
}
.wf-content-body a {
    font-weight: 600;
    border-bottom: 1px solid rgba(31, 75, 153, 0.24);
}
.wf-content-body a:hover { border-color: rgba(31, 75, 153, 0.56); }
.wf-content-body blockquote {
    padding: 20px 24px;
    border-left: 4px solid rgba(31, 75, 153, 0.2);
    border-radius: 0 18px 18px 0;
    background: rgba(31, 75, 153, 0.04);
    color: var(--wh-ink);
    line-height: 1.82;
}
.wf-content-body table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 15px;
    line-height: 1.68;
}
.wf-content-body th,
.wf-content-body td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.wf-content-body .embedded-faq-block {
    display: grid;
    gap: 22px;
    margin: 42px 0 12px;
    padding: 28px;
    border-radius: calc(var(--wf-radius) + 4px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 233, 0.92));
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.06);
}
.wf-content-body > .embedded-faq-block:first-child {
    margin-top: 8px;
}
.wf-content-body .embedded-faq-header {
    display: grid;
    gap: 10px;
}
.wf-content-body .embedded-faq-eyebrow {
    margin: 0;
    color: var(--wh-ink-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.wf-content-body .embedded-faq-header h2,
.wf-content-body .embedded-faq-header h3 {
    margin: 0;
    color: var(--wh-ink);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}
.wf-content-body .embedded-faq-description {
    margin: 0;
    max-width: 56ch;
    color: var(--wh-ink-soft);
    font-size: 15px;
}
.wf-content-body .embedded-faq-list {
    display: grid;
    gap: 14px;
}
.wf-content-body .embedded-faq-item {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}
.wf-content-body .embedded-faq-question {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
}
.wf-content-body .embedded-faq-question::-webkit-details-marker {
    display: none;
}
.wf-content-body .embedded-faq-question::after {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.55;
    transition: transform 160ms ease, opacity 160ms ease;
}
.wf-content-body .embedded-faq-item[open] .embedded-faq-question::after {
    transform: rotate(-135deg);
    opacity: 0.85;
}
.wf-content-body .embedded-faq-question-text {
    color: var(--wh-ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}
.wf-content-body .embedded-faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}
.wf-content-body .embedded-faq-badge-question {
    background: rgba(31, 75, 153, 0.1);
    color: var(--wf-brand);
}
.wf-content-body .embedded-faq-badge-answer {
    background: rgba(148, 163, 184, 0.14);
    color: var(--wh-ink);
}
.wf-content-body .embedded-faq-answer-wrap {
    display: grid;
    gap: 12px;
    padding: 0 22px 22px 70px;
}
.wf-content-body .embedded-faq-meta {
    margin: 0;
    color: var(--wh-ink-muted);
    font-size: 13px;
}
.wf-content-body .embedded-faq-answer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.wf-content-body .embedded-faq-answer-body {
    display: grid;
    gap: 12px;
    color: var(--wh-ink-soft);
    font-size: 16px;
}
.wf-content-body .embedded-faq-answer-body > *:first-child {
    margin-top: 0;
}
.wf-content-body .embedded-faq-answer-body > *:last-child {
    margin-bottom: 0;
}
.wf-content-body .embedded-faq-answer-body p,
.wf-content-body .embedded-faq-answer-body ul,
.wf-content-body .embedded-faq-answer-body ol {
    margin: 0;
}
.wf-content-body .embedded-faq-answer-body ul,
.wf-content-body .embedded-faq-answer-body ol {
    padding-left: 1.2em;
}
.wf-content-body th {
    background: rgba(15, 23, 42, 0.03);
    color: var(--wh-ink);
}

.wf-cover-media { margin: 0 0 28px; }
.wf-cover-media img,
.wf-gallery-main img,
.wf-product-card__cover img,
.wf-post-card__cover img,
.wf-search-result-card__cover img {
    width: 100%;
    border-radius: calc(var(--wf-radius) - 6px);
    object-fit: cover;
}
.wf-cover-media--content img { max-height: 540px; }

.wf-cards { display: grid; gap: 20px; }
.wh-card-grid,
.wh-home-value-grid,
.wh-home-proof-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.wh-card-grid--products {
    grid-template-columns: repeat(var(--wh-product-grid-columns, 3), minmax(0, 1fr));
}
.wh-card-grid--posts {
    grid-template-columns: repeat(var(--wh-post-grid-columns, 3), minmax(0, 1fr));
}
.wf-post-card,
.wf-product-card,
.wf-search-result-card {
    display: grid;
    gap: 12px;
    height: 100%;
}
.wf-product-card {
    padding: 22px;
    grid-template-rows: auto auto auto auto 1fr auto;
}
body.wh-product-card-style-compact .wf-product-card {
    padding: 18px;
    gap: 10px;
}
body.wh-product-card-style-compact .wf-product-card__title,
body.wh-product-card-style-compact .wf-product-card__price {
    font-size: 18px;
}
body.wh-product-card-style-compact .wf-product-card__excerpt {
    font-size: 14px;
}
body.wh-product-card-style-compact .wf-product-card__cover img {
    aspect-ratio: 1 / 1;
    max-height: 184px;
}
body.wh-product-card-style-highlight .wf-product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96));
    border-color: rgba(31, 75, 153, 0.14);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
body.wh-product-card-style-highlight .wf-product-card__cover img {
    max-height: 220px;
}
body.wh-product-card-style-highlight .wf-product-card__title {
    font-size: 24px;
}
body.wh-product-card-style-highlight .wf-product-card__price {
    font-size: 22px;
}
body.wh-product-card-style-highlight .wf-product-card__footer .wf-button--quiet {
    background: rgba(31, 75, 153, 0.08);
    color: var(--wf-brand);
    border-color: rgba(31, 75, 153, 0.14);
}
.wf-post-card,
.wf-product-card,
.wf-search-result-card,
.wh-home-proof {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.wf-post-card:hover,
.wf-product-card:hover,
.wf-search-result-card:hover,
.wh-home-proof:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(31, 75, 153, 0.12);
}
.wf-post-card__cover img,
.wf-product-card__cover img,
.wf-search-result-card__cover img {
    min-height: 0;
    background: linear-gradient(180deg, rgba(31, 75, 153, 0.08), rgba(31, 75, 153, 0.02));
}
.wf-post-card__cover,
.wf-product-card__cover {
    display: block;
}
.wf-post-card__cover--placeholder,
.wf-product-card__cover--placeholder {
    display: flex;
    align-items: flex-end;
    min-height: 168px;
    padding: 18px;
    border-radius: calc(var(--wf-radius) - 6px);
    background:
        linear-gradient(180deg, rgba(231, 238, 251, 0.9), rgba(247, 244, 237, 0.92));
    border: 1px solid rgba(31, 75, 153, 0.08);
}
.wf-post-card__cover--placeholder span,
.wf-product-card__cover--placeholder span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--wh-ink-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.wf-product-card__cover img {
    aspect-ratio: 4 / 3;
    max-height: 204px;
}
.wf-post-card__title,
.wf-product-card__title,
.wf-search-result-card__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.14;
    letter-spacing: -0.03em;
}
.wf-post-card__title a,
.wf-product-card__title a,
.wf-search-result-card__title a { color: var(--wh-ink); }
.wf-product-card__title,
.wf-product-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.wf-product-card__title { -webkit-line-clamp: 2; }
.wf-product-card__excerpt { -webkit-line-clamp: 3; }
.wf-post-card__title a:hover,
.wf-product-card__title a:hover,
.wf-search-result-card__title a:hover { color: var(--wf-brand); }
.wf-post-card__excerpt,
.wf-product-card__excerpt,
.wf-search-result-card__excerpt {
    margin: 0;
    color: var(--wh-ink-soft);
    font-size: 15px;
}
.wf-product-card__price {
    margin: 0;
    color: var(--wf-brand);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}
.wf-post-card__footer,
.wf-product-card__footer,
.wf-search-result-card__actions {
    margin-top: auto;
}
.wf-post-card__meta,
.wf-product-card__meta {
    gap: 8px;
}

.wf-section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}
.wf-section-heading h2 {
    font-size: clamp(25px, 2.6vw, 34px);
    line-height: 1.12;
    max-width: 14ch;
}
.wf-section-heading p {
    margin: 0;
    max-width: 60ch;
    color: var(--wh-ink-soft);
    font-size: 17px;
}

.wh-home-grid,
.wh-home-sections {
    display: grid;
    gap: 28px;
}
.wh-home-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 20px;
}
.wh-home-value-grid h3,
.wh-home-proof h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.wh-home-value-grid p,
.wh-home-proof p { margin: 0; color: var(--wh-ink-soft); }
.wh-home-proof {
    display: grid;
    gap: 16px;
}
.wh-home-proof__eyebrow {
    color: var(--wh-ink-muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.wh-home-proof__list {
    display: grid;
    gap: 10px;
}
.wh-home-proof__list li {
    position: relative;
    padding-left: 18px;
    color: var(--wh-ink-soft);
}
.wh-home-proof__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wf-brand);
}
.wh-home-coverage {
    display: grid;
    gap: 16px;
}
.wh-home-coverage__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.wh-home-entry-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.wh-home-entry-card {
    display: grid;
    gap: 14px;
    align-content: space-between;
    min-height: 168px;
    padding: 26px 24px;
    color: var(--wh-ink);
}
.wh-home-entry-card:hover {
    color: var(--wh-ink);
    transform: translateY(-2px);
}
.wh-home-entry-card strong {
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}
.wh-home-entry-card__action {
    display: inline-flex;
    align-items: center;
    color: var(--wf-brand);
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}
body.wh-home-entry-style-compact .wh-home-entry-grid {
    gap: 16px;
}
body.wh-home-entry-style-compact .wh-home-entry-card {
    min-height: 148px;
    padding: 20px 18px;
    gap: 12px;
}
body.wh-home-entry-style-compact .wh-home-entry-card strong {
    font-size: 22px;
}
body.wh-home-entry-style-compact .wh-home-entry-card__action {
    font-size: 13px;
}
body.wh-home-entry-style-highlight .wh-home-entry-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 242, 252, 0.96));
    border-color: rgba(31, 75, 153, 0.14);
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.09);
}
body.wh-home-entry-style-highlight .wh-home-entry-card strong {
    font-size: 30px;
}
body.wh-home-entry-style-highlight .wh-home-entry-card__action {
    color: #16386f;
}

.wf-sidebar-region {
    display: grid;
    gap: 22px;
    align-content: start;
}
.wf-sidebar-card h3 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.wf-sidebar-card__summary,
.wf-sidebar-card__trail {
    margin: 0 0 14px;
    color: var(--wh-ink-muted);
    font-size: 14px;
    line-height: 1.7;
}
.wf-sidebar-card ul { display: grid; gap: 12px; }
.wf-sidebar-card li { line-height: 1.7; }
.wf-sidebar-card ul ul {
    margin-top: 6px;
    padding-left: 18px;
    border-left: 2px solid rgba(31, 75, 153, 0.12);
}
.wf-sidebar-card a {
    color: var(--wh-ink);
}
.wf-sidebar-card a:hover {
    color: var(--wf-brand);
}
.wf-sidebar-card li.is-current > a,
.wf-sidebar-card li.is-ancestor > a {
    color: var(--wf-brand);
    font-weight: 700;
}
.wf-outline-card ol,
.wf-product-summary__outline ol {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}
.wf-outline-card li.is-level-3 { margin-left: 12px; font-size: 14px; }
.wf-embedded-media-summary p {
    margin: 0 0 12px;
    color: var(--wh-ink-soft);
}
.wf-embedded-media-summary ul { padding-left: 18px; }

.wh-detail-panel {
    display: grid;
    gap: 24px;
}
.wh-detail-panel__lead {
    display: grid;
    gap: 18px;
}
.wh-detail-body {
    display: grid;
    gap: 18px;
    padding: 28px 30px 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: calc(var(--wf-radius) + 2px);
    background:
        radial-gradient(circle at top right, rgba(31, 75, 153, 0.06), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 246, 241, 0.94));
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}
.wh-detail-body .wf-content-body,
.wh-detail-body .wf-faq-list {
    max-width: 78ch;
}
.wh-detail-body--faq .wf-faq-list {
    max-width: none;
}
.wh-detail-body--faq .wf-faq-list > h3 {
    display: none;
}
.wh-detail-body--faq .wf-faq-list .wf-empty-state {
    max-width: 64ch;
}
.wh-listing-grid > .wh-listing-panel {
    align-self: start;
}
.wh-listing-panel {
    display: grid;
    gap: 22px;
}
.wh-listing-panel__lead {
    display: grid;
    gap: 16px;
}
.wh-listing-panel__summary {
    color: var(--wh-ink-soft);
    font-size: 15px;
    line-height: 1.7;
}
.wh-listing-panel__summary p { margin: 0; }
.wh-listing-panel__editorial {
    display: grid;
    gap: 14px;
}
.wh-listing-panel__results {
    display: grid;
    gap: 18px;
}
.wh-listing-panel .wf-section-heading,
.wh-listing-panel .wf-pagination {
    margin: 0;
}
.wh-listing-panel--search .wf-search-result-card {
    padding: 22px;
}
.wh-card-grid--search {
    grid-template-columns: 1fr;
}
.wh-search-summary {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 75, 153, 0.08);
    color: var(--wf-brand);
    font-size: 14px;
    font-weight: 700;
}
.wh-product-detail-layout {
    grid-template-columns: minmax(0, 1fr);
}
.wh-product-detail-panel {
    gap: 28px;
}
.wh-detail-meta-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    align-items: stretch;
}
.wh-detail-meta-band--full { margin-top: 2px; }
.wh-detail-meta-band > * {
    height: 100%;
}
.wh-product-support-grid {
    display: grid;
    gap: 18px;
}
.wh-product-support-grid .wf-sidebar-region {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.wh-product-support-grid .wf-sidebar-card {
    height: 100%;
    padding: 26px;
    border-radius: calc(var(--wf-radius) - 2px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}
.wh-product-support-grid .wf-sidebar-card h3,
.wh-product-support-grid .wf-share-block h3,
.wh-product-support-grid .wf-related h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.wf-share-block,
.wf-product-specs,
.wf-related {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: calc(var(--wf-radius) - 6px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.94));
    padding: 24px;
}
.wf-share-block h3,
.wf-product-specs h3,
.wf-related h3 {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.28;
    letter-spacing: -0.01em;
}
.wf-share-block {
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}
.wf-share-block__summary {
    margin: 0 0 12px;
    color: var(--wh-ink-soft);
    font-size: 14px;
}
.wf-share-block__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.wf-share-block__list li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}
.wf-share-block__list strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wh-ink-muted);
    padding-top: 4px;
}
.wf-share-block__value {
    min-width: 0;
    color: var(--wh-ink-soft);
    overflow-wrap: anywhere;
}
.wf-share-block a.wf-share-block__value {
    color: var(--wf-brand);
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
}
.wf-related__list { display: grid; gap: 14px; }
.wf-related__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.wf-related__copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}
.wf-related__copy a {
    font-weight: 700;
    color: var(--wh-ink);
    line-height: 1.6;
}
.wf-related__copy a:hover {
    color: var(--wf-brand);
}

.wh-product-overview {
    grid-template-columns: minmax(0, minmax(360px, 1.08fr)) minmax(380px, 0.92fr);
    gap: 36px;
    align-items: start;
    margin-bottom: 4px;
}
.wf-product-detail-hero {
    display: grid;
    gap: 20px;
}
.wf-product-detail-section {
    display: grid;
    gap: 18px;
    padding-top: 6px;
}
.wf-product-detail-section--editorial {
    padding: 26px 28px 30px;
    border-radius: calc(var(--wf-radius) + 4px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at top right, rgba(31, 75, 153, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 244, 237, 0.94));
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.05);
}
.wf-product-detail-section--editorial .wf-content-body {
    max-width: 78ch;
}
.wf-product-detail-section--specs {
    padding: 24px 28px 28px;
    border-radius: calc(var(--wf-radius) + 2px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.94));
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
}
.wf-product-detail-section--specs .wf-product-specs {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.wf-product-detail-section--specs .wf-product-specs h3 {
    display: none;
}
.wf-product-detail-section__header {
    display: grid;
    gap: 8px;
    max-width: 68ch;
}
.wf-product-detail-section__header h2 {
    margin: 0;
    font-family: "Aptos Display", "Aptos", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}
.wf-product-detail-section__header p {
    margin: 0;
    color: var(--wh-ink-soft);
    font-size: 16px;
    max-width: 42ch;
}
.wf-product-gallery {
    display: grid;
    gap: 16px;
}
.wf-product-gallery__stage {
    position: relative;
    display: grid;
    border-radius: calc(var(--wf-radius) - 2px);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    max-height: min(620px, 42vw);
    background: linear-gradient(180deg, rgba(234, 239, 248, 0.92), rgba(247, 244, 237, 0.94));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}
.wf-product-gallery__chrome {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    z-index: 1;
    pointer-events: none;
}
.wf-product-gallery__eyebrow,
.wf-product-gallery__count {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
    color: var(--wh-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.wf-product-gallery__stage-button {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.wf-product-gallery__stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.82);
}
.wf-product-gallery.has-media .wf-product-gallery__stage img {
    padding: 22px;
}
.wf-product-gallery__empty {
    display: grid;
    gap: 8px;
    align-content: end;
    min-height: 0;
    height: 100%;
    padding: 28px;
    color: var(--wh-ink-soft);
    background:
        radial-gradient(circle at top right, rgba(31, 75, 153, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 233, 0.94));
}
.wf-product-gallery.is-empty .wf-product-gallery__stage {
    aspect-ratio: auto;
    min-height: 320px;
    max-height: 360px;
}
.wf-product-gallery__empty strong {
    color: var(--wh-ink);
    font-size: 26px;
    line-height: 1.06;
    letter-spacing: -0.04em;
}
.wf-product-gallery__empty span {
    max-width: 26ch;
    font-size: 15px;
}
.wf-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}
.wf-product-gallery__thumb {
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.wf-product-gallery__thumb:hover,
.wf-product-gallery__thumb:focus-visible,
.wf-product-gallery__thumb.is-active {
    border-color: rgba(31, 75, 153, 0.42);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(31, 75, 153, 0.14);
}
.wf-product-gallery__thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.92);
}
.wf-product-lightbox[hidden] {
    display: none;
}
.wf-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}
.wf-product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(10px);
    cursor: pointer;
}
.wf-product-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    width: min(1120px, calc(100vw - 48px));
    margin: 28px auto;
    padding: 24px 24px 20px;
    border-radius: calc(var(--wf-radius) + 6px);
    background: linear-gradient(180deg, rgba(18, 27, 43, 0.98), rgba(15, 23, 42, 0.96));
    color: rgba(248, 250, 252, 0.92);
    box-shadow: 0 30px 90px rgba(2, 8, 23, 0.4);
}
.wf-product-lightbox__close,
.wf-product-lightbox__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.48);
    color: #ffffff;
    cursor: pointer;
    z-index: 2;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.wf-product-lightbox__close:hover,
.wf-product-lightbox__nav:hover,
.wf-product-lightbox__close:focus-visible,
.wf-product-lightbox__nav:focus-visible {
    transform: translateY(-1px);
    background: rgba(31, 75, 153, 0.38);
    border-color: rgba(255, 255, 255, 0.28);
}
.wf-product-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 28px;
    line-height: 1;
}
.wf-product-lightbox__nav {
    position: absolute;
    top: 50%;
    margin-top: -23px;
    font-size: 32px;
    line-height: 1;
}
.wf-product-lightbox__nav[disabled] {
    opacity: 0.45;
    cursor: default;
}
.wf-product-lightbox__nav--prev {
    left: 20px;
}
.wf-product-lightbox__nav--next {
    right: 20px;
}
.wf-product-lightbox__viewport {
    overflow: hidden;
    border-radius: calc(var(--wf-radius) + 2px);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 30%),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.wf-product-lightbox__track {
    display: flex;
    transition: transform 220ms ease;
    will-change: transform;
}
.wf-product-lightbox__slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    gap: 12px;
    width: 100%;
    margin: 0;
    justify-items: center;
    align-content: center;
    text-align: center;
    min-height: min(72vh, 780px);
    padding: 56px 56px 28px;
}
.wf-product-lightbox__slide img {
    max-width: 100%;
    max-height: min(62vh, 680px);
    object-fit: contain;
}
.wf-product-lightbox__slide figcaption {
    color: rgba(226, 232, 240, 0.88);
    font-size: 14px;
}
.wf-product-lightbox__footer {
    display: grid;
    gap: 14px;
}
.wf-product-lightbox__counter {
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: 14px;
    text-align: center;
}
.wf-product-lightbox__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
    gap: 10px;
}
.wf-product-lightbox__thumb {
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}
.wf-product-lightbox__thumb.is-active,
.wf-product-lightbox__thumb:hover,
.wf-product-lightbox__thumb:focus-visible {
    border-color: rgba(147, 197, 253, 0.84);
    box-shadow: 0 10px 26px rgba(2, 8, 23, 0.24);
}
.wf-product-lightbox__thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
}
body.wf-product-lightbox-open {
    overflow: hidden;
}
.wf-product-summary {
    display: grid;
    gap: 12px;
    background: linear-gradient(180deg, rgba(235, 240, 249, 0.76), #ffffff);
}
.wf-product-summary--commerce {
    gap: 20px;
    padding: 32px 30px;
    border-radius: calc(var(--wf-radius) + 2px);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.09);
}
.wf-product-summary h3,
.wf-product-summary h4,
.wf-product-summary h1 { margin: 0; }
.wf-product-summary h1 {
    font-family: "Aptos Display", "Aptos", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}
.wf-product-summary__eyebrow {
    margin: 0;
    color: var(--wh-ink-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.wf-product-summary__category,
.wf-product-summary__price,
.wf-product-summary__excerpt { margin: 0; }
.wf-product-summary__intro,
.wf-product-summary__purchase {
    display: grid;
    gap: 12px;
}
.wf-product-summary__meta .wf-meta {
    gap: 8px;
    font-size: 13px;
}
.wf-product-summary__meta .wf-meta span,
.wf-product-summary__meta .wf-meta a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(15, 23, 42, 0.07);
}
.wf-product-summary__price {
    color: var(--wf-brand);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}
.wf-product-summary__excerpt {
    color: var(--wh-ink-soft);
    font-size: 16px;
    max-width: 38ch;
}
.wf-product-summary__surface {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.07);
}
.wf-product-summary__surface--purchase {
    gap: 16px;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(31, 75, 153, 0.08), transparent 36%),
        rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.wf-product-summary__surface-heading {
    color: var(--wh-ink);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.wf-product-summary__outline a {
    color: var(--wf-brand);
    font-weight: 700;
}
.wf-product-summary__specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.wf-product-summary__specs li {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(247, 244, 237, 0.68);
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.wf-product-summary__specs strong {
    color: var(--wh-ink);
    font-size: 13px;
}
.wf-product-summary__specs span {
    color: var(--wh-ink-soft);
    font-size: 15px;
}
.wf-gallery-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    margin-top: 14px;
}
.wf-gallery-grid img { min-height: 92px; }
.wf-specs { width: 100%; border-collapse: collapse; }
.wf-specs th,
.wf-specs td {
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    text-align: left;
}
.wf-specs th {
    color: var(--wh-ink);
    width: 32%;
}
.wf-specs td { color: var(--wh-ink-soft); }
.wf-product-specs .wf-specs tr:first-child th,
.wf-product-specs .wf-specs tr:first-child td {
    padding-top: 6px;
}
.wh-product-support-grid .wf-related__item {
    align-items: flex-start;
}
.wh-detail-meta-band .wf-related .wf-button,
.wh-detail-meta-band .wf-related .wf-button,
.wh-product-support-grid .wf-related .wf-button {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 13px;
}
.wf-product-summary__actions {
    gap: 12px;
    align-items: stretch;
}
.wf-product-summary__actions .wf-button--primary {
    min-width: 168px;
}
.wf-product-summary__actions .wf-button {
    min-height: 46px;
}
.wf-product-summary__code {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 14px 16px 0;
    color: var(--wh-ink-muted);
    font-size: 13px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.wf-product-summary__code strong {
    color: var(--wh-ink);
    font-weight: 700;
}

.wf-faq-list { display: grid; gap: 14px; }
.wf-faq-list h3 { margin: 0; font-size: 24px; line-height: 1.16; }
.wf-faq-card { padding: 0; overflow: hidden; }
.wf-faq-card summary {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 22px 24px;
    list-style: none;
}
.wf-faq-card__answer {
    padding: 0 24px 24px;
    color: var(--wh-ink-soft);
}
.wf-faq-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    border-radius: 999px;
    background: rgba(31, 75, 153, 0.1);
    color: var(--wf-brand);
    font-weight: 700;
}

.wf-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.wf-pagination a {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--wh-ink);
}
.wf-pagination a:hover { border-color: rgba(31, 75, 153, 0.24); color: var(--wf-brand); }
.wf-pagination a.is-current {
    background: var(--wf-brand);
    border-color: var(--wf-brand);
    color: #ffffff;
}

.wf-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--wh-ink);
    font-size: 12px;
    font-weight: 700;
}
.wf-badge--type { background: rgba(31, 75, 153, 0.1); color: var(--wf-brand); }
.wf-badge--category { background: rgba(127, 87, 36, 0.1); color: #8a5d23; }
.wf-badge--query { background: rgba(14, 116, 144, 0.12); color: #155e75; }
.wf-badge--faq { background: rgba(217, 119, 6, 0.14); color: #92400e; }
.wf-badge--info { background: rgba(15, 23, 42, 0.08); color: #475569; }

.wf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    font-size: 14px;
}
.wf-button:hover {
    text-decoration: none;
    transform: translateY(-1px);
}
.wf-button--primary {
    background: linear-gradient(135deg, var(--wf-brand), #16386f);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(31, 75, 153, 0.18);
}
.wf-button--secondary {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--wh-ink);
}
.wf-button--quiet {
    background: transparent;
    border-color: rgba(31, 75, 153, 0.16);
    color: var(--wf-brand);
    padding-inline: 14px;
}
.wf-button--quiet:hover {
    background: rgba(31, 75, 153, 0.06);
}
body.wh-button-style-soft .wf-button {
    min-height: 40px;
    border-radius: 18px;
}
body.wh-button-style-soft .wf-button--primary {
    background: rgba(31, 75, 153, 0.1);
    color: var(--wf-brand);
    border-color: rgba(31, 75, 153, 0.12);
    box-shadow: none;
}
body.wh-button-style-soft .wf-button--secondary {
    background: rgba(247, 244, 237, 0.84);
}
body.wh-button-style-soft .wf-button--quiet {
    border-color: rgba(31, 75, 153, 0.12);
    background: rgba(31, 75, 153, 0.04);
}
body.wh-button-style-strong .wf-button {
    min-height: 44px;
    padding-inline: 18px;
}
body.wh-button-style-strong .wf-button--primary {
    background: linear-gradient(135deg, #16386f, var(--wf-brand));
    box-shadow: 0 14px 28px rgba(31, 75, 153, 0.24);
}
body.wh-button-style-strong .wf-button--secondary {
    border-color: rgba(31, 75, 153, 0.18);
    color: #16386f;
}
body.wh-button-style-strong .wf-button--quiet {
    background: rgba(31, 75, 153, 0.08);
    border-color: rgba(31, 75, 153, 0.18);
}

.wh-product-support-grid .wf-related .wf-button {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 13px;
}

.wf-empty-state {
    display: grid;
    gap: 12px;
    text-align: left;
}
.wf-empty-state h3,
.wf-empty-state p { margin: 0; }

.wh-category-editorial {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}
.wh-highlight-list { display: grid; gap: 10px; }
.wh-highlight-list li {
    position: relative;
    padding-left: 18px;
    color: var(--wh-ink-soft);
}
.wh-highlight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wf-brand);
}
.wh-404-panel p { margin: 0 0 12px; color: var(--wh-ink-soft); }

@media (max-width: 1100px) {
    .wh-site-header__band {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        min-height: 60px;
        padding: 10px 0;
    }
    .wh-site-header__nav {
        position: relative;
        order: -1;
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    .wf-main-nav { display: none; }
    .wf-mobile-nav {
        display: block;
        width: auto;
    }
    .wh-site-header__brand {
        flex: 1 1 0;
    }
    .wh-site-header__brand strong {
        font-size: 21px;
    }
}

@media (max-width: 960px) {
    .wf-main-with-sidebar,
    .wf-main-with-left-sidebar,
    .wh-site-footer__grid,
    .wf-hero--with-cover,
    .wh-product-overview,
    .wh-home-intro-grid {
        grid-template-columns: 1fr;
    }
    .wh-detail-grid .wf-sidebar-region,
    .wh-listing-grid .wf-sidebar-region { position: static; }
    .wh-card-grid--products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wh-card-grid--posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wf-hero__copy h1,
    .wf-content-header h1,
    .wf-section-heading h2 { max-width: none; }
}

@media (max-width: 640px) {
    .wh-page-shell { padding-top: 28px; padding-bottom: 64px; }
    body.wh-spacing-compact .wh-page-shell {
        padding-top: 22px;
        padding-bottom: 52px;
    }
    body.wh-spacing-relaxed .wh-page-shell {
        padding-top: 34px;
        padding-bottom: 78px;
    }
    .wh-shell { width: min(calc(100vw - 28px), 100%); }
    .wh-site-header__band {
        gap: 10px;
        min-height: 54px;
        padding: 8px 0;
    }
    .wh-site-header__brand {
        gap: 1px;
    }
    .wh-site-header__brand strong {
        font-size: 19px;
        line-height: 1.04;
    }
    .wh-site-header__tagline {
        display: none;
    }
    .wf-panel,
    .wf-card,
    .wf-sidebar-card,
    .wf-product-summary,
    .wf-related { padding: 22px; }
    .wh-hero { padding: 24px; }
    .wf-hero__copy h1 { font-size: clamp(30px, 9vw, 38px); }
    .wf-content-header h1 {
        font-size: clamp(25px, 8vw, 32px);
        line-height: 1.16;
    }
    .wf-section-heading h2 {
        font-size: clamp(22px, 7vw, 28px);
        line-height: 1.16;
    }
    .wf-content-body {
        gap: 18px;
        font-size: 16px;
        line-height: 1.82;
    }
    .wf-content-body h1 {
        font-size: clamp(26px, 7.6vw, 32px);
        line-height: 1.16;
    }
    .wf-content-body h2 {
        font-size: clamp(22px, 6.6vw, 28px);
    }
    .wf-content-body h3 {
        font-size: clamp(19px, 5.6vw, 23px);
    }
    .wf-content-body h4 { font-size: 17px; }
    .wf-content-body h5 { font-size: 15px; }
    .wf-content-body h6 { font-size: 14px; }
    .wf-content-body p,
    .wf-content-body li {
        line-height: 1.82;
    }
    .wf-content-body blockquote {
        padding: 18px 18px 18px 20px;
    }
    .wf-content-body th,
    .wf-content-body td {
        padding: 12px 13px;
    }
    .wf-content-body .embedded-faq-block {
        gap: 18px;
        margin: 34px 0 10px;
        padding: 22px 18px;
    }
    .wf-content-body .embedded-faq-header h2,
    .wf-content-body .embedded-faq-header h3 {
        font-size: clamp(24px, 8vw, 30px);
    }
    .wf-content-body .embedded-faq-question {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 12px;
        padding: 18px 16px;
    }
    .wf-content-body .embedded-faq-question-text {
        font-size: 16px;
    }
    .wf-content-body .embedded-faq-badge {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .wf-content-body .embedded-faq-answer-wrap {
        gap: 10px;
        padding: 0 16px 18px;
    }
    .wf-content-body .embedded-faq-answer {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .wf-content-body .wm-share-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wf-content-body .wm-share-list li,
    .wf-content-body .wm-share-button.is-icon-only {
        width: 100%;
    }
    .wh-card-grid--products {
        grid-template-columns: 1fr;
    }
    .wh-card-grid--posts {
        grid-template-columns: 1fr;
    }
    .wh-detail-panel { gap: 18px; }
    .wh-detail-panel__lead { gap: 16px; }
    .wh-detail-body {
        padding: 22px 20px 24px;
        gap: 16px;
    }
    .wf-product-summary--commerce {
        padding: 24px 22px;
    }
    .wf-product-detail-section--editorial {
        padding: 22px 20px 24px;
    }
    .wf-product-summary h1 {
        font-size: clamp(28px, 8vw, 36px);
    }
    .wf-product-summary__price {
        font-size: 30px;
    }
    .wf-product-summary__specs {
        grid-template-columns: 1fr;
    }
    .wf-product-gallery__stage {
        aspect-ratio: 1 / 1;
        min-height: 340px;
        max-height: none;
    }
    .wf-product-gallery.has-media .wf-product-gallery__stage img {
        padding: 12px;
    }
    .wf-product-gallery.is-empty .wf-product-gallery__stage {
        min-height: 280px;
        max-height: none;
    }
    .wf-product-gallery__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .wf-product-gallery__chrome {
        top: 12px;
        left: 12px;
        right: 12px;
    }
    .wf-product-gallery__eyebrow,
    .wf-product-gallery__count {
        min-height: 28px;
        padding: 0 10px;
        font-size: 11px;
    }
    .wf-product-lightbox__dialog {
        width: min(calc(100vw - 24px), 100%);
        margin: 12px auto;
        padding: 16px 14px 14px;
    }
    .wf-product-lightbox__nav {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        font-size: 26px;
    }
    .wf-product-lightbox__nav--prev {
        left: 12px;
    }
    .wf-product-lightbox__nav--next {
        right: 12px;
    }
    .wf-product-lightbox__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
    .wf-product-lightbox__slide {
        min-height: min(66vh, 520px);
        padding: 50px 12px 18px;
    }
    .wf-product-lightbox__slide img {
        max-height: min(52vh, 420px);
    }
    .wf-product-lightbox__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .wh-product-support-grid .wf-sidebar-region {
        grid-template-columns: 1fr;
    }
    .wh-product-support-grid .wf-sidebar-card,
    .wh-product-support-grid .wf-share-block,
    .wh-product-support-grid .wf-related {
        padding: 20px;
    }
    .wf-product-summary__surface {
        padding: 16px;
    }
    .wf-share-block__list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .wf-share-block__list strong { padding-top: 0; }
    .wh-detail-meta-band .wf-related__item,
    .wh-product-support-grid .wf-related__item {
        flex-direction: column;
        gap: 10px;
    }
    .wh-detail-meta-band .wf-related .wf-button,
    .wh-product-support-grid .wf-related .wf-button {
        width: auto;
        min-height: 34px;
    }
    .wf-post-card__cover--placeholder,
    .wf-product-card__cover--placeholder {
        min-height: 132px;
    }
    .wf-mobile-nav__panel {
        width: min(calc(100vw - 28px), 100%);
        padding: 14px;
        border-radius: 20px;
    }
    .wh-site-footer {
        margin-top: 64px;
        padding: 36px 0 40px;
    }
    body.wh-footer-style-compact .wh-site-footer {
        margin-top: 52px;
        padding: 28px 0 32px;
    }
    body.wh-footer-style-prominent .wh-site-footer {
        margin-top: 76px;
        padding: 48px 0 54px;
    }
    .wh-site-footer .wf-site-footer-nav > ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: stretch;
    }
    .wh-site-footer .wf-site-footer-nav a,
    .wh-site-footer .wf-site-footer-nav span {
        width: 100%;
        justify-content: flex-start;
        min-height: 38px;
        padding-inline: 10px;
        font-size: 13px;
    }
    .wh-home-entry-card {
        min-height: 0;
        padding: 22px 20px;
    }
    .wh-home-entry-card strong {
        font-size: 22px;
    }
    body.wh-home-entry-style-compact .wh-home-entry-card {
        padding: 18px 16px;
    }
    body.wh-home-entry-style-highlight .wh-home-entry-card {
        padding: 24px 20px;
    }
    body.wh-home-entry-style-highlight .wh-home-entry-card strong {
        font-size: 24px;
    }
    .wf-mobile-nav__list > li > a,
    .wf-mobile-nav__list > li > .wf-mobile-nav__label,
    .wf-mobile-nav__branch > summary {
        min-height: 42px;
        padding-inline: 12px;
    }
}
