/* ========================================
   Sub-page Common Styles
   ======================================== */

/* Sub-page Hero */
.subpage-hero {
    position: relative;
    padding: 180px 0 80px;
    background: var(--gradient-soft);
    overflow: hidden;
}

.subpage-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.subpage-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.subpage-hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -50px;
}

.subpage-hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 237, 224, 0.6) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.subpage-hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.subpage-hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Sub-page Section */
.subpage-section {
    padding: clamp(60px, 8vw, 100px) 0;
}

/* Service Detail */
.service-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-icon {
    width: 160px;
    height: 160px;
    color: var(--gold);
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.service-detail-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-detail-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-detail-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-detail-item {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service-detail-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-detail-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.service-detail-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Team Detail */
.team-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-detail-card {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.team-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-detail-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-detail-avatar svg {
    width: 80%;
    height: 80%;
    color: var(--gold);
}

.team-detail-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-detail-info .team-title {
    display: block;
    font-size: 14px;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.team-detail-info .team-specialty {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.team-detail-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Technology Detail */
.tech-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tech-detail-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.tech-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tech-detail-number {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.tech-detail-card h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.tech-detail-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tech-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-detail-tag {
    padding: 6px 16px;
    background: var(--sand);
    color: var(--gold-dark);
    font-size: 13px;
    border-radius: 50px;
}

/* News Detail */
.news-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-detail-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.news-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-detail-image {
    height: 200px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-detail-image svg {
    width: 60%;
    height: 60%;
    color: var(--gold);
    opacity: 0.3;
}

.news-detail-content {
    padding: 24px;
}

.news-detail-content .news-tag {
    margin-bottom: 12px;
}

.news-detail-content h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-detail-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-detail-content .news-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.news-detail-content .news-link:hover {
    color: var(--gold);
}

/* CTA Section */
.subpage-cta {
    background: var(--ivory);
    text-align: center;
    padding: 80px 0;
}

.subpage-cta-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.subpage-cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.subpage-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* News Detail Image Placeholders */
.news-placeholder-1 {
    background: linear-gradient(135deg, var(--sand) 0%, var(--ivory) 100%);
}

.news-placeholder-2 {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--sand) 100%);
}

.news-placeholder-3 {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
}

.news-placeholder-4 {
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
}

.news-placeholder-5 {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--sand-light) 100%);
}

.news-placeholder-6 {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--ivory) 100%);
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.pagination-btn:hover,
.pagination-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 165, 90, 0.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .team-detail-grid {
        grid-template-columns: 1fr;
    }

    .tech-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 140px 0 60px;
    }

    .subpage-hero-title {
        font-size: 28px;
    }

    .subpage-hero-desc {
        font-size: 15px;
    }

    .service-detail-items {
        grid-template-columns: 1fr;
    }

    .service-detail-content h2 {
        font-size: 24px;
    }

    .team-detail-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .team-detail-avatar {
        margin: 0 auto;
        width: 100px;
        height: 100px;
    }

    .news-detail-grid {
        grid-template-columns: 1fr;
    }

    .subpage-cta {
        padding: 60px 0;
    }

    .subpage-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .subpage-cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .tech-detail-card {
        padding: 28px;
    }

    .tech-detail-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .subpage-hero {
        padding: 120px 0 40px;
    }

    .service-detail-item {
        padding: 16px;
    }

    .team-detail-card {
        padding: 20px;
    }

    .news-detail-image {
        height: 160px;
    }
}

/* ========================================
   News Page - Redesigned
   ======================================== */
.news-page-section {
    background: var(--white);
}

/* Filter Bar */
.news-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.news-filter-btn {
    padding: 10px 28px;
    border: 1.5px solid var(--sand);
    border-radius: 50px;
    background: var(--white);
    color: var(--text-secondary);
    font-size: 14px;
    font-family: var(--font-cn);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.news-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.news-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Featured Article */
.news-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
    transition: all var(--transition-normal);
}

