/* Sanhui brand system: tokens + public chrome. Loaded after sanhui-frontend.css via filemtime. */

:root {
    --sh-navy: #071B31;
    --sh-navy-mid: #08213B;
    --sh-navy-soft: #0D2B4A;
    --sh-paper: #F7F4EE;
    --sh-white: #FFFdf8;
    --sh-ink: #102A43;
    --sh-muted: #64748B;
    --sh-gold: #d9b46d;
    --sh-gold-deep: #a67b32;
    --sh-logo-blue: #36a3ff;
    --sh-line: #e6dcc8;
    --sh-radius: 10px;
}

html body.sanhui-brand-page,
html body.sanhui-home-v2-page {
    background: var(--sh-paper);
    color: var(--sh-ink);
    overflow-x: hidden;
}

html body.sanhui-brand-page .site-header,
html body.sanhui-brand-page footer.site-footer:not(.sanhui-footer),
html body.sanhui-brand-page .mobile-menu-toggle {
    display: none;
}

html body.sanhui-brand-page .sanhui-container,
.sanhui-premium-home .sanhui-container {
    width: min(1180px, calc(100% - 32px));
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
}

html body.sanhui-brand-page .sanhui-btn,
.sanhui-premium-home .sanhui-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: var(--sh-radius);
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transform: none;
    filter: none;
}

html body.sanhui-brand-page .sanhui-btn::after,
.sanhui-premium-home .sanhui-btn::after {
    display: none;
}

html body.sanhui-brand-page .sanhui-btn-gold,
html body.sanhui-home-v2-page .sanhui-btn-gold,
html body.sanhui-home-v2-page .sh-cta .sanhui-btn,
.sanhui-premium-home .sanhui-btn-gold {
    color: var(--sh-navy);
    background: #d9b46d !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

html body.sanhui-brand-page .sanhui-btn-gold::after,
html body.sanhui-home-v2-page .sanhui-btn-gold::after,
html body.sanhui-home-v2-page .sh-cta .sanhui-btn::after,
.sanhui-premium-home .sanhui-btn-gold::after {
    display: none !important;
    box-shadow: none !important;
}

html body.sanhui-brand-page .sanhui-btn-gold:hover,
html body.sanhui-brand-page .sanhui-btn-gold:focus-visible,
html body.sanhui-home-v2-page .sanhui-btn-gold:hover,
html body.sanhui-home-v2-page .sanhui-btn-gold:focus-visible,
html body.sanhui-home-v2-page .sh-cta .sanhui-btn:hover,
.sanhui-premium-home .sanhui-btn-gold:hover,
.sanhui-premium-home .sanhui-btn-gold:focus-visible {
    color: var(--sh-navy);
    transform: none;
    box-shadow: none !important;
    filter: none !important;
    background: #e0be78 !important;
    background-image: none !important;
}

html body.sanhui-brand-page .sanhui-btn-ghost,
.sanhui-premium-home .sanhui-btn-ghost {
    color: #f4f8fc;
    border: 1px solid rgba(232, 242, 255, 0.55);
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
html body .sanhui-premium-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--sh-navy);
    border-bottom: 1px solid rgba(217, 180, 109, 0.22);
    box-shadow: none;
    backdrop-filter: none;
}

html body.sanhui-header-scrolled .sanhui-premium-header {
    background: var(--sh-navy-mid);
    box-shadow: none;
}

html body .sanhui-premium-header .sanhui-header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    height: 72px;
    gap: 20px;
    padding: 0;
}

html body .sanhui-premium-header .sanhui-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    width: auto;
}

html body .sanhui-premium-header .sanhui-brand img,
html body .sanhui-footer-brand img {
    width: 148px;
    max-height: 44px;
    height: auto;
    object-fit: contain;
    filter: none;
}

html body .sanhui-premium-header .sanhui-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 22px;
    min-width: 0;
}

