/* ===========================
   迅果首页 Hero
=========================== */

.hero{
    background:linear-gradient(135deg,#1677ff,#33b8ff);
    padding:90px 0;
    overflow:hidden;
}

.hero-wrapper{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.hero-left{
    flex:1;
    min-width:320px;
}

.hero-right{
    flex:1;
    min-width:380px;
}

.hero-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:14px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.hero h1{
    color:#fff;
    font-size:58px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:28px;
}

.hero-description{
    color:rgba(255,255,255,.95);
    font-size:18px;
    line-height:1.9;
    max-width:600px;
    margin-bottom:38px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-download{
    background:#fff;
    color:#1677ff;
    padding:15px 36px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.btn-download:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.btn-feature{
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
    padding:15px 36px;
    border-radius:10px;
    transition:.3s;
}

.btn-feature:hover{
    background:#fff;
    color:#1677ff;
}

/* 软件窗口 */
.software-window{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 35px 70px rgba(0,0,0,.22);
}

.window-top{
    height:46px;
    background:#eef3fb;
    display:flex;
    align-items:center;
    padding:0 18px;
    position:relative;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    margin-right:8px;
}

.red{
    background:#ff5f57;
}

.yellow{
    background:#febc2e;
}

.green{
    background:#28c840;
}

.window-title{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    font-size:14px;
    color:#666;
}

.software-window img{
    display:block;
    width:100%;
}

@media(max-width:980px){
    .hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .hero-description{
        margin:auto auto 35px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }
}
/*==============================
  六大功能
==============================*/

.feature-section{

    padding:90px 0;

    background:#f7fbff;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;

    color:#1677ff;

    font-size:15px;

    font-weight:600;

    margin-bottom:12px;

}

.section-title h2{

    font-size:42px;

    margin:0 0 18px;

    color:#222;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:1.8;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-item{

    background:#fff;

    padding:35px;

    border-radius:20px;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.feature-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(22,119,255,.15);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#eaf4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.feature-item h3{

    font-size:24px;

    margin-bottom:15px;

    color:#222;

}

.feature-item p{

    color:#666;

    line-height:1.8;

}

@media(max-width:960px){

.feature-grid{

grid-template-columns:1fr;

}

}
/*==============================
  软件界面展示
==============================*/

.screen-section{
    padding:90px 0;
    background:#fff;
}

.screen-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    margin-bottom:80px;
}

.screen-row:last-child{
    margin-bottom:0;
}

.screen-row.reverse{
    flex-direction:row-reverse;
}

/* 左侧图片 */
.screen-img{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* 软件截图 */
.screen-img img{
    width:100%;
    max-width:520px;          /* 控制图片最大宽度 */
    max-height:340px;         /* 控制图片高度 */
    object-fit:contain;
    padding:12px;
    background:#fff;
    border:1px solid #e9eef5;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:all .35s ease;
}

/* 鼠标经过 */
.screen-img img:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.18);
}

/* 右侧文字 */
.screen-text{
    flex:1;
}

.screen-text span{
    display:inline-block;
    font-size:52px;
    font-weight:800;
    color:#1677ff;
    opacity:.15;
    line-height:1;
    margin-bottom:15px;
}

.screen-text h3{
    font-size:30px;
    color:#222;
    margin-bottom:20px;
}

.screen-text p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/* 手机端 */
@media(max-width:992px){

    .screen-row,
    .screen-row.reverse{
        flex-direction:column;
        gap:40px;
        text-align:center;
    }

    .screen-img img{
        max-width:420px;
        max-height:280px;
    }

    .screen-text h3{
        font-size:26px;
    }

}
/*==============================
  为什么选择迅果
==============================*/

.why-section{
    padding:90px 0;
    background:#f7fbff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.why-item{
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    transition:all .35s ease;
}

.why-item:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 55px rgba(22,119,255,.16);
}

.why-item strong{
    display:block;
    font-size:34px;
    color:#1677ff;
    margin-bottom:10px;
    line-height:1.2;
}

.why-item span{
    display:block;
    font-size:16px;
    font-weight:700;
    color:#222;
    margin-bottom:14px;
}

.why-item p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:992px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:560px){
    .why-grid{
        grid-template-columns:1fr;
    }
}
/*==============================
  最新文章
==============================*/