.news-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-featured-image {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.news-featured-image .news-card-img-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.news-featured-image .news-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.news-featured-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.news-featured-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* News Card Common */
.news-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.news-card-img-placeholder svg {
    width: 60%;
    height: 60%;
    color: var(--gold);
}

.news-card-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(197, 165, 90, 0.15);
    color: var(--gold-dark);
    font-size: 12px;
    border-radius: 50px;
    font-weight: 500;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.news-card-date svg {
    color: var(--gold);
    opacity: 0.6;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.news-card-link svg {
    transition: transform var(--transition-fast);
}

.news-card-link:hover {
    color: var(--gold);
}

.news-card-link:hover svg {
    transform: translateX(4px);
}

/* About Mingming Chain Page */
.about-chain-hero {
    position: relative;
    padding: 170px 0 80px;
    background:
        radial-gradient(circle at 18% 18%, rgba(197, 165, 90, 0.16), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(92, 74, 58, 0.08), transparent 30%),
        linear-gradient(180deg, var(--ivory) 0%, var(--sand-light) 58%, var(--white) 100%);
    overflow: hidden;
}

.about-chain-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
}

.about-chain-glow-1 {
    width: 360px;
    height: 360px;
    top: 120px;
    left: -110px;
    background: rgba(197, 165, 90, 0.16);
}

.about-chain-glow-2 {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: 90px;
    background: rgba(255, 248, 240, 0.9);
}

.about-page .nav-toggle {
    align-items: center;
    justify-content: center;
}

.chain-title-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 44px;
}

.chain-title {
    font-size: clamp(38px, 7vw, 82px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--brown);
    margin: 12px 0 24px;
    letter-spacing: 0;
}

.chain-floating-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.chain-floating-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(197, 165, 90, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--brown);
    box-shadow: 0 12px 34px rgba(92, 74, 58, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 15px;
    font-weight: 500;
    animation: tagFloat 5.2s ease-in-out infinite;
}

.chain-floating-tags span:nth-child(2) {
    animation-delay: 0.5s;
}

.chain-floating-tags span:nth-child(3) {
    animation-delay: 1s;
}

.chain-map-card {
    position: relative;
    z-index: 2;
    padding: clamp(18px, 3vw, 36px);
    border: 1px solid rgba(197, 165, 90, 0.24);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 24px 70px rgba(92, 74, 58, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.china-block-map {
    width: min(100%, 980px);
    margin: 0 auto;
    display: block;
}

.province {
    fill: rgba(197, 165, 90, 0.18);
    stroke: var(--brown);
    stroke-width: 2;
    stroke-linejoin: round;
    opacity: 0.92;
    transition: fill var(--transition-normal), opacity var(--transition-normal), transform var(--transition-normal);
}

.province-highlight {
    fill: rgba(197, 165, 90, 0.82);
    opacity: 1;
}

.province:hover {
    fill: rgba(197, 165, 90, 0.52);
    transform: translateY(-2px);
}

.province-labels text {
    fill: rgba(92, 74, 58, 0.72);
    font-size: 18px;
    font-weight: 600;
    text-anchor: middle;
    pointer-events: none;
}

.city-dot circle {
    fill: var(--brown);
    stroke: var(--white);
    stroke-width: 3;
}

.city-dot text,
.taiyuan-marker text {
    fill: var(--brown);
    font-size: 20px;
    font-weight: 700;
    paint-order: stroke;
    stroke: rgba(255, 248, 240, 0.88);
    stroke-width: 5;
    stroke-linejoin: round;
}

.taiyuan-marker {
    animation: taiyuanFloat 3.2s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}

.taiyuan-ripple {
    fill: none;
    stroke: var(--gold);
    stroke-width: 3;
    opacity: 0.75;
    animation: rippleFlow 2.4s ease-out infinite;
}

.taiyuan-pin {
    fill: url(#pinGold);
    stroke: var(--brown);
    stroke-width: 3;
}

.taiyuan-pin-core {
    fill: var(--white);
    stroke: var(--brown);
    stroke-width: 2;
}

.about-intro-section {
    background: var(--white);
}

.about-intro-card {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 64px);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 248, 240, 0.92), rgba(255, 255, 255, 0.96)),
        var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 165, 90, 0.16);
}

