/* roulang page: index */
:root {
  --primary: #0E4F44;
  --primary-dark: #0A3E35;
  --accent: #A88450;
  --accent-light: rgba(168,132,80,.18);
  --bg: #F7F4EC;
  --card-bg: #FFFFFF;
  --text: #1F2A26;
  --text-secondary: #5C6B64;
  --text-muted: #9AA39E;
  --danger: #B94A2C;
  --border: #E4DFD3;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 16px rgba(14,79,68,.08);
  --shadow-hover: 0 16px 32px rgba(14,79,68,.14);
  --container-max: 1200px;
  --space-section: 96px;
  --space-section-md: 72px;
  --space-section-sm: 56px;
  --font-family: "PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Helvetica Neue",sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-family);
  font-size:16px;
  line-height:1.75;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;display:block;object-fit:cover}
a{color:inherit;text-decoration:none;transition:color .25s,background .25s,border-color .25s,box-shadow .25s,transform .25s}
input,button,textarea{font-family:inherit;font-size:inherit;color:inherit;border:none;outline:none;background:none}
ul,ol{list-style:none}
button{cursor:pointer}

.container{max-width:var(--container-max);margin:0 auto;padding:0 24px}
@media(max-width:767px){.container{padding:0 16px}}

h1{font-size:clamp(28px,3.5vw,46px);font-weight:800;line-height:1.15;letter-spacing:.02em}
h2{font-size:clamp(22px,2.8vw,34px);font-weight:700;line-height:1.25;margin-bottom:20px;position:relative}
h2::after{content:"";display:block;width:40px;height:4px;background:var(--primary);border-radius:2px;margin-top:14px}
h3{font-size:18px;font-weight:600;line-height:1.5}
h4{font-size:16px;font-weight:600;line-height:1.5}
p{font-size:16px;line-height:1.75;color:var(--text-secondary)}