html body .sanhui-premium-header .sanhui-nav a {
    position: relative;
    color: #e8f2ff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

html body .sanhui-premium-header .sanhui-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: var(--sh-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

html body .sanhui-premium-header .sanhui-nav a:hover,
html body .sanhui-premium-header .sanhui-nav a:focus-visible {
    color: #fff;
}

html body .sanhui-premium-header .sanhui-nav a[aria-current="page"] {
    color: var(--sh-gold);
}

html body .sanhui-premium-header .sanhui-nav a:hover::after,
html body .sanhui-premium-header .sanhui-nav a:focus-visible::after,
html body .sanhui-premium-header .sanhui-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

html body .sanhui-premium-header .sanhui-header-action {
    display: flex;
    align-items: center;
    gap: 14px;
}

html body .sanhui-premium-header .sanhui-phone-link,
html body .sanhui-premium-header .sanhui-phone-text {
    color: #e8f2ff;
    text-decoration: none;
}

html body .sanhui-premium-header .sanhui-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
}

html body .sanhui-premium-header .sanhui-hamburger span {
    display: block;
    width: 20px;
    height: 3px;
    margin: 2px 0;
    background: #fff;
    border-radius: 2px;
}

html body .sanhui-mobile-nav {
    background: rgba(7, 27, 49, 0.98);
}

html body .sanhui-mobile-nav-item {
    color: #e8f2ff;
    font-size: 16px;
}

html body .sanhui-mobile-nav-cta {
    color: var(--sh-navy);
}

/* Footer */
html body .sanhui-footer {
    color: #e8eef6;
    background: linear-gradient(180deg, var(--sh-navy) 0%, var(--sh-navy-mid) 100%);
    border-top: 1px solid rgba(217, 180, 109, 0.28);
    padding: 12px 0 20px;
}

html body.sanhui-home-v2-page .sanhui-footer {
    margin-top: 0;
    padding-top: 4px;
    padding-bottom: 16px;
    border-top: 0;
}

html body .sanhui-footer a,
html body .sanhui-footer p,
html body .sanhui-footer li,
html body .sanhui-footer h3,
html body .sanhui-footer span {
    color: #e8eef6;
    opacity: 1;
}

html body .sanhui-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 28px;
    align-items: start;
}

html body .sanhui-footer-brand p,
html body .sanhui-footer-company {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

html body .sanhui-footer-col h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

html body .sanhui-footer-links,
html body .sanhui-footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

html body .sanhui-footer-links a {
    display: inline-block;
    padding: 4px 0;
    color: #dde7f2;
    font-size: 14px;
    text-decoration: none;
    border: 0;
    background: none;
}

html body .sanhui-footer-links a:hover,
html body .sanhui-footer-links a:focus-visible {
    color: #fff;
}

html body .sanhui-footer-contact-list li {
    padding: 4px 0;
    font-size: 14px;
    line-height: 1.7;
}

html body .sanhui-copyright,
html body .sanhui-copyright p,
html body .sanhui-copyright span,
html body .sanhui-copyright .sanhui-icp-link,
html body .sanhui-icp-link {
    margin: 0;
    color: #f4f8fc !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    opacity: 1 !important;
}

html body .sanhui-copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 18px;
    margin-top: 14px !important;
    padding-top: 12px;
    padding-bottom: 0;
    border-top: 1px solid rgba(170, 190, 210, 0.18);
    text-align: center;
}

html body .sanhui-mobile-consult {
    display: none;
}

html body.sanhui-brand-page .sanhui-floating-consult,
html body.sanhui-home-v2-page .sanhui-floating-consult,
.sanhui-premium-home .sanhui-floating-consult {
    display: none !important;
}

/* Inner pages: light bands, keep navy heroes */
html body.sanhui-brand-page .sanhui-section-dark,
html body.sanhui-brand-page .sanhui-placeholder-section {
    background: var(--sh-paper);
    color: var(--sh-ink);
}

html body.sanhui-brand-page .sanhui-section-dark .sanhui-section-title h2,
html body.sanhui-brand-page .sanhui-placeholder-card h3,
html body.sanhui-brand-page .sanhui-about-capability-card h3,
html body.sanhui-brand-page .sanhui-about-why-card h3,
html body.sanhui-brand-page .sanhui-about-fit-card h3,
html body.sanhui-brand-page .sanhui-services-detail-card h3,
html body.sanhui-brand-page .sanhui-cases-detail-card h3,
html body.sanhui-brand-page .sanhui-contact-topic-card h3,
html body.sanhui-brand-page .sanhui-article-content h3,
html body.sanhui-brand-page .sanhui-teachers-card h3 {
    color: var(--sh-navy);
}