.about-intro-card h2 {
    margin: 14px 0 24px;
    color: var(--brown);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 400;
}

.about-intro-card p {
    color: var(--text-secondary);
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 2.05;
}

.about-blessing {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 48% 46%, rgba(255, 230, 170, 0.42), transparent 24%),
        radial-gradient(circle at 22% 62%, rgba(197, 165, 90, 0.18), transparent 28%),
        radial-gradient(circle at 78% 36%, rgba(255, 248, 240, 0.92), transparent 34%),
        linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
}

.about-blessing-light {
    position: absolute;
    inset: 12% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.94), rgba(255, 248, 240, 0.28) 42%, transparent 70%);
    filter: blur(28px);
    opacity: 0.88;
}

.about-blessing p {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    color: var(--brown);
    font-size: clamp(30px, 5vw, 62px);
    font-weight: 300;
    line-height: 1.45;
    text-align: center;
    letter-spacing: 0;
}

@keyframes tagFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes taiyuanFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rippleFlow {
    0% {
        transform: scale(0.72);
        opacity: 0.78;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .about-page .nav-toggle {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 8px 26px rgba(92, 74, 58, 0.1);
    }

    .about-page .nav-toggle span {
        width: 20px;
    }

    .about-chain-hero {
        padding: 140px 0 70px;
    }

    .province-labels text {
        font-size: 16px;
    }

    .city-dot text,
    .taiyuan-marker text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .chain-floating-tags {
        gap: 10px;
    }

    .chain-floating-tags span {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }

    .chain-map-card {
        margin: 0 -8px;
        padding: 14px 10px;
    }

    .china-block-map {
        width: 100%;
        min-width: 0;
    }

    .about-intro-card {
        padding: 28px 22px;
    }

    .about-intro-card p {
        line-height: 1.9;
    }

    .about-blessing {
        min-height: 62vh;
    }
}

@media (max-width: 480px) {
    .about-chain-hero {
        padding: 120px 0 54px;
    }

    .chain-title {
        margin-bottom: 18px;
    }

    .chain-floating-tags {
        flex-direction: column;
        align-items: center;
    }

    .chain-floating-tags span {
        width: fit-content;
    }

    .about-blessing p {
        font-size: 30px;
    }
}

.about-refined-page > .about-chain-hero,
.about-refined-page > .about-intro-section {
    display: none;
}

.about-refined-page {
    background:
        radial-gradient(circle at 10% 18%, rgba(197, 165, 90, 0.08), transparent 26%),
        radial-gradient(circle at 92% 12%, rgba(92, 74, 58, 0.045), transparent 30%),
        linear-gradient(180deg, #fffdf9 0%, var(--ivory) 48%, #fffaf4 100%);
}

.about-profile-hero {
    position: relative;
    padding: 140px 0 24px;
    overflow: hidden;
}

.about-profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.about-profile-copy {
    max-width: 560px;
}

.about-heading {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
}

.about-heading-dot {
    width: 14px;
    height: 14px;
    border: 4px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(197, 165, 90, 0.08);
    flex: 0 0 auto;
}

.about-heading h1 {
    margin: 0;
    color: var(--brown);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: 0;
}

.about-heading-line {
    display: block;
    width: 54px;
    height: 2px;
    margin: 0 0 34px;
    background: linear-gradient(90deg, var(--gold), rgba(197, 165, 90, 0));
}

.about-profile-copy p {
    color: rgba(58, 48, 40, 0.78);
    font-size: 16px;
    line-height: 2.1;
    margin: 0;
}

.about-profile-visual {
    position: relative;
    margin: 0;
    width: min(100%, 520px);
    justify-self: end;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 26px 72px rgba(92, 74, 58, 0.09);
}

.about-profile-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 248, 240, 0.16));
    pointer-events: none;
}

.about-profile-visual img {
    width: 100%;
    aspect-ratio: 483 / 345;
    object-fit: cover;
}