section{padding:var(--space-section) 0}
@media(max-width:1023px){section{padding:var(--space-section-md) 0}}
@media(max-width:767px){section{padding:var(--space-section-sm) 0}}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:46px;padding:14px 28px;border-radius:var(--radius-sm);
  font-size:15px;font-weight:600;line-height:1;transition:all .25s ease;
  text-align:center;vertical-align:middle;white-space:nowrap;
}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark);transform:translateY(2px)}
.btn-primary:focus-visible{outline:3px solid rgba(168,132,80,.5);outline-offset:2px}
.btn-primary:active{transform:translateY(3px)}
.btn-outline{background:transparent;color:var(--primary);border:2px solid var(--primary)}
.btn-outline:hover{background:rgba(14,79,68,.06)}
.btn-outline:focus-visible{outline:3px solid rgba(168,132,80,.5);outline-offset:2px}
.btn-outline:active{transform:translateY(1px)}
.btn-light{background:#fff;color:var(--primary)}
.btn-light:hover{background:var(--accent);color:#fff;transform:translateY(2px)}
.btn-light:focus-visible{outline:3px solid rgba(168,132,80,.5);outline-offset:2px}
.btn-sm{min-height:40px;padding:10px 20px;font-size:14px}
.btn-lg{min-height:52px;padding:16px 36px;font-size:16px}
@media(max-width:767px){
  .btn{min-height:44px;padding:12px 20px}
  .btn-sm{min-height:40px;padding:8px 16px}
}

.badge{
  display:inline-block;padding:4px 12px;border-radius:4px;
  background:rgba(14,79,68,.08);color:var(--primary);
  font-size:13px;font-weight:600;line-height:1.4;
}

/* ===== Header / Nav ===== */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:var(--primary);
  box-shadow:0 2px 12px rgba(14,79,68,.18);
}
.brand-row{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  height:72px;background:var(--card-bg);padding:0 24px;
  transition:height .3s ease;
}
.scrolled .brand-row{height:56px}
.brand-row .container{display:flex;align-items:center;justify-content:space-between;width:100%;gap:16px}
.logo{display:flex;align-items:center;gap:12px;flex-shrink:0}
.logo-mark{
  width:38px;height:38px;border-radius:50%;
  background:var(--primary);display:flex;align-items:center;justify-content:center;
  position:relative;flex-shrink:0;
}
.logo-mark::after{
  content:"";width:22px;height:22px;border-radius:50%;
  border:3px solid var(--accent);display:block;
}
.logo-text{
  font-size:22px;font-weight:700;letter-spacing:.04em;color:var(--text);white-space:nowrap;
}
@media(max-width:767px){.logo-text{font-size:18px}}
.brand-actions{display:flex;align-items:center;gap:14px}
.search-box{
  display:flex;align-items:center;background:var(--bg);
  border:1px solid var(--border);border-radius:var(--radius-sm);height:40px;
  padding:0 12px;gap:6px;min-width:220px;transition:border-color .25s,box-shadow .25s;
}
.search-box:focus-within{border-color:var(--accent);box-shadow:0 0 0 3px rgba(168,132,80,.15)}
.search-box input{flex:1;height:100%;font-size:14px;color:var(--text);min-width:0}
.search-box input::placeholder{color:var(--text-muted)}
.search-box .search-ico{width:16px;height:16px;color:var(--text-muted);flex-shrink:0}
@media(max-width:767px){
  .search-box{display:none}
  .brand-actions{gap:8px}
}

.channel-row{background:var(--primary)}
.channel-row .container{display:flex;align-items:center;height:48px;padding:0 24px;gap:32px;position:relative}
.nav-link{
  position:relative;color:rgba(255,255,255,.86);font-size:15px;font-weight:500;
  padding:10px 0;letter-spacing:.02em;white-space:nowrap;
}
.nav-link::after{
  content:"";position:absolute;left:0;bottom:8px;width:100%;height:2px;
  background:var(--accent);transform:scaleX(0);transform-origin:left;transition:transform .3s ease;
}
.nav-link:hover{color:#fff}
.nav-link:hover::after{transform:scaleX(.6)}
.nav-link.active{color:#fff;font-weight:600}
.nav-link.active::after{transform:scaleX(1)}
.menu-toggle{
  display:none;color:#fff;font-size:24px;width:42px;height:42px;
  align-items:center;justify-content:center;border-radius:var(--radius-sm);
  transition:background .25s;margin-left:auto;
}
.menu-toggle:hover{background:rgba(255,255,255,.12)}
@media(max-width:768px){
  .channel-row .container{gap:20px;padding:0 16px}
  .nav-link:not(.active){display:none}
  .menu-toggle{display:flex}
}
@media(max-width:767px){
  .channel-row .container{overflow-x:auto;scrollbar-width:none;gap:20px}
  .channel-row .container::-webkit-scrollbar{display:none}
}

.mobile-menu{
  position:fixed;top:0;left:0;width:100%;height:100%;z-index:999;
  background:var(--primary);display:none;padding:80px 24px 24px;
  flex-direction:column;gap:24px;opacity:0;pointer-events:none;
  transition:opacity .3s ease;
}
.mobile-menu.open{display:flex;opacity:1;pointer-events:auto}
.mobile-menu .close-menu{
  position:absolute;top:20px;right:20px;width:44px;height:44px;
  border-radius:50%;background:rgba(255,255,255,.12);color:#fff;
  font-size:20px;display:flex;align-items:center;justify-content:center;
}
.mobile-link{
  font-size:22px;font-weight:600;color:rgba(255,255,255,.9);
  padding:12px 0;border-bottom:1px solid rgba(255,255,255,.1);
}
.mobile-link.active{color:#fff;border-color:var(--accent)}
.mobile-link:hover{color:#fff}

/* ===== Hero ===== */
.hero{
  position:relative;min-height:520px;display:flex;align-items:flex-end;
  background:var(--primary);overflow:hidden;
  padding:60px 0 120px;
}
@media(max-width:1023px){.hero{min-height:420px;padding:48px 0 96px}}
@media(max-width:767px){.hero{min-height:340px;padding:40px 0 56px;align-items:center}}
.hero-bg{
  position:absolute;inset:0;background-size:cover;background-position:center;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(14,79,68,.25) 0%,rgba(14,79,68,.25) 40%,rgba(14,79,68,.75) 100%);
}
.hero-content{position:relative;z-index:2;max-width:760px;text-align:left}
@media(max-width:767px){.hero-content{text-align:center;display:flex;flex-direction:column;align-items:center}}
.hero-tag{
  display:inline-block;padding:6px 16px;border-radius:30px;
  background:var(--accent);color:#fff;font-size:13px;font-weight:600;letter-spacing:.06em;
  margin-bottom:20px;
}
.hero-content h1{color:#fff;margin-bottom:16px}
.hero-sub{color:rgba(255,255,255,.9);font-size:18px;line-height:1.7;margin-bottom:28px}
@media(max-width:767px){.hero-sub{font-size:16px}}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
@media(max-width:767px){.hero-actions{justify-content:center}}

/* ===== Countdown ===== */
.countdown-section{padding:0;margin-top:-84px;position:relative;z-index:10}
@media(max-width:1023px){.countdown-section{margin-top:-64px}}
@media(max-width:767px){.countdown-section{margin-top:0;padding-top:24px}}
.countdown-panel{
  background:var(--bg);border-radius:var(--radius);
  box-shadow:var(--shadow);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
  padding:32px 40px;gap:32px;
}
@media(max-width:767px){
  .countdown-panel{flex-direction:column;padding:24px 20px;gap:20px}
}
.countdown-label{
  display:flex;align-items:center;gap:14px;flex-shrink:0;
}
.label-text{font-size:18px;font-weight:700;color:var(--text)}
.label-dot{width:10px;height:10px;border-radius:50%;background:var(--accent);animation:pulse 1.6s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(.85)}}
.countdown-grid{display:flex;gap:16px;flex-shrink:0}
@media(max-width:767px){.countdown-grid{gap:10px;width:100%;justify-content:center}}
.time-block{
  background:var(--primary);border-radius:8px;padding:12px 16px;
  min-width:72px;text-align:center;
}
@media(max-width:767px){.time-block{min-width:60px;padding:10px 8px}}
.time-num{
  font-size:42px;font-weight:700;color:#fff;display:block;line-height:1;
  font-feature-settings:"tnum";letter-spacing:.02em;
}
@media(max-width:767px){.time-num{font-size:24px}}
.time-unit{
  font-size:12px;color:rgba(255,255,255,.6);display:block;margin-top:6px;
  font-weight:500;letter-spacing:.08em;
}
.countdown-live{
  display:none;align-items:center;gap:20px;
}
.countdown-live .live-badge{
  background:var(--danger);color:#fff;font-size:13px;font-weight:600;
  padding:6px 16px;border-radius:30px;letter-spacing:.06em;
  animation:pulse 1.2s infinite;
}

/* ===== Highlights ===== */
.highlights{padding-top:var(--space-section)}
.highlight-list{margin-top:32px;border-top:1px solid var(--border)}
.highlight-item{
  display:grid;grid-template-columns:80px 1fr 220px;gap:24px;align-items:center;
  padding:22px 8px;border-bottom:1px solid var(--border);
  transition:background .25s;
}
@media(max-width:1023px){.highlight-item{grid-template-columns:70px 1fr 160px}}
@media(max-width:767px){.highlight-item{grid-template-columns:50px 1fr;gap:12px;padding:16px 4px}}
.highlight-item:hover{background:rgba(14,79,68,.02)}
.h-num{
  font-size:32px;font-weight:800;color:var(--accent);line-height:1;
  font-feature-settings:"tnum";transition:color .25s,transform .25s;
}
.highlight-item:hover .h-num{color:var(--primary)}
.highlight-item h4{font-size:17px;font-weight:600;transition:transform .25s}
.highlight-item:hover h4{transform:translateX(4px)}
.highlight-item p{font-size:14px;color:var(--text-secondary);text-align:right;margin:0}
@media(max-width:767px){.highlight-item p{grid-column:2;text-align:left;font-size:13px}}

/* ===== Subscribe ===== */
.subscribe-section{background:var(--card-bg);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.subscribe-panel{max-width:640px;margin:0 auto;text-align:center}
.subscribe-panel h2{text-align:center}
.subscribe-panel h2::after{margin-left:auto;margin-right:auto}
.subscribe-panel>p{font-size:16px;color:var(--text-secondary);margin-bottom:28px}
.subscribe-form{
  display:flex;gap:12px;max-width:520px;margin:0 auto;
  flex-wrap:wrap;justify-content:center;
}
@media(max-width:520px){.subscribe-form{flex-direction:column}}
.subscribe-form input{
  flex:1;min-width:240px;height:46px;border:1px solid var(--border);
  border-radius:var(--radius-sm);padding:0 16px;font-size:15px;
  background:var(--bg);transition:border-color .25s,box-shadow .25s;
}
.subscribe-form input:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(168,132,80,.15)}
.subscribe-form input.has-error{border-color:var(--danger);box-shadow:0 0 0 3px rgba(185,74,44,.12)}
.subscribe-note{margin-top:14px;font-size:13px;color:var(--text-muted)}
.subscribe-success{display:flex;align-items:center;justify-content:center;gap:10px;padding:20px 0}
.success-icon{
  width:36px;height:36px;border-radius:50%;background:rgba(168,132,80,.15);
  color:var(--accent);font-size:20px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
}
.subscribe-success p{font-size:16px;font-weight:600;color:var(--text)}

/* ===== News / Latest ===== */
.latest-section{background:var(--bg)}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:32px}
.section-head h2{margin-bottom:0}
.link-all{font-size:14px;color:var(--primary);font-weight:600;border-bottom:2px solid transparent;padding-bottom:2px}
.link-all:hover{border-color:var(--accent);color:var(--accent)}
.news-list{display:flex;flex-direction:column;gap:16px}
.news-card{
  display:grid;grid-template-columns:260px 1fr;gap:24px;align-items:center;
  background:var(--card-bg);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);border:1px solid var(--border);
  padding:12px;transition:box-shadow .3s ease,transform .3s ease;
}
@media(max-width:767px){
  .news-card{grid-template-columns:1fr;padding:0;gap:0}
}
.news-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px)}
.news-thumb{aspect-ratio:16/9;border-radius:6px;overflow:hidden;background:var(--bg)}
@media(max-width:767px){.news-thumb{border-radius:0;border-bottom:1px solid var(--border)}}
.news-thumb img{width:100%;height:100%;object-fit:cover}
.news-body{padding:12px 20px;display:flex;flex-direction:column;gap:8px;min-width:0}
@media(max-width:767px){.news-body{padding:16px}}
.news-body h3{font-size:17px;font-weight:600;line-height:1.45;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}
.news-body p{font-size:14px;color:var(--text-secondary);overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.news-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:4px}
.news-meta .date{font-size:13px;color:var(--accent);font-feature-settings:"tnum"}
.read-more{font-size:14px;font-weight:600;color:var(--primary);position:relative}
.read-more::after{content:"→";margin-left:4px;transition:transform .25s}
.news-card:hover .read-more::after{transform:translateX(4px)}
.empty-state{
  text-align:center;padding:48px 24px;background:var(--card-bg);
  border:1px dashed var(--border);border-radius:var(--radius);color:var(--text-muted);
  font-size:15px;
}