html body.sanhui-brand-page .sanhui-section-dark p,
html body.sanhui-brand-page .sanhui-placeholder-card p,
html body.sanhui-brand-page .sanhui-about-capability-card p,
html body.sanhui-brand-page .sanhui-services-detail-card p,
html body.sanhui-brand-page .sanhui-cases-detail-card p {
    color: var(--sh-ink);
}

html body.sanhui-brand-page .sanhui-about-hero,
html body.sanhui-brand-page .sanhui-services-hero,
html body.sanhui-brand-page .sanhui-cases-hero,
html body.sanhui-brand-page .sanhui-articles-hero,
html body.sanhui-brand-page .sanhui-contact-hero,
html body.sanhui-brand-page .sanhui-placeholder-hero,
html body.sanhui-brand-page .sanhui-teachers-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(217, 180, 109, 0.16), transparent 36%),
        linear-gradient(180deg, var(--sh-navy) 0%, var(--sh-navy-soft) 100%);
    color: #f4f7fb;
}

html body.sanhui-brand-page .sanhui-about-why,
html body.sanhui-brand-page .sanhui-about-method,
html body.sanhui-brand-page .sanhui-contact-prepare {
    background: #fffdf8;
}

html body.sanhui-brand-page .sanhui-about-why-card,
html body.sanhui-brand-page .sanhui-about-capability-card,
html body.sanhui-brand-page .sanhui-about-fit-card,
html body.sanhui-brand-page .sanhui-services-detail-card,
html body.sanhui-brand-page .sanhui-placeholder-card,
html body.sanhui-brand-page .sanhui-cases-detail-card,
html body.sanhui-brand-page .sanhui-contact-topic-card,
html body.sanhui-brand-page .sanhui-article-card {
    background: #fff;
    border: 1px solid var(--sh-line);
    color: var(--sh-ink);
}

html body.sanhui-brand-page .site-main,
html body.sanhui-brand-page .site-content {
    background: var(--sh-paper);
}

html body.sanhui-brand-page .entry-content,
html body.sanhui-brand-page .entry-header h1 {
    color: var(--sh-ink);
}

html body.sanhui-brand-page .sanhui-mobile-bar {
    display: none;
}

html body.sanhui-brand-page .sanhui-float-consult {
    display: none;
}

/* Teachers page */
.sh-teachers-page {
    background: var(--sh-paper);
    color: var(--sh-ink);
}

.sh-teachers-page .sh-teachers-hero {
    padding: 56px 0 40px;
    background:
        radial-gradient(circle at 12% 0%, rgba(217, 180, 109, 0.16), transparent 36%),
        linear-gradient(180deg, var(--sh-navy) 0%, var(--sh-navy-soft) 100%);
    color: #f4f7fb;
}

.sh-teachers-page .sh-teachers-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 5vw, 40px);
    color: #fff;
}

.sh-teachers-page .sh-teachers-hero p {
    max-width: 42em;
    margin: 0;
    color: #d5deea;
    font-size: 16px;
    line-height: 1.7;
}

.sh-kicker {
    margin: 0 0 12px;
    color: var(--sh-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.sh-cta {
    padding: 48px 0 64px;
    background: linear-gradient(180deg, var(--sh-navy-mid) 0%, var(--sh-navy) 100%);
    color: #f4f7fb;
}

.sh-cta__panel {
    display: grid;
    gap: 22px;
    padding: 28px 22px;
    border: 1px solid rgba(217, 180, 109, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.sh-cta h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(22px, 4vw, 32px);
}

.sh-cta p {
    margin: 0;
    color: #d5deea;
    font-size: 16px;
    line-height: 1.7;
}

.sh-teachers-group {
    padding: 48px 0;
}

.sh-teachers-group:nth-of-type(even) {
    background: #fffdf8;
}

.sh-teachers-group h2 {
    margin: 0 0 24px;
    color: var(--sh-navy);
    font-size: clamp(22px, 4vw, 28px);
}

.sh-mentor__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.sh-mentor-profile {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.sh-mentor-profile__copy .sh-mentor__desc {
    font-size: 16px;
    line-height: 1.8;
}

.sh-teachers-hero .sh-kicker a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 880px) {
    .sh-mentor-profile {
        grid-template-columns: minmax(0, 1fr);
    }
}

.sh-mentor {
    background: #fff;
    border: 1px solid var(--sh-line);
    border-radius: 12px;
    overflow: hidden;
}

.sh-mentor__photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--sh-navy-soft);
}

.sh-mentor__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.sanhui-home-v2 .sh-mentor__photo img[src*="hujiangwei"],
.sanhui-home-v2 .sh-mentor__photo img[src*="shenzijie"] {
    object-position: center 30%;
}

.sh-mentor__photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 28%;
    background: linear-gradient(180deg, rgba(7, 27, 49, 0) 0%, rgba(7, 27, 49, 0.35) 100%);
    pointer-events: none;
}