.about-chain-section {
    position: relative;
    padding: 36px 0 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 44%, rgba(197, 165, 90, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(245, 237, 224, 0.62), rgba(255, 250, 244, 0.18) 72%, rgba(255, 255, 255, 0));
}

.about-chain-section::before,
.about-chain-section::after {
    content: '';
    position: absolute;
    left: -10%;
    width: 120%;
    height: 190px;
    pointer-events: none;
    filter: blur(32px);
    opacity: 0.46;
}

.about-chain-section::before {
    top: -120px;
    border-radius: 0 0 50% 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.44) 50%, rgba(255, 255, 255, 0) 76%);
}

.about-chain-section::after {
    bottom: -128px;
    border-radius: 50% 50% 0 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 78%);
}

.about-chain-section .container {
    position: relative;
    z-index: 1;
}

.about-chain-section .chain-title-wrap {
    margin-bottom: 8px;
}

.about-chain-section .chain-title {
    color: var(--brown);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.18;
    margin: 0;
}

.chain-title-line {
    display: block;
    width: 34px;
    height: 2px;
    margin: 18px auto 22px;
    background: var(--gold);
}

.about-chain-section .chain-floating-tags {
    gap: 24px;
    align-items: center;
}

.chain-tag-pill {
    gap: 12px;
}

.chain-tag-pill svg {
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chain-map-wrap {
    position: relative;
    width: min(780px, 100%);
    margin: -10px auto 0;
}

.chain-map-image {
    width: 100%;
    display: block;
    filter: drop-shadow(0 24px 42px rgba(92, 74, 58, 0.06));
}

.map-city-label {
    position: absolute;
    z-index: 2;
    color: var(--brown);
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    text-shadow:
        0 1px 0 rgba(255, 248, 240, 0.96),
        0 -1px 0 rgba(255, 248, 240, 0.96),
        1px 0 0 rgba(255, 248, 240, 0.96),
        -1px 0 0 rgba(255, 248, 240, 0.96),
        0 6px 16px rgba(92, 74, 58, 0.12);
    pointer-events: none;
}

.map-city-beijing {
    left: 67.8%;
    top: 38.9%;
}

.map-city-taiyuan {
    left: 59.2%;
    top: 54.1%;
}

.map-city-guiyang {
    left: 54.6%;
    top: 71.2%;
}

.map-city-kunming {
    left: 49.5%;
    top: 75.5%;
}

.map-city-shenzhen {
    left: 64.5%;
    top: 81.2%;
}

.about-refined-page .about-blessing {
    min-height: 280px;
    align-items: flex-start;
    padding: 48px 0 82px;
    background:
        radial-gradient(ellipse at 50% 42%, rgba(255, 232, 178, 0.26), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fffaf4 48%, var(--ivory) 100%);
}

.about-refined-page .about-blessing-light {
    inset: 8% 16%;
    filter: blur(34px);
    opacity: 0.7;
}

.about-refined-page .about-blessing p {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.75;
    margin-top: 8px;
}

.blessing-text .blessing-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
}

.blessing-text.animated .blessing-char {
    animation: blessingCharIn 0.42s ease forwards;
}