.article-section{
    padding:90px 0;
    background:#fff;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.article-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.article-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 55px rgba(22,119,255,.15);
}

.article-img{
    display:block;
    height:210px;
    overflow:hidden;
    background:#eaf4ff;
}

.article-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:all .35s ease;
}

.article-card:hover .article-img img{
    transform:scale(1.06);
}

.article-content{
    padding:26px;
}

.article-date{
    font-size:13px;
    color:#1677ff;
    margin-bottom:12px;
    font-weight:600;
}

.article-content h3{
    font-size:21px;
    line-height:1.45;
    color:#222;
    margin:0 0 14px;
}

.article-content h3 a{
    color:#222;
}

.article-content h3 a:hover{
    color:#1677ff;
}

.article-content p{
    font-size:15px;
    line-height:1.8;
    color:#666;
    margin-bottom:22px;
}

.article-more{
    display:inline-block;
    color:#1677ff;
    font-weight:700;
}

.article-more:hover{
    color:#00a7ff;
}

.no-posts{
    grid-column:1 / -1;
    text-align:center;
    color:#777;
}

@media(max-width:992px){
    .article-grid{
        grid-template-columns:1fr;
    }

    .article-img{
        height:220px;
    }
}
/*==============================
  FAQ 常见问题
==============================*/

.faq-section{
    padding:90px 0;
    background:#f7fbff;
}

.faq-list{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    text-align:left;
}

.faq-question span{
    font-size:18px;
    color:#222;
    font-weight:700;
}

.faq-question b{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#eaf4ff;
    color:#1677ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.faq-answer{
    display:none;
    padding:0 28px 24px;
}

.faq-answer.active{
    display:block;
}

.faq-answer p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin:0;
}
/*==============================
  底部 CTA
==============================*/

.cta-section{
    padding:90px 0;
    background:#fff;
}