/* ===== Brand Story ===== */
.brand-story-section{background:var(--card-bg)}
.brand-story-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;
}
@media(max-width:768px){.brand-story-grid{grid-template-columns:1fr;gap:24px}}
.story-image{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.story-image img{width:100%;aspect-ratio:4/3;object-fit:cover}
.story-content p{margin-bottom:16px}
.story-content .btn{margin-top:8px}

/* ===== FAQ ===== */
.faq-section{background:var(--bg)}
.faq-list{max-width:820px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border)}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:20px 8px;cursor:pointer;user-select:none;
}
.faq-q h4{font-size:16px;font-weight:600;color:var(--text)}
.faq-icon{
  width:32px;height:32px;border-radius:50%;flex-shrink:0;
  border:1px solid var(--border);color:var(--accent);font-size:18px;font-weight:500;
  display:flex;align-items:center;justify-content:center;
  transition:transform .25s,background .25s,border-color .25s;
}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--primary);color:#fff;border-color:var(--primary)}
.faq-a{
  max-height:0;overflow:hidden;transition:max-height .35s ease;
  padding:0 8px;
}
.faq-item.open .faq-a{max-height:600px;padding-bottom:20px}
.faq-a p{font-size:15px;color:var(--text-secondary);margin:0}

/* ===== Replay ===== */
.replay-section{background:var(--card-bg);border-top:1px solid var(--border)}
.replay-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:32px}
@media(max-width:1023px){.replay-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:767px){
  .replay-grid{grid-template-columns:repeat(3,1fr);gap:16px;overflow-x:auto;padding-bottom:8px;scrollbar-width:none}
  .replay-grid::-webkit-scrollbar{display:none}
}
.replay-card{
  background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;transition:box-shadow .3s,transform .3s;display:block;
}
@media(max-width:767px){.replay-card{min-width:220px}}
.replay-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px)}
.replay-thumb{position:relative;aspect-ratio:16/9;overflow:hidden;background:var(--bg)}
.replay-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.replay-card:hover .replay-thumb img{transform:scale(1.04)}
.replay-thumb::after{
  content:"";position:absolute;inset:0;background:rgba(14,79,68,0);
  transition:background .3s;display:flex;align-items:center;justify-content:center;
}
.replay-card:hover .replay-thumb::after{background:rgba(14,79,68,.3)}
.play-ico{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(.8);
  width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.9);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .3s,transform .3s;z-index:2;
}
.replay-card:hover .play-ico{opacity:1;transform:translate(-50%,-50%) scale(1)}
.play-ico::before{
  content:"";width:0;height:0;border-top:8px solid transparent;border-bottom:8px solid transparent;
  border-left:12px solid var(--primary);margin-left:3px;
}
.duration{
  position:absolute;right:10px;bottom:10px;background:rgba(0,0,0,.6);
  color:#fff;font-size:12px;font-weight:600;padding:3px 8px;border-radius:4px;
  font-feature-settings:"tnum";z-index:3;
}
.replay-info{padding:16px 20px 20px}
.replay-info h3{font-size:16px;font-weight:600;margin-bottom:4px}
.replay-date{font-size:13px;color:var(--text-muted);font-feature-settings:"tnum"}
.replay-link{
  display:inline-block;margin-top:10px;font-size:14px;font-weight:600;color:var(--primary);
}
.replay-link::after{content:"→";margin-left:4px;transition:transform .25s}
.replay-card:hover .replay-link::after{transform:translateX(4px)}