.blessing-text .blessing-char:nth-of-type(1) { animation-delay: 0s; }
.blessing-text .blessing-char:nth-of-type(2) { animation-delay: 0.06s; }
.blessing-text .blessing-char:nth-of-type(3) { animation-delay: 0.12s; }
.blessing-text .blessing-char:nth-of-type(4) { animation-delay: 0.18s; }
.blessing-text .blessing-char:nth-of-type(5) { animation-delay: 0.24s; }
.blessing-text .blessing-char:nth-of-type(6) { animation-delay: 0.3s; }
.blessing-text .blessing-char:nth-of-type(7) { animation-delay: 0.36s; }
.blessing-text .blessing-char:nth-of-type(8) { animation-delay: 0.42s; }
.blessing-text .blessing-char:nth-of-type(9) { animation-delay: 0.48s; }
.blessing-text .blessing-char:nth-of-type(10) { animation-delay: 0.54s; }
.blessing-text .blessing-char:nth-of-type(11) { animation-delay: 0.6s; }
.blessing-text .blessing-char:nth-of-type(12) { animation-delay: 0.66s; }
.blessing-text .blessing-char:nth-of-type(13) { animation-delay: 0.72s; }
.blessing-text .blessing-char:nth-of-type(14) { animation-delay: 0.78s; }
.blessing-text .blessing-char:nth-of-type(15) { animation-delay: 0.84s; }
.blessing-text .blessing-char:nth-of-type(16) { animation-delay: 0.9s; }
.blessing-text .blessing-char:nth-of-type(17) { animation-delay: 0.96s; }
.blessing-text .blessing-char:nth-of-type(18) { animation-delay: 1.02s; }
.blessing-text .blessing-char:nth-of-type(19) { animation-delay: 1.08s; }
.blessing-text .blessing-char:nth-of-type(20) { animation-delay: 1.14s; }
.blessing-text .blessing-char:nth-of-type(21) { animation-delay: 1.2s; }
.blessing-text .blessing-char:nth-of-type(22) { animation-delay: 1.26s; }
.blessing-text .blessing-char:nth-of-type(23) { animation-delay: 1.32s; }
.blessing-text .blessing-char:nth-of-type(24) { animation-delay: 1.38s; }
.blessing-text .blessing-char:nth-of-type(25) { animation-delay: 1.44s; }

@keyframes blessingCharIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .about-profile-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-profile-copy {
        max-width: 720px;
    }

    .about-profile-visual {
        max-width: 720px;
        width: 100%;
        justify-self: center;
    }

    .about-chain-section {
        padding-top: 56px;
    }

    .about-chain-section .chain-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-profile-hero {
        padding: 124px 0 54px;
    }

    .about-heading {
        gap: 16px;
    }

    .about-profile-copy p {
        font-size: 15px;
        line-height: 2;
    }

    .about-chain-section {
        padding: 52px 0 34px;
    }

    .about-chain-section .chain-floating-tags {
        gap: 12px;
    }

    .about-chain-section .chain-floating-tags span {
        min-height: 40px;
        font-size: 13px;
        padding: 0 16px;
    }

    .chain-map-wrap {
        width: min(100%, 620px);
        margin-top: 8px;
    }

    .map-city-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-profile-hero {
        padding-top: 116px;
    }

    .about-heading h1 {
        font-size: 32px;
    }

    .about-profile-visual {
        border-radius: 16px;
    }

    .about-chain-section .chain-title {
        font-size: 28px;
    }

    .about-chain-section .chain-floating-tags {
        flex-direction: column;
    }

    .about-chain-section .chain-floating-tags span {
        width: fit-content;
        max-width: 100%;
    }

    .about-refined-page .about-blessing p {
        font-size: 24px;
    }
}

/* News Page Grid */
.news-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-page-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.news-page-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-card-image .news-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.news-card-image .news-card-img-placeholder {
    transition: transform var(--transition-normal);
}

.news-page-card:hover .news-card-image .news-card-img-placeholder {
    transform: scale(1.05);
}

.news-card-body {
    padding: 24px;
}

.news-card-body h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* News Placeholders */
.news-placeholder-1 {
    background: linear-gradient(135deg, var(--sand) 0%, var(--ivory) 100%);
}

.news-placeholder-2 {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--sand) 100%);
}

.news-placeholder-3 {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
}

.news-placeholder-4 {
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
}

.news-placeholder-5 {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--sand-light) 100%);
}

.news-placeholder-6 {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--ivory) 100%);
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.pagination-btn:hover,
.pagination-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 165, 90, 0.05);
}

/* News Page Responsive */
@media (max-width: 1024px) {
    .news-featured-card {
        grid-template-columns: 1fr;
    }

    .news-featured-image {
        min-height: 240px;
    }

    .news-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-filter {
        gap: 8px;
        margin-bottom: 32px;
    }

    .news-filter-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .news-featured-body {
        padding: 24px;
    }

    .news-featured-title {
        font-size: 20px;
    }

    .news-page-grid {
        grid-template-columns: 1fr;
    }

    .news-card-image {
        height: 180px;
    }
}