.cta-box{
    background:linear-gradient(135deg,#1677ff,#33b8ff);
    border-radius:28px;
    padding:70px 40px;
    text-align:center;
    color:#fff;
    box-shadow:0 25px 70px rgba(22,119,255,.25);
}

.cta-box span{
    display:inline-block;
    background:rgba(255,255,255,.18);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:18px;
}

.cta-box h2{
    font-size:42px;
    line-height:1.25;
    margin:0 0 20px;
}

.cta-box p{
    max-width:760px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.92);
    font-size:17px;
    line-height:1.9;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-btn-primary{
    background:#fff;
    color:#1677ff;
    padding:14px 36px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.cta-btn-secondary{
    border:2px solid rgba(255,255,255,.55);
    color:#fff;
    padding:14px 36px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.cta-btn-primary:hover,
.cta-btn-secondary:hover{
    transform:translateY(-3px);
}

.cta-btn-secondary:hover{
    background:#fff;
    color:#1677ff;
}

@media(max-width:768px){
    .cta-box{
        padding:50px 24px;
    }

    .cta-box h2{
        font-size:30px;
    }
}
/*=========================
 Header
=========================*/

.site-header{

    position:sticky;

    top:0;

    z-index:9999;

    background:#fff;

    border-bottom:1px solid #edf1f7;

    backdrop-filter:blur(20px);

}

.header-wrapper{

    height:78px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:26px;

    font-weight:700;

    color:#1677ff;

}

.logo img{

    width:44px;

    height:44px;

    object-fit:contain;

}

.main-nav{

    display:flex;

    gap:42px;

}

.main-nav a{

    color:#444;

    font-size:16px;

    transition:.3s;

}

.main-nav a:hover{

    color:#1677ff;

}

.header-download{

    background:#1677ff;

    color:#fff;

    padding:12px 28px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.header-download:hover{

    background:#0d66e6;

}

@media(max-width:992px){

.main-nav{

display:none;

}

.header-download{

display:none;

}

.header-wrapper{

height:70px;

}

.logo{

font-size:22px;

}

}
/*==============================
Footer
==============================*/

.site-footer{
    background:#0f172a;
    color:#cbd5e1;
    margin-top:100px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    padding:80px 0 50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
    font-size:28px;
    font-weight:700;
    color:#fff;
}

.footer-logo img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.footer-about p{
    color:#94a3b8;
    line-height:1.9;
    font-size:15px;
}

.footer-column h3{
    color:#fff;
    font-size:18px;
    margin-bottom:24px;
}

.footer-column ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-column li{
    margin-bottom:14px;
}

.footer-column a{
    color:#94a3b8;
    transition:.3s;
}

.footer-column a:hover{
    color:#60a5fa;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:26px 0;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#94a3b8;
    font-size:14px;
}

.footer-bottom a{
    color:#60a5fa;
}

@media(max-width:992px){

.footer-top{

grid-template-columns:1fr;

gap:40px;

}

.footer-about{

text-align:center;

}

.footer-logo{

justify-content:center;

}

}
/*==============================
  下载页
==============================*/

.download-hero{
    background:linear-gradient(135deg,#1677ff,#33b8ff);
    padding:90px 0;
}

.download-hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:90px;
    min-height:520px;
}

.download-hero-text{
    flex:0 0 48%;
    max-width:600px;
    color:#fff;
    padding-left:40px;   /* 往右推一点 */
}

.download-hero-text h1{
    font-size:56px;
    line-height:1.2;
    margin:0 0 24px;
}

.download-hero-text p{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.95);
    max-width:620px;
    margin-bottom:35px;
}

.download-hero-img{
    flex:1;
    min-width:360px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.download-hero-img .software-window{
    width:100%;
    max-width:500px;
}

.download-hero-img .software-window img{
    width:100%;
    max-height:300px;
    object-fit:contain;
    padding:18px;
    background:#fff;
}

.download-section{
    padding:70px 0 90px;
    background:#f7fbff;
}

.download-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:30px;
}

.download-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:36px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.download-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(22,119,255,.16);
}

.download-card h3{
    font-size:24px;
    color:#222;
    margin:0 0 16px;
}

.download-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:22px;
}

.download-card ul{
    padding:0;
    margin:0 0 26px;
    list-style:none;
}

.download-card li{
    color:#555;
    margin-bottom:10px;
    padding-left:22px;
    position:relative;
}

.download-card li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#1677ff;
    font-weight:700;
}

.download-label{
    position:absolute;
    top:24px;
    right:24px;
    background:#1677ff;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
}

.download-btn{
    display:inline-block;
    width:100%;
    text-align:center;
    background:#1677ff;
    color:#fff;
    padding:14px 20px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.download-btn:hover{
    background:#0d66e6;
}

.download-btn.light{
    background:#eaf4ff;
    color:#1677ff;
}

.download-btn.light:hover{
    background:#1677ff;
    color:#fff;
}

.require-section{
    padding:90px 0;
    background:#fff;
}

.require-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.require-item{
    background:#f7fbff;
    padding:28px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.require-item h3{
    color:#1677ff;
    font-size:22px;
    margin-bottom:12px;
}

.require-item p{
    color:#666;
    line-height:1.8;
}

@media(max-width:992px){
    .download-hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .download-hero-text p{
        margin-left:auto;
        margin-right:auto;
    }

.download-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:30px;
    align-items:stretch;
}

    .download-hero-text h1{
        font-size:42px;
    }
}
/*==============================
  FAQ 页面
==============================*/

.faq-hero{
    background:linear-gradient(135deg,#1677ff,#33b8ff);
    padding:90px 0;
    text-align:center;
    color:#fff;
}

.faq-hero h1{
    font-size:56px;
    line-height:1.2;
    margin:22px 0;
}

.faq-hero p{
    max-width:850px;
    margin:0 auto;
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.94);
}

.faq-category-section{
    padding:80px 0;
    background:#f7fbff;
}

.faq-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.faq-category-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    transition:.35s;
}