.sh-mentor__photo:not(.sh-mentor__photo--text) .sh-mentor__plate {
    display: none;
}

.sh-mentor__plate {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 14px 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.sh-mentor__photo--text {
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(180deg, var(--sh-navy-soft) 0%, var(--sh-navy) 100%);
}

.sh-mentor__photo--text .sh-mentor__plate {
    position: static;
    padding: 0;
    color: var(--sh-gold);
    font-size: 22px;
}

.sh-mentor__body {
    padding: 14px 16px 18px;
}

.sh-mentor__tag {
    display: inline-block;
    margin: 0 0 6px;
    color: var(--sh-gold-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.sh-mentor h3 {
    margin: 0 0 4px;
    color: var(--sh-navy);
    font-size: 20px;
    line-height: 1.35;
}

.sh-mentor__title {
    margin: 0 0 4px;
    color: var(--sh-gold-deep);
    font-weight: 700;
    font-size: 15px;
}

.sh-mentor__skill {
    margin: 0 0 8px;
    color: var(--sh-gold-deep);
    font-size: 13px;
}

.sh-mentor__desc,
.sh-mentor__body > p:last-child {
    margin: 0;
    color: var(--sh-ink);
    font-size: 15px;
    line-height: 1.65;
}

.sh-mentor__more {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    min-height: 44px;
    color: var(--sh-gold-deep);
    font-size: 14px;
    font-weight: 700;
}

.sh-mentor-profile__copy .sh-mentor__desc + .sh-mentor__desc {
    margin-top: 12px;
}

.sh-mentor-profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sh-mentor-share-hint {
    margin: 12px 0 0;
    color: var(--sh-gold-deep);
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .sh-teachers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .sh-teachers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sh-teachers-grid.is-core {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    html body.sanhui-brand-page,
    html body.sanhui-home-v2-page {
        padding-bottom: 0;
    }

    html body.sanhui-brand-page .sanhui-container,
    .sanhui-premium-home .sanhui-container {
        width: min(1180px, calc(100% - 24px));
    }

    html body .sanhui-premium-header .sanhui-header-inner {
        min-height: 66px;
        height: 66px;
        gap: 12px;
    }

    html body .sanhui-premium-header .sanhui-brand img {
        width: 142px;
        max-width: 150px;
        max-height: 40px;
    }

    html body .sanhui-premium-header .sanhui-nav,
    html body .sanhui-premium-header .sanhui-header-action {
        display: none;
    }

    html body .sanhui-premium-header .sanhui-hamburger {
        display: flex;
        flex: 0 0 44px;
    }

    html body .sanhui-mobile-nav {
        display: flex;
    }

    html body.sanhui-mobile-menu-open .sanhui-premium-header .sanhui-hamburger {
        visibility: hidden;
    }

    html body .sanhui-footer {
        padding: 20px 0 8px;
    }

    html body.sanhui-home-v2-page .sanhui-footer {
        padding-top: 4px;
        padding-bottom: 8px;
    }

    html body .sanhui-footer-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    html body .sanhui-footer-brand p:last-of-type {
        display: none;
    }

    html body .sanhui-footer-col h3 {
        margin: 0 0 8px;
    }

    html body .sanhui-footer-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        align-items: start;
    }

    html body .sanhui-footer-links li {
        min-height: 32px;
    }

    html body .sanhui-footer-links a {
        padding: 6px 0;
        line-height: 1.4;
    }

    html body .sanhui-footer-col:nth-child(3),
    html body .sanhui-footer-col:nth-child(4) {
        display: none;
    }

    html body .sanhui-copyright {
        display: grid;
        gap: 4px;
        justify-content: center;
        margin-top: 16px;
        padding-top: 12px;
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }

    html body .sanhui-copyright p:nth-child(2) {
        display: none;
    }

    html body .sanhui-copyright p,
    html body .sanhui-icp-link {
        color: #f4f8fc;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.6;
        opacity: 1;
    }

    html body .sanhui-mobile-consult {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        min-height: 64px;
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid rgba(217, 180, 109, 0.28);
        background: var(--sh-navy);
    }

    html body .sanhui-mobile-consult a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 8px;
    }

    html body .sanhui-mobile-consult a:first-child {
        color: #e8f2ff;
        border: 1px solid rgba(232, 242, 255, 0.35);
        background: rgba(255, 255, 255, 0.08);
    }

    html body .sanhui-mobile-consult a:last-child {
        color: var(--sh-navy);
        background: #d9b46d !important;
        background-image: none !important;
        box-shadow: none !important;
        filter: none !important;
        min-height: 48px;
        height: 48px;
    }

    html body.sanhui-brand-page h1,
    .sanhui-home-v2 .sh-hero__title {
        font-size: clamp(32px, 8.4vw, 38px);
        line-height: 1.22;
    }

    html body.sanhui-brand-page h2 {
        font-size: clamp(25px, 6.4vw, 30px);
        line-height: 1.3;
    }

    html body.sanhui-brand-page h3 {
        font-size: clamp(19px, 5vw, 22px);
        line-height: 1.35;
    }

    html body.sanhui-brand-page p,
    html body.sanhui-brand-page li {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (min-width: 881px) {
    html body .sanhui-premium-header .sanhui-hamburger,
    html body .sanhui-mobile-consult,
    html body .sanhui-floating-consult {
        display: none !important;
    }

    html body .sanhui-footer {
        padding-bottom: 20px;
    }

    html body .sanhui-premium-header .sanhui-btn-consult-pc {
        height: 48px;
        min-height: 48px;
        padding: 0 18px;
        box-shadow: none;
    }
}

/* Inner-page light-band contrast -- append 20260813 */
/* Homepage excluded via :not(.sanhui-home-v2-page). Do not edit sanhui-home-v2.css. */

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-frontend-routed-page {
    background: var(--sh-paper);
    color: #102A43;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-dont {
    background: #fffdf8;
    color: #102A43;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-section-dark .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-why .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-dont .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-placeholder-section .sanhui-section-title h2 {
    color: #102A43 !important;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method-step,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-position-card,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-dont-item,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare-item,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-trust-item,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-panel {
    background: #fff;
    border: 1px solid var(--sh-line);
    color: #102A43;
    box-shadow: none;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method-step h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-why-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-capability-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-fit-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-position-card li,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-dont-item,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-topic-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare-item h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-services-detail-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-placeholder-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-content h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-content h3 a,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-articles-empty h3 {
    color: #102A43;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method-step p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-why-card p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-capability-card p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-fit-card p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-position-text p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-topic-card p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare-item p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-info p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-services-detail-problem p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-services-detail-fit p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-services-detail-result p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-section p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-fit p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-placeholder-card p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-excerpt,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-articles-empty p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .entry-content,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .entry-header h1 {
    color: #334155;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-position-text strong,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-services-detail-problem strong,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-services-detail-fit strong,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-services-detail-result strong,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-section strong,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-fit strong,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-date,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-readmore,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-trust-item span,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-tag {
    color: #64748B;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-services-detail-num,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-num {
    color: rgba(16, 42, 67, 0.18);
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-pagination a,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-pagination span {
    color: #334155;
    background: #fff;
    border-color: var(--sh-line);
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-panel .sanhui-lead-form label,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-section-dark .sanhui-lead-form label {
    color: #102A43;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-panel .sanhui-lead-form input,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-panel .sanhui-lead-form textarea,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-section-dark .sanhui-lead-form input,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-section-dark .sanhui-lead-form textarea {
    color: #102A43;
    background: #fff;
    border: 1px solid var(--sh-line);
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-trust-item strong {
    color: #a67b32;
}

@media (max-width: 880px) {
    html body.sanhui-brand-page:not(.sanhui-home-v2-page) {
        background-color: var(--sh-paper);
    }
}

/* Inner-page visual -- append 20260813-visual */
/* Homepage excluded. Do not edit sanhui-home-v2.css. */

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-section-dark .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-why .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-dont .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare .sanhui-section-title h2,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-placeholder-section .sanhui-section-title h2 {
    color: #102A43 !important;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-card,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-card,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-topic-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--sh-line);
    color: #102A43;
    overflow: hidden;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-photo {
    display: block;
    height: 200px;
    overflow: hidden;
    background: #e8e2d6;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-thumb,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-header {
    height: 200px;
    overflow: hidden;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-thumb img,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-body {
    padding: 18px 20px 22px;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-card h3 a,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-topic-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare-item h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-content h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-content h3 a,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method-step h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-fit-card h3 {
    color: #102A43 !important;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-section p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-section strong,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-topic-card p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare-item p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-info p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-trust-item span,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-excerpt,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method-step p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-fit-card p {
    color: #475569 !important;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-tag,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-date,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-readmore {
    color: #475569 !important;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-thumb {
    height: 180px;
    overflow: hidden;
}

html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.sh-teachers-page .sh-teachers-grid,
.sh-teachers-page .sh-teachers-grid.is-core {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.sh-teachers-page .sh-mentor {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--sh-line);
}

.sh-teachers-page .sh-mentor__photo {
    aspect-ratio: 3 / 4;
    height: auto;
    max-height: none;
    flex: 0 0 auto;
    overflow: hidden;
}

.sh-teachers-page .sh-mentor__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.sh-teachers-page .sh-mentor__photo img[src*="hujiangwei"],
.sh-teachers-page .sh-mentor__photo img[src*="shenzijie"] {
    object-position: center 30%;
}

.sh-teachers-page .sh-mentor__body {
    flex: 1 1 auto;
    padding: 14px 16px 18px;
}

.sh-teachers-page .sh-mentor__photo--text {
    display: flex;
}

@media (min-width: 640px) {
    .sh-teachers-page .sh-teachers-grid,
    .sh-teachers-page .sh-teachers-grid.is-core {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .sh-teachers-page .sh-teachers-grid,
    .sh-teachers-page .sh-teachers-grid.is-core {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Inner-page visual -- tighten 20260813 */
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-section strong,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method-step h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-fit-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-topic-card h3,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare-item h3 {
    color: #102A43 !important;
}
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-cases-detail-section p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-method-step p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-about-fit-card p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-topic-card p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-prepare-item p,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-contact-form-trust-item span,
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-article-excerpt {
    color: #334155 !important;
}
html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
}
@media (max-width: 880px) {
    html body.sanhui-brand-page:not(.sanhui-home-v2-page) .sanhui-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* QA punch 20260813-1359: gold glow off, homepage mentor crop, CTA/footer tighten */
html body.sanhui-home-v2-page .sanhui-btn-gold,
html body.sanhui-home-v2-page .sh-cta .sanhui-btn,
html body.sanhui-home-v2-page .sanhui-premium-header .sanhui-btn,
html body .sanhui-mobile-consult a:last-child {
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
    background-image: none !important;
    background-color: #d9b46d !important;
}

html body.sanhui-home-v2-page .sanhui-btn-gold:hover,
html body.sanhui-home-v2-page .sh-cta .sanhui-btn:hover,
html body .sanhui-mobile-consult a:last-child:hover {
    box-shadow: none !important;
    filter: none !important;
    background-image: none !important;
}

.sanhui-home-v2 .sh-mentor__photo img {
    object-position: center 28%;
}
.sanhui-home-v2 .sh-mentor__photo img[src*="hujiangwei"],
.sanhui-home-v2 .sh-mentor__photo img[src*="shenzijie"] {
    object-position: center 30%;
}
.sanhui-home-v2 .sh-mentor__photo img[src*="chenshuo"],
.sanhui-home-v2 .sh-mentor__photo img[src*="xujinxiang"] {
    object-position: center top;
}