/* ===== CTA Bar ===== */
.cta-bar{background:var(--primary);padding:56px 0;color:#fff}
@media(max-width:767px){.cta-bar{padding:40px 0}}
.cta-bar .container{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
@media(max-width:767px){.cta-bar .container{flex-direction:column;text-align:center}}
.cta-bar p{font-size:24px;font-weight:700;color:#fff;margin:0}
@media(max-width:767px){.cta-bar p{font-size:20px}}

/* ===== Footer ===== */
.site-footer{background:var(--primary);color:rgba(255,255,255,.86);padding:64px 0 0}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1.2fr 1.2fr;gap:40px;padding-bottom:48px}
@media(max-width:1023px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:767px){.footer-grid{grid-template-columns:1fr;gap:28px}}
.footer-brand h3{font-size:22px;font-weight:700;color:#fff;margin-bottom:12px;letter-spacing:.03em}
.footer-brand p{font-size:14px;color:rgba(255,255,255,.7);line-height:1.7}
.footer-nav h4,.footer-contact h4,.footer-subscribe h4{
  font-size:15px;font-weight:600;color:#fff;margin-bottom:16px;letter-spacing:.04em;
}
.footer-nav a{
  display:block;font-size:14px;color:rgba(255,255,255,.72);
  padding:6px 0;transition:color .25s,padding-left .25s;
}
.footer-nav a:hover{color:var(--accent);padding-left:6px}
.footer-contact span{display:block;font-size:14px;color:rgba(255,255,255,.72);padding:4px 0}
.footer-subscribe form{display:flex;gap:8px;margin-top:6px}
.footer-subscribe input{
  flex:1;min-width:0;height:42px;border:1px solid rgba(255,255,255,.25);
  border-radius:var(--radius-sm);padding:0 12px;font-size:14px;
  background:rgba(255,255,255,.08);color:#fff;transition:border-color .25s,box-shadow .25s;
}
.footer-subscribe input::placeholder{color:rgba(255,255,255,.5)}
.footer-subscribe input:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(168,132,80,.2)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:20px 0;display:flex;align-items:center;justify-content:space-between;gap:12px;
  font-size:13px;color:rgba(255,255,255,.55);
}
@media(max-width:767px){.footer-bottom{flex-direction:column;text-align:center}}

/* ===== Responsive extra ===== */
@media(max-width:1023px){
  .brand-row{padding:0 16px}
  .channel-row .container{padding:0 16px}
}
@media(max-width:767px){
  .brand-row{height:64px}
  .scrolled .brand-row{height:56px}
  .time-num{font-size:24px}
  .highlight-item{grid-template-columns:44px 1fr}
  .h-num{font-size:26px}
}
@media(max-width:520px){
  .footer-subscribe form{flex-direction:column}
  .footer-subscribe button{width:100%}
}

/* roulang page: article */
:root{
  --primary:#0E4F44;
  --primary-dark:#0A3E35;
  --accent:#A88450;
  --accent-soft:rgba(168,132,80,.16);
  --bg:#F7F4EC;
  --card:#FFFFFF;
  --text:#1F2A26;
  --text-2:#5C6B64;
  --text-3:#9AA39E;
  --danger:#B94A2C;
  --border:#E4DFD3;
  --primary-soft:rgba(14,79,68,.08);
  --radius:10px;
  --radius-sm:6px;
  --shadow:0 2px 16px rgba(14,79,68,.08);
  --shadow-hover:0 16px 32px rgba(14,79,68,.14);
  --max-w:1200px;
  --space:96px;
  --font-stack:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Helvetica Neue",sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font-stack);background:var(--bg);color:var(--text);line-height:1.75;font-size:16px;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input{font-family:inherit}
.container{max-width:var(--max-w);margin:0 auto;padding:0 24px}
.site-header{position:sticky;top:0;z-index:100;box-shadow:0 2px 12px rgba(14,79,68,.06)}
.brand-row{background:#fff;height:72px;transition:height .3s ease,box-shadow .3s ease;border-bottom:1px solid var(--border)}
.site-header.scrolled .brand-row{height:56px}
.brand-row .container{height:100%;display:flex;align-items:center;justify-content:space-between;gap:20px}
.logo{display:inline-flex;align-items:center;gap:10px;flex-shrink:0}
.logo-mark{width:34px;height:34px;border-radius:8px;background:linear-gradient(135deg,var(--primary),#145C4E);position:relative;overflow:hidden;flex-shrink:0}
.logo-mark::before{content:"";position:absolute;top:7px;left:7px;width:12px;height:12px;border-radius:50%;border:3px solid var(--accent)}
.logo-mark::after{content:"";position:absolute;bottom:5px;right:5px;width:7px;height:7px;border-radius:50%;background:var(--accent)}
.logo-text{font-size:20px;font-weight:700;color:var(--primary);letter-spacing:.02em}
.brand-actions{display:flex;align-items:center;gap:14px}
.search-box{display:flex;align-items:center;background:#F7F4EC;border:1px solid var(--border);border-radius:30px;padding:0 6px 0 14px;height:38px;width:240px;transition:border-color .2s}
.search-box:focus-within{border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}
.search-ico{width:16px;height:16px;color:var(--text-2);flex-shrink:0}
.search-box input{border:none;background:transparent;outline:none;flex:1;font-size:14px;color:var(--text);padding:0 8px}
.search-box input::placeholder{color:var(--text-3)}
.btn{display:inline-flex;align-items:center;justify-content:center;border:none;cursor:pointer;border-radius:var(--radius-sm);font-weight:600;transition:all .25s ease;text-decoration:none}
.btn-primary{background:var(--primary);color:#fff;padding:14px 28px;font-size:15px}
.btn-primary:hover{background:var(--primary-dark);transform:translateY(2px)}
.btn-primary:focus{outline:none;box-shadow:0 0 0 3px var(--accent-soft)}
.btn-primary:active{transform:translateY(3px)}
.btn-sm{padding:9px 20px;font-size:14px}
.btn-line{background:transparent;border:2px solid var(--primary);color:var(--primary);padding:11px 24px;font-size:15px}
.btn-line:hover{background:var(--primary-soft)}
.btn-light{background:#fff;color:var(--primary);padding:9px 22px;font-size:14px}
.btn-light:hover{background:var(--bg);transform:translateY(1px)}
.channel-row{background:var(--primary);height:48px}
.channel-row .container{height:100%;display:flex;align-items:center;gap:32px;position:relative}
.nav-link{color:rgba(255,255,255,.82);font-size:15px;font-weight:500;padding:0 2px 0;height:48px;display:inline-flex;align-items:center;position:relative;transition:color .2s}
.nav-link::after{content:"";position:absolute;left:0;right:0;bottom:0;height:3px;background:var(--accent);border-radius:3px 3px 0 0;opacity:0;transform:scaleX(.6);transition:all .25s ease}
.nav-link:hover{color:#fff}
.nav-link:hover::after{opacity:.7;transform:scaleX(.8)}
.nav-link.active{color:#fff;font-weight:600}
.nav-link.active::after{opacity:1;transform:scaleX(1)}
.menu-toggle{display:none;background:none;border:none;color:#fff;font-size:20px;width:44px;height:44px;cursor:pointer;align-items:center;justify-content:center}
.breadcrumb{background:#fff;border-bottom:1px solid var(--border);padding:12px 0;font-size:13px;color:var(--text-2)}
.breadcrumb .container{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.breadcrumb a{color:var(--text-2);transition:color .2s}
.breadcrumb a:hover{color:var(--accent)}
.breadcrumb .sep{color:#C9C4B8}
.breadcrumb .crumb-current{color:var(--text-3);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:340px}
.article-main{padding:56px 0 16px}
.article-wrap{max-width:880px;margin:0 auto;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:0}
.article-head{padding:48px 56px 32px;border-bottom:1px solid var(--border)}
.badge{display:inline-flex;align-items:center;background:var(--primary-soft);color:var(--primary);font-size:13px;font-weight:600;padding:6px 14px;border-radius:4px;letter-spacing:.03em}
.article-head h1{font-size:clamp(28px,3.4vw,42px);font-weight:800;line-height:1.25;margin:18px 0 20px;color:var(--text);letter-spacing:.01em}
.article-meta{display:flex;flex-wrap:wrap;gap:20px;font-size:13px;color:var(--text-3);font-feature-settings:"tnum"}
.article-meta .meta-item{display:inline-flex;align-items:center;gap:6px}
.article-meta .meta-item .ico{width:14px;height:14px;color:var(--accent)}
.article-body{padding:48px 56px 56px;max-width:780px;margin:0 auto}
.article-body{font-size:16px;line-height:1.85;color:var(--text)}
.article-body p{margin:0 0 28px}
.article-body h2{font-size:clamp(22px,2.6vw,30px);font-weight:700;line-height:1.4;margin:56px 0 20px;padding-bottom:12px;border-bottom:3px solid var(--primary)}
.article-body h3{font-size:19px;font-weight:700;line-height:1.5;margin:40px 0 14px}
.article-body h4{font-size:16px;font-weight:600;margin:32px 0 10px;color:var(--text-2)}
.article-body img{border-radius:8px;width:100%;object-fit:cover;margin:32px 0}
.article-body figure{margin:32px 0}
.article-body figcaption{font-size:13px;color:var(--text-3);text-align:center;margin-top:10px}
.article-body blockquote{border-left:3px solid var(--accent);background:var(--bg);color:var(--text-2);padding:16px 22px;margin:32px 0;border-radius:0 8px 8px 0;font-style:normal}
.article-body ul,.article-body ol{margin:0 0 28px;padding-left:24px}
.article-body li{margin-bottom:8px}
.article-body a{color:var(--primary);border-bottom:1px solid var(--accent);transition:color .2s,border-color .2s}
.article-body a:hover{color:var(--accent);border-color:var(--primary)}
.article-body code{background:var(--bg);padding:2px 8px;border-radius:4px;font-size:14px;color:var(--primary)}
.article-body table{width:100%;border-collapse:collapse;margin:32px 0;font-size:15px}
.article-body th,.article-body td{border:1px solid var(--border);padding:12px 14px;text-align:left}
.article-body th{background:var(--primary-soft);font-weight:600}
.not-found{padding:80px 24px;text-align:center}
.not-found .nf-icon{font-size:52px;color:var(--accent);margin-bottom:16px}
.not-found h2{font-size:24px;margin-bottom:8px;color:var(--text)}
.not-found p{color:var(--text-2);margin-bottom:24px}
.related-section{padding:72px 0 96px}
.related-section .container{max-width:1200px}
.section-title{font-size:clamp(22px,2.8vw,30px);font-weight:700;color:var(--text);margin-bottom:8px;display:flex;align-items:center;gap:14px}
.section-title::after{content:"";flex:0 0 40px;height:3px;background:var(--primary);border-radius:3px}
.section-sub{font-size:14px;color:var(--text-3);margin-bottom:36px}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.related-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .3s ease,box-shadow .3s ease}
.related-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
.related-cover{display:block;aspect-ratio:16/9;overflow:hidden;background:var(--primary-soft)}
.related-cover img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.related-card:hover .related-cover img{transform:scale(1.04)}
.related-info{padding:18px 20px 20px}
.related-info h3{font-size:17px;font-weight:600;line-height:1.45;margin-bottom:10px}
.related-info h3 a{color:var(--text);transition:color .2s}
.related-info h3 a:hover{color:var(--primary)}
.related-date{font-size:13px;color:var(--text-3);font-feature-settings:"tnum";display:inline-flex;align-items:center;gap:6px}
.related-date::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--accent)}
.back-link-wrap{text-align:center;margin-top:48px}
.back-link{display:inline-flex;align-items:center;gap:8px;font-size:15px;font-weight:600;color:var(--primary);padding:12px 28px;border:1px solid var(--border);border-radius:30px;background:#fff;transition:all .25s ease}
.back-link:hover{border-color:var(--primary);box-shadow:var(--shadow)}
.back-link svg{width:16px;height:16px;transition:transform .25s}
.back-link:hover svg{transform:translateX(-4px)}
.site-footer{background:var(--primary);color:rgba(255,255,255,.82);margin-top:0}
.footer-main{padding:64px 0 40px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1.2fr 1.4fr;gap:40px}
.footer-brand h3{font-size:22px;color:#fff;font-weight:700;margin-bottom:12px}
.footer-brand p{font-size:14px;color:rgba(255,255,255,.66);line-height:1.7}
.footer-col h4{font-size:15px;color:#fff;font-weight:600;margin-bottom:16px}
.footer-col a,.footer-col span{display:block;font-size:14px;color:rgba(255,255,255,.68);margin-bottom:10px;transition:color .2s}
.footer-col a:hover{color:var(--accent)}
.footer-subscribe form{display:flex;gap:8px;margin-top:4px}
.footer-subscribe input{flex:1;height:40px;border:none;border-radius:6px;padding:0 14px;font-size:14px;background:rgba(255,255,255,.12);color:#fff;outline:none;transition:background .2s}
.footer-subscribe input::placeholder{color:rgba(255,255,255,.5)}
.footer-subscribe input:focus{background:rgba(255,255,255,.18);box-shadow:0 0 0 3px rgba(168,132,80,.35)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding:20px 0;font-size:13px;color:rgba(255,255,255,.5)}
.footer-bottom .container{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
@media (max-width:1024px){
  :root{--space:72px}
  .search-box{width:190px}
  .related-grid{gap:20px}
}
@media (max-width:768px){
  :root{--space:56px}
  .container{padding:0 16px}
  .brand-row,.site-header.scrolled .brand-row{height:64px}
  .search-box{display:none}
  .channel-row{height:auto;min-height:48px}
  .channel-row .container{gap:0}
  .nav-link{display:none}
  .menu-toggle{display:inline-flex}
  .channel-row.open{box-shadow:0 12px 24px rgba(14,79,68,.25)}
  .channel-row.open .container{flex-direction:column;align-items:stretch;padding:0}
  .channel-row.open .nav-link{display:flex;width:100%;height:52px;padding:0 24px;border-top:1px solid rgba(255,255,255,.1);font-size:17px}
  .channel-row.open .nav-link::after{display:none}
  .channel-row.open .menu-toggle{position:absolute;top:6px;right:12px}
  .breadcrumb{padding:10px 0;font-size:12px}
  .breadcrumb .crumb-current{max-width:180px}
  .article-main{padding:28px 0 8px}
  .article-head{padding:32px 22px 24px}
  .article-head h1{font-size:26px;line-height:1.4}
  .article-meta{gap:12px;font-size:12px}
  .article-body{padding:32px 22px 40px;font-size:15px;line-height:1.8}
  .article-body p{margin-bottom:24px}
  .article-body h2{margin-top:44px}
  .related-section{padding:48px 0 64px}
  .related-grid{grid-template-columns:1fr;gap:20px}
  .related-card{display:flex;align-items:center;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
  .related-cover{width:120px;flex-shrink:0;aspect-ratio:16/10}
  .related-info{padding:14px 18px}
  .related-info h3{font-size:15px;margin-bottom:6px}
  .back-link-wrap{margin-top:36px}
  .footer-main{padding:48px 0 28px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px 24px}
  .footer-subscribe form{flex-wrap:wrap}
  .footer-subscribe input{flex:1 1 100%;height:42px}
  .footer-subscribe .btn{width:100%;height:42px}
  .footer-bottom .container{flex-direction:column;text-align:center}
}
@media (max-width:520px){
  .article-head h1{font-size:22px}
  .article-body{font-size:15px}
  .article-body blockquote{padding:14px 16px}
  .related-card{flex-direction:column;align-items:stretch}
  .related-cover{width:100%;aspect-ratio:16/9}
  .footer-grid{grid-template-columns:1fr}
  .brand-actions .btn-sm{padding:8px 14px;font-size:13px}
}

/* roulang page: category1 */
:root {
            --primary: #0E4F44;
            --primary-dark: #0A3E35;
            --accent: #A88450;
            --bg: #F7F4EC;
            --card-bg: #FFFFFF;
            --text: #1F2A26;
            --text-secondary: #5C6B64;
            --text-muted: #9AA39E;
            --border: #E4DFD3;
            --danger: #B94A2C;
            --radius: 10px;
            --radius-sm: 6px;
            --shadow: 0 2px 16px rgba(14, 79, 68, .08);
            --shadow-hover: 0 16px 32px rgba(14, 79, 68, .14);
            --container: 1200px;
            --transition: .25s ease;
            --font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-family);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }
        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }
        /* ===== 按钮 ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: var(--radius-sm);
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: background .25s, color .25s, transform .15s, box-shadow .25s;
            text-decoration: none;
            line-height: 1.2;
        }
        .btn-sm {
            padding: 10px 18px;
            font-size: 14px;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(2px);
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(168, 132, 80, .5);
            outline-offset: 2px;
        }
        .btn-primary:active {
            transform: translateY(3px);
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-secondary:hover {
            background: rgba(14, 79, 68, .06);
        }
        .btn-secondary:focus-visible {
            outline: 3px solid rgba(168, 132, 80, .4);
            outline-offset: 2px;
        }
        .btn-light {
            background: #fff;
            color: var(--primary);
        }
        .btn-light:hover {
            background: #f0ebe0;
            transform: translateY(2px);
        }
        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            box-shadow: 0 2px 12px rgba(14, 79, 68, .06);
        }
        .brand-row {
            background: #fff;
            height: 72px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border);
            transition: height .3s ease;
        }
        .site-header.scrolled .brand-row {
            height: 56px;
        }
        .brand-row .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            height: 100%;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
            letter-spacing: .01em;
            white-space: nowrap;
        }
        .logo-mark {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            background: var(--primary);
            border-radius: 9px;
            position: relative;
            overflow: hidden;
        }
        .logo-mark::before {
            content: "";
            position: absolute;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, .9);
            border-radius: 50%;
            left: 6px;
            top: 6px;
        }
        .logo-mark::after {
            content: "";
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            right: 5px;
            bottom: 5px;
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            gap: 8px;
            transition: border-color .2s, box-shadow .2s;
        }
        .search-box:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(168, 132, 80, .2);
        }
        .search-ico {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            width: 160px;
            color: var(--text);
            font-size: 14px;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .channel-row {
            background: var(--primary);
            min-height: 48px;
        }
        .channel-row .container {
            display: flex;
            align-items: center;
            gap: 4px;
            height: 48px;
            flex-wrap: wrap;
        }
        .nav-link {
            color: rgba(255, 255, 255, .82);
            font-size: 15px;
            padding: 15px 18px;
            line-height: 1;
            border-bottom: 2px solid transparent;
            transition: background .2s, color .2s, border-color .2s;
            display: inline-block;
        }
        .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, .08);
        }
        .nav-link.active {
            color: #fff;
            border-bottom-color: var(--accent);
            background: rgba(255, 255, 255, .06);
            font-weight: 600;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            line-height: 1;
            padding: 10px 8px;
            cursor: pointer;
            margin-left: auto;
        }
        /* ===== 频道背板 ===== */
        .cat-hero {
            position: relative;
            padding: 76px 0 64px;
            background: linear-gradient(rgba(14, 79, 68, .10), rgba(14, 79, 68, .10)), url('/assets/images/backpic/back-1.png') center/cover no-repeat;
        }
        .cat-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(247, 244, 236, .76);
        }
        .cat-hero .container {
            position: relative;
            z-index: 1;
        }
        .cat-hero-inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 32px;
            flex-wrap: wrap;
        }
        .cat-hero h1 {
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: .02em;
            color: var(--text);
        }
        .cat-hero-sub {
            margin-top: 14px;
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 560px;
            line-height: 1.7;
        }
        .cat-hero .btn {
            flex-shrink: 0;
            margin-top: 8px;
        }
        /* ===== 板块通用 ===== */
        .section-pad {
            padding: 96px 0;
        }
        .section-head {
            margin-bottom: 40px;
        }
        .section-head h2 {
            font-size: clamp(22px, 2.8vw, 34px);
            font-weight: 700;
            line-height: 1.25;
            color: var(--text);
        }
        .section-head h2::after {
            content: "";
            display: block;
            width: 40px;
            height: 3px;
            background: var(--primary);
            margin-top: 12px;
            border-radius: 2px;
        }
        .section-head p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-top: 10px;
        }
        /* ===== 时间轴 ===== */
        .timeline-section {
            background: var(--bg);
        }
        .timeline {
            position: relative;
            margin-top: 56px;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary);
            opacity: .25;
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            width: 50%;
            padding-bottom: 72px;
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item:nth-child(odd) {
            padding-right: 64px;
            text-align: right;
        }
        .timeline-item:nth-child(even) {
            margin-left: 50%;
            padding-left: 64px;
            text-align: left;
        }
        .timeline-dot {
            position: absolute;
            top: 12px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 0 4px rgba(168, 132, 80, .22);
            z-index: 1;
        }
        .timeline-item:nth-child(odd) .timeline-dot {
            right: -7px;
        }
        .timeline-item:nth-child(even) .timeline-dot {
            left: -7px;
        }
        .timeline-media {
            overflow: hidden;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 18px;
            transition: box-shadow .3s;
        }
        .timeline-media:hover {
            box-shadow: var(--shadow-hover);
        }
        .timeline-media img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            transition: transform .45s ease;
        }
        .timeline-media:hover img {
            transform: scale(1.03);
        }
        .timeline-item h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .timeline-item p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        /* ===== 信念区 ===== */
        .belief-section {
            background: #fff;
        }
        .belief-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 64px;
            align-items: center;
        }
        .belief-intro h2 {
            font-size: clamp(22px, 2.8vw, 34px);
            font-weight: 700;
            line-height: 1.3;
            color: var(--text);
            margin-bottom: 16px;
        }
        .belief-intro h2::after {
            content: "";
            display: block;
            width: 40px;
            height: 3px;
            background: var(--primary);
            margin-top: 14px;
            border-radius: 2px;
        }
        .belief-intro p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.8;
        }
        .belief-list {
            border-top: 1px solid var(--border);
        }
        .belief-item {
            display: flex;
            gap: 24px;
            padding: 30px 0;
            border-bottom: 1px solid var(--border);
            transition: background .2s;
        }
        .belief-item:hover {
            background: rgba(14, 79, 68, .02);
        }
        .belief-num {
            font-size: 26px;
            font-weight: 800;
            color: var(--accent);
            font-feature-settings: "tnum";
            min-width: 52px;
            line-height: 1.3;
        }
        .belief-item h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
        .belief-item p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
        }
        /* ===== 观众之声 ===== */
        .quotes-section {
            background: var(--bg);
        }
        .quotes-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 16px;
        }
        .quotes-grid blockquote {
            background: var(--card-bg);
            border-left: 3px solid var(--accent);
            border-radius: 8px;
            padding: 30px 34px;
            font-size: 16px;
            color: var(--text);
            line-height: 1.85;
            box-shadow: var(--shadow);
            margin: 0;
            transition: box-shadow .3s, transform .3s;
        }
        .quotes-grid blockquote:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .quotes-grid blockquote footer {
            margin-top: 14px;
            color: var(--text-muted);
            font-size: 13px;
        }
        /* ===== CTA条 ===== */
        .cta-bar {
            background: var(--primary);
            padding: 60px 0;
            text-align: center;
            color: #fff;
        }
        .cta-bar h2 {
            font-size: clamp(22px, 2.8vw, 30px);
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }
        .cta-bar p {
            font-size: 16px;
            color: rgba(255, 255, 255, .8);
            margin-bottom: 26px;
        }
        .cta-actions {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        /* ===== Footer ===== */
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, .85);
            padding: 64px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 48px;
        }
        .footer-brand h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .footer-brand p {
            font-size: 14px;
            opacity: .72;
            line-height: 1.7;
            max-width: 220px;
        }
        .footer-nav h4,
        .footer-contact h4,
        .footer-subscribe h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-nav a {
            display: block;
            padding: 4px 0;
            color: rgba(255, 255, 255, .75);
            font-size: 14px;
            transition: color .2s, padding-left .2s;
        }
        .footer-nav a:hover {
            color: #fff;
            padding-left: 4px;
        }
        .footer-contact span {
            display: block;
            font-size: 14px;
            padding: 4px 0;
            opacity: .75;
        }
        .footer-subscribe form {
            display: flex;
            gap: 8px;
            margin-top: 4px;
        }
        .footer-subscribe input {
            flex: 1;
            height: 42px;
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: var(--radius-sm);
            padding: 0 14px;
            background: rgba(255, 255, 255, .1);
            color: #fff;
            font-size: 14px;
            transition: border-color .2s, box-shadow .2s;
        }
        .footer-subscribe input::placeholder {
            color: rgba(255, 255, 255, .5);
        }
        .footer-subscribe input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(168, 132, 80, .25);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .15);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            opacity: .7;
            flex-wrap: wrap;
            gap: 8px;
        }
        /* ===== 响应式 ===== */
        @media (max-width: 1023px) {
            .belief-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }
            .section-pad {
                padding: 56px 0;
            }
            .brand-row {
                height: 64px;
            }
            .site-header.scrolled .brand-row {
                height: 56px;
            }
            .search-box {
                display: none;
            }
            .brand-actions .btn-sm {
                padding: 8px 14px;
                font-size: 13px;
            }
            .channel-row .container {
                height: 48px;
            }
            .menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .channel-row .nav-link {
                display: none;
            }
            .channel-row .container.open {
                height: auto;
                padding-bottom: 8px;
            }
            .channel-row .container.open .nav-link {
                display: block;
                flex: 1 1 100%;
                padding: 15px 8px;
                border-top: 1px solid rgba(255, 255, 255, .08);
                font-size: 17px;
            }
            .cat-hero {
                padding: 48px 0 48px;
            }
            .cat-hero-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .cat-hero h1 {
                font-size: 30px;
            }
            .cat-hero-sub {
                font-size: 15px;
            }
            .cat-hero .btn {
                width: 100%;
            }
            .timeline {
                margin-left: 8px;
            }
            .timeline::before {
                left: 7px;
                transform: none;
            }
            .timeline-item,
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                width: 100%;
                margin-left: 0;
                padding-left: 28px;
                padding-right: 0;
                text-align: left;
                padding-bottom: 48px;
            }
            .timeline-dot,
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 0;
                right: auto;
            }
            .timeline-item h3 {
                font-size: 18px;
            }
            .timeline-item p {
                font-size: 14px;
            }
            .belief-item {
                flex-direction: row;
                gap: 14px;
                padding: 22px 0;
            }
            .belief-num {
                font-size: 22px;
                min-width: 40px;
            }
            .quotes-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .quotes-grid blockquote {
                padding: 22px 24px;
                font-size: 15px;
            }
            .cta-bar {
                padding: 48px 0;
            }
            .cta-actions .btn {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-subscribe form {
                flex-direction: column;
            }
            .footer-subscribe .btn {
                width: 100%;
            }
        }
        @media (max-width: 520px) {
            .brand-actions .btn-sm {
                padding: 8px 12px;
                font-size: 12px;
            }
            .logo-text {
                font-size: 17px;
            }
            .logo-mark {
                width: 28px;
                height: 28px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #0E4F44;
            --primary-dark: #0A3E35;
            --secondary: #A88450;
            --bg: #F7F4EC;
            --card-bg: #FFFFFF;
            --text: #1F2A26;
            --text-2: #5C6B64;
            --text-3: #9AA39E;
            --border: #E4DFD3;
            --error: #B94A2C;
            --radius: 10px;
            --radius-sm: 6px;
            --shadow: 0 2px 16px rgba(14, 79, 68, .08);
            --shadow-lg: 0 16px 32px rgba(14, 79, 68, .14);
            --font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", sans-serif;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            background: none;
            outline: none;
            color: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #fff;
            box-shadow: 0 1px 0 var(--border);
        }

        .brand-row {
            height: 72px;
            display: flex;
            align-items: center;
            transition: height .3s;
        }

        .site-header.scrolled .brand-row {
            height: 56px;
        }

        .brand-row .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--primary);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .logo-mark::before {
            content: "";
            position: absolute;
            left: 7px;
            right: 7px;
            top: 11px;
            height: 2px;
            background: var(--secondary);
        }

        .logo-mark::after {
            content: "";
            position: absolute;
            left: 7px;
            right: 7px;
            bottom: 11px;
            height: 2px;
            background: var(--secondary);
            opacity: .6;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: .02em;
            white-space: nowrap;
            transition: font-size .2s;
        }

        .site-header.scrolled .logo-text {
            font-size: 18px;
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .search-box {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 0 12px;
            height: 38px;
            width: 220px;
            transition: border-color .2s, box-shadow .2s;
        }

        .search-box:focus-within {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(168, 132, 80, .15);
        }

        .search-ico {
            width: 16px;
            height: 16px;
            color: var(--text-2);
            flex-shrink: 0;
        }

        .search-box input {
            flex: 1;
            font-size: 14px;
            color: var(--text);
            min-width: 0;
        }

        .search-box input::placeholder {
            color: var(--text-3);
        }

        .channel-row {
            background: var(--primary);
        }

        .channel-row .container {
            display: flex;
            align-items: center;
            gap: 4px;
            height: 48px;
        }

        .nav-link {
            color: rgba(255, 255, 255, .82);
            padding: 14px 18px 12px;
            font-size: 15px;
            border-bottom: 2px solid transparent;
            transition: color .2s, border-color .2s;
            position: relative;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link.active {
            color: #fff;
            border-bottom-color: var(--secondary);
        }

        .menu-toggle {
            display: none;
            margin-left: auto;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            border-radius: 6px;
            transition: background .2s;
        }

        .menu-toggle:hover {
            background: rgba(255, 255, 255, .1);
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            border: 2px solid transparent;
            transition: transform .2s, background .2s, box-shadow .2s, color .2s;
            line-height: 1.4;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(2px);
        }

        .btn-primary:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(168, 132, 80, .35);
        }

        .btn-outline-light {
            border-color: rgba(255, 255, 255, .7);
            color: #fff;
            background: transparent;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
        }

        .btn-outline {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: rgba(14, 79, 68, .06);
            transform: translateY(2px);
        }

        .btn-white {
            background: #fff;
            color: var(--primary);
        }

        .btn-white:hover {
            background: var(--bg);
            transform: translateY(2px);
        }

        .btn-light {
            background: #fff;
            color: var(--primary);
        }

        .btn-light:hover {
            background: var(--bg);
            transform: translateY(2px);
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 14px;
            border-radius: 5px;
        }

        /* ===== Category Banner ===== */
        .category-banner {
            background: linear-gradient(120deg, rgba(14, 79, 68, .94) 0%, rgba(14, 79, 68, .78) 100%), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            padding: 76px 0 80px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .category-banner .container {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 32px;
            flex-wrap: wrap;
        }

        .category-banner-content {
            max-width: 760px;
        }

        .category-tag {
            display: inline-block;
            background: var(--secondary);
            color: #fff;
            font-size: 13px;
            padding: 4px 14px;
            border-radius: 4px;
            letter-spacing: .04em;
            margin-bottom: 18px;
        }

        .category-banner h1 {
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: .02em;
            margin-bottom: 16px;
        }

        .category-banner .lead {
            font-size: 17px;
            line-height: 1.75;
            color: rgba(255, 255, 255, .88);
            max-width: 640px;
        }

        .category-banner-actions {
            flex-shrink: 0;
            padding-bottom: 4px;
        }

        /* ===== Quote Band ===== */
        .quote-band {
            border-bottom: 1px solid var(--border);
            background: #fff;
            padding: 32px 0;
        }

        .quote-band blockquote {
            text-align: center;
            font-size: clamp(17px, 2vw, 22px);
            font-weight: 600;
            color: var(--primary);
            letter-spacing: .02em;
            line-height: 1.6;
            max-width: 720px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .quote-band blockquote::before {
            content: "“";
            color: var(--secondary);
            font-size: 32px;
            margin-right: 6px;
        }

        .quote-band blockquote::after {
            content: "”";
            color: var(--secondary);
            font-size: 32px;
            margin-left: 6px;
        }

        /* ===== Section Head ===== */
        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 44px;
            flex-wrap: wrap;
        }

        .section-head h2 {
            font-size: clamp(22px, 2.8vw, 34px);
            font-weight: 700;
            line-height: 1.25;
            position: relative;
            padding-bottom: 18px;
        }

        .section-head h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .section-head p {
            color: var(--text-2);
            max-width: 440px;
            font-size: 15px;
        }

        /* ===== Topic Grid ===== */
        .topic-section {
            padding: 96px 0;
        }

        .topic-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .topic-card {
            background: var(--card-bg);
            border: 1px solid transparent;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform .25s, box-shadow .25s, border-color .25s;
        }

        .topic-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border);
        }

        .topic-card-img {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            display: block;
        }

        .topic-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s;
        }

        .topic-card:hover .topic-card-img img {
            transform: scale(1.03);
        }

        .topic-card-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0, 0, 0, .5);
            color: #fff;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 4px;
            font-feature-settings: "tnum";
            z-index: 2;
            backdrop-filter: blur(4px);
        }

        .topic-card-serial {
            position: absolute;
            left: 12px;
            bottom: 12px;
            background: rgba(14, 79, 68, .88);
            color: #fff;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 4px;
            font-feature-settings: "tnum";
        }

        .topic-card-body {
            padding: 26px 26px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .topic-card-body h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text);
            line-height: 1.4;
        }

        .topic-card-body p {
            font-size: 14px;
            color: var(--text-2);
            line-height: 1.75;
            margin-bottom: 20px;
            flex: 1;
        }

        .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: gap .2s, color .2s;
        }

        .link-arrow:hover {
            color: var(--secondary);
            gap: 10px;
        }

        .link-arrow::after {
            content: "→";
            font-size: 16px;
            line-height: 1;
        }

        /* ===== Process Section ===== */
        .process-section {
            background: #fff;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 96px 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .step {
            padding: 28px 22px;
            background: var(--bg);
            border-radius: var(--radius);
            border-left: 3px solid var(--secondary);
            transition: box-shadow .25s, transform .25s;
        }

        .step:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .step-num {
            font-size: 32px;
            font-weight: 800;
            color: var(--secondary);
            font-feature-settings: "tnum";
            display: block;
            margin-bottom: 12px;
            line-height: 1;
        }

        .step h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .step p {
            font-size: 14px;
            color: var(--text-2);
            line-height: 1.7;
        }

        /* ===== FAQ Section ===== */
        .faq-section {
            padding: 96px 0;
        }

        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }

        .faq-item summary {
            list-style: none;
            padding: 22px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            cursor: pointer;
            font-size: 17px;
            font-weight: 600;
            color: var(--text);
            transition: color .2s;
        }

        .faq-item summary:hover {
            color: var(--primary);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            font-size: 26px;
            color: var(--secondary);
            font-weight: 400;
            line-height: 1;
            transition: transform .25s, content .25s;
            flex-shrink: 0;
        }

        .faq-item[open] summary::after {
            content: "×";
            transform: rotate(90deg);
        }

        .faq-answer {
            padding: 0 0 24px;
            color: var(--text-2);
            font-size: 15px;
            line-height: 1.85;
            max-width: 720px;
        }

        /* ===== CTA Band ===== */
        .cta-band {
            background: var(--primary);
            padding: 72px 0;
            text-align: center;
        }

        .cta-band h2 {
            color: #fff;
            font-size: clamp(22px, 2.8vw, 32px);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-band p {
            color: rgba(255, 255, 255, .8);
            margin-bottom: 28px;
            font-size: 15px;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .back-home-link {
            display: inline-block;
            margin-top: 20px;
            color: rgba(255, 255, 255, .7);
            font-size: 14px;
            transition: color .2s;
        }

        .back-home-link:hover {
            color: #fff;
        }

        .back-home-link::before {
            content: "← ";
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, .9);
            padding: 72px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 48px;
        }

        .site-footer h3 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }

        .site-footer h4 {
            font-size: 15px;
            color: #fff;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, .65);
            line-height: 1.7;
        }

        .site-footer a {
            display: block;
            color: rgba(255, 255, 255, .72);
            font-size: 14px;
            padding: 4px 0;
            transition: color .2s, padding-left .2s;
        }

        .site-footer a:hover {
            color: var(--secondary);
            padding-left: 6px;
        }

        .footer-contact span {
            display: block;
            color: rgba(255, 255, 255, .72);
            font-size: 14px;
            padding: 4px 0;
        }

        .footer-subscribe form {
            display: flex;
            gap: 8px;
        }

        .footer-subscribe input {
            flex: 1;
            min-width: 0;
            height: 44px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: var(--radius-sm);
            color: #fff;
            padding: 0 14px;
            font-size: 14px;
            transition: border-color .2s, box-shadow .2s;
        }

        .footer-subscribe input::placeholder {
            color: rgba(255, 255, 255, .5);
        }

        .footer-subscribe input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(168, 132, 80, .2);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .15);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            flex-wrap: wrap;
            gap: 8px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) {
            .topic-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .search-box {
                width: 160px;
            }

            .category-banner {
                padding: 64px 0 68px;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }

            .brand-row {
                height: 64px;
            }

            .site-header.scrolled .brand-row {
                height: 56px;
            }

            .search-box {
                display: none;
            }

            .brand-actions .btn-sm {
                padding: 7px 12px;
                font-size: 13px;
            }

            .menu-toggle {
                display: flex;
            }

            .channel-row .container {
                height: auto;
                flex-wrap: wrap;
                padding: 0 16px;
            }

            .channel-row .nav-link {
                display: none;
                width: 100%;
                padding: 14px 4px;
                border-bottom: 1px solid rgba(255, 255, 255, .08);
                font-size: 16px;
            }

            .channel-row.open .nav-link {
                display: block;
            }

            .channel-row.open .container {
                padding-bottom: 8px;
            }

            .menu-toggle {
                margin-left: auto;
            }

            .category-banner {
                padding: 48px 0 52px;
            }

            .category-banner .container {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .category-banner h1 {
                font-size: 28px;
            }

            .category-banner .lead {
                font-size: 15px;
            }

            .topic-section,
            .process-section,
            .faq-section {
                padding: 56px 0;
            }

            .topic-grid {
                gap: 20px;
            }

            .topic-card-body {
                padding: 20px;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .step {
                padding: 20px 18px;
            }

            .step-num {
                font-size: 26px;
            }

            .cta-band {
                padding: 48px 0;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .cta-actions .btn {
                width: 100%;
                max-width: 320px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding-bottom: 32px;
            }

            .footer-subscribe form {
                flex-direction: column;
            }

            .footer-subscribe input {
                width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 6px;
            }
        }

        @media (max-width: 520px) {
            .logo-text {
                font-size: 17px;
            }

            .site-header.scrolled .logo-text {
                font-size: 16px;
            }

            .category-banner-actions .btn {
                width: 100%;
            }

            .quote-band blockquote {
                font-size: 16px;
            }
        }