.faq-category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 60px rgba(22,119,255,.16);
}

.faq-category-card h3{
    color:#1677ff;
    font-size:22px;
    margin-bottom:12px;
}

.faq-category-card p{
    color:#666;
    line-height:1.8;
}

.faq-page-section{
    padding:90px 0;
    background:#fff;
}

.faq-group{
    margin-bottom:70px;
}

.faq-group:last-child{
    margin-bottom:0;
}

.faq-group h2{
    font-size:32px;
    color:#222;
    margin-bottom:28px;
    padding-left:18px;
    border-left:5px solid #1677ff;
}

.faq-list{
    max-width:960px;
}

.faq-item{
    background:#f7fbff;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.faq-question{
    width:100%;
    border:none;
    background:#f7fbff;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    text-align:left;
}

.faq-question span{
    font-size:18px;
    font-weight:700;
    color:#222;
}

.faq-question b{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#eaf4ff;
    color:#1677ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.faq-answer{
    display:none;
    padding:0 28px 24px;
}

.faq-answer.active{
    display:block;
}

.faq-answer p{
    color:#666;
    line-height:1.9;
    margin:0;
    font-size:16px;
}

@media(max-width:992px){
    .faq-category-grid{
        grid-template-columns:1fr;
    }

    .faq-hero h1{
        font-size:42px;
    }
}
/*==============================
  分类页 Category
==============================*/

.category-hero{
    background:linear-gradient(135deg,#1677ff,#33b8ff);
    padding:90px 0;
    color:#fff;
    text-align:center;
}

.category-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
    color:rgba(255,255,255,.85);
    font-size:15px;
}

.category-breadcrumb a{
    color:#fff;
}

.category-hero h1{
    font-size:56px;
    line-height:1.2;
    margin:22px 0;
}

.category-hero p{
    max-width:850px;
    margin:0 auto;
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.94);
}

.category-post-section{
    padding:90px 0;
    background:#f7fbff;
}

.category-post-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

.category-post-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.category-post-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 60px rgba(22,119,255,.16);
}

.category-post-img{
    display:block;
    height:220px;
    background:#eaf4ff;
    overflow:hidden;
}

.category-post-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.35s;
}

.category-post-card:hover .category-post-img img{
    transform:scale(1.06);
}

.category-post-content{
    padding:28px;
}

.category-post-meta{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    color:#1677ff;
    font-size:13px;
    font-weight:600;
    margin-bottom:14px;
}

.category-post-content h3{
    font-size:22px;
    line-height:1.45;
    margin:0 0 16px;
}

.category-post-content h3 a{
    color:#222;
}

.category-post-content h3 a:hover{
    color:#1677ff;
}

.category-post-content p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:22px;
}

.category-read-more{
    color:#1677ff;
    font-weight:700;
}

.category-read-more:hover{
    color:#00a7ff;
}

.category-pagination{
    margin-top:55px;
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.category-pagination .page-numbers{
    min-width:42px;
    height:42px;
    padding:0 15px;
    border-radius:10px;
    background:#fff;
    color:#1677ff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    font-weight:700;
}

.category-pagination .page-numbers.current,
.category-pagination .page-numbers:hover{
    background:#1677ff;
    color:#fff;
}

.category-empty{
    background:#fff;
    padding:60px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.category-empty h2{
    color:#222;
    font-size:30px;
    margin-bottom:15px;
}

.category-empty p{
    color:#666;
}

.category-recommend-section{
    padding:90px 0;
    background:#fff;
}

.recommend-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.recommend-card{
    background:#f7fbff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.35s;
}

.recommend-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(22,119,255,.13);
}

.recommend-card h3{
    font-size:20px;
    line-height:1.45;
    margin:0 0 12px;
}

.recommend-card h3 a{
    color:#222;
}

.recommend-card h3 a:hover{
    color:#1677ff;
}

.recommend-date{
    color:#1677ff;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.recommend-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

@media(max-width:992px){
    .category-post-grid,
    .recommend-grid{
        grid-template-columns:1fr;
    }

    .category-hero h1{
        font-size:42px;
    }

    .category-post-img{
        height:220px;
    }
}
/*==============================
  Single 文章详情页
==============================*/

.single-hero{
    background:linear-gradient(135deg,#1677ff,#33b8ff);
    padding:80px 0;
    color:#fff;
    text-align:center;
}

.single-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    color:rgba(255,255,255,.85);
    font-size:15px;
    margin-bottom:24px;
}

.single-breadcrumb a{
    color:#fff;
}

.single-hero h1{
    max-width:900px;
    margin:0 auto 22px;
    font-size:48px;
    line-height:1.25;
}

.single-meta{
    display:flex;
    justify-content:center;
    gap:16px;
    color:rgba(255,255,255,.9);
    font-size:15px;
}

.single-section{
    padding:80px 0;
    background:#f7fbff;
}

.single-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 330px;
    gap:36px;
    align-items:start;
}

.single-main{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.single-cover{
    margin-bottom:34px;
    border-radius:20px;
    overflow:hidden;
}

.single-cover img{
    width:100%;
    height:auto;
    display:block;
}

.single-content{
    color:#444;
    font-size:17px;
    line-height:1.95;
}

.single-content p{
    margin-bottom:22px;
}

.single-content h2{
    font-size:30px;
    color:#222;
    margin:42px 0 18px;
    padding-left:16px;
    border-left:5px solid #1677ff;
}

.single-content h3{
    font-size:24px;
    color:#222;
    margin:34px 0 16px;
}

.single-content h4{
    font-size:20px;
    color:#222;
    margin:28px 0 14px;
}

.single-content ul,
.single-content ol{
    margin:0 0 24px 24px;
}

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

.single-content img{
    max-width:100%;
    height:auto;
    border-radius:16px;
    margin:28px auto;
    display:block;
}

.single-content table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
    overflow:hidden;
    border-radius:14px;
}

.single-content th,
.single-content td{
    border:1px solid #e5edf7;
    padding:14px;
    text-align:left;
}

.single-content th{
    background:#eaf4ff;
    color:#1677ff;
}

.single-content a{
    color:#1677ff;
    font-weight:600;
}

.single-tags{
    margin-top:36px;
    color:#666;
}

.single-tags span{
    font-weight:700;
    color:#222;
    margin-right:10px;
}

.single-tags a{
    display:inline-block;
    margin:0 8px 8px 0;
    padding:8px 14px;
    background:#eaf4ff;
    color:#1677ff;
    border-radius:30px;
    font-size:14px;
}

.single-nav{
    margin-top:38px;
    padding-top:28px;
    border-top:1px solid #edf2f7;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.single-nav a{
    display:block;
    background:#f7fbff;
    padding:18px;
    border-radius:14px;
    color:#1677ff;
    font-weight:700;
}

.single-sidebar{
    position:sticky;
    top:100px;
}

.sidebar-card{
    background:#fff;
    border-radius:22px;
    padding:26px;
    margin-bottom:24px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.sidebar-card h3{
    color:#222;
    font-size:22px;
    margin-bottom:14px;
}

.sidebar-card p{
    color:#666;
    line-height:1.8;
}

.sidebar-card > a{
    display:inline-block;
    margin-top:18px;
    background:#1677ff;
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    font-weight:700;
}

.sidebar-post{
    padding:14px 0;
    border-bottom:1px solid #edf2f7;
}

.sidebar-post:last-child{
    border-bottom:none;
}

.sidebar-post a{
    display:block;
    color:#222;
    line-height:1.5;
    font-weight:700;
}

.sidebar-post a:hover{
    color:#1677ff;
}

.sidebar-post span{
    display:block;
    margin-top:6px;
    color:#999;
    font-size:13px;
}

@media(max-width:992px){
    .single-hero h1{
        font-size:34px;
    }

    .single-layout{
        grid-template-columns:1fr;
    }

    .single-main{
        padding:26px;
    }

    .single-sidebar{
        position:static;
    }

    .single-nav{
        grid-template-columns:1fr;
    }
}