/* roulang page: index */
:root {
  --green: #0E4D3A;
  --green-dark: #071F19;
  --orange: #FF5A1F;
  --orange-light: #FF7A00;
  --gold: #FFB020;
  --bg: #F7F5EF;
  --white: #ffffff;
  --text: #16231F;
  --muted: #667A72;
  --border: #E3E8E1;
  --shadow-card: 0 6px 24px rgba(7,31,25,.06);
  --shadow-hover: 0 18px 44px rgba(7,31,25,.14);
  --shadow-orange: 0 10px 22px rgba(255,90,31,.25);
  --radius-lg: 24px;
  --radius: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans SC", system-ui, -apple-system, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
p {
  margin: 0 0 1rem;
}
h1,h2,h3,h4,h5 {
  margin: 0 0 .5rem;
  line-height: 1.25;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  padding-left: 0;
  padding-right: 0;
}
.app-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 248px;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  z-index: 1040;
  border-right: 1px solid rgba(255,255,255,.05);
}
.sidebar-brand {
  padding: 32px 24px 22px;
  display: flex;
  align-items: center;
}
.brand-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-badge {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(255,176,32,.25);
}
.brand-cn {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
}
.sidebar-nav {
  padding: 8px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: background .25s ease, color .25s ease;
}
.sidebar-link i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}
.sidebar-link:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}
.sidebar-link.active {
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 700;
  box-shadow: inset 4px 0 0 var(--orange);
}
.sidebar-link:focus-visible,
.mobile-nav-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.sidebar-foot {
  padding: 20px 16px 24px;
}
.side-foot-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 16px 14px;
  color: rgba(255,255,255,.8);
}
.side-foot-label {
  font-size: 13px;
  color: rgba(255,255,255,.58);
  display: block;
  margin-bottom: 6px;
}
.side-foot-value {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  display: block;
  letter-spacing: .03em;
}
.side-foot-sub {
  font-size: 13px;
  color: rgba(255,255,255,.52);
  display: block;
  margin-top: 6px;
}
.app-main {
  margin-left: 248px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}
.mobile-header {
  display: none;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 1035;
}
.mobile-brand {
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-brand i {
  color: var(--gold);
}
.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.menu-btn:hover {
  background: rgba(255,255,255,.14);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(82vw, 340px);
  background: var(--green-dark);
  z-index: 1060;
  padding: 26px 20px 28px;
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform .3s ease;
  box-shadow: 18px 0 50px rgba(0,0,0,.25);
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.drawer-brand {
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.drawer-nav .sidebar-link {
  color: rgba(255,255,255,.76);
  font-size: 16px;
}
.drawer-foot {
  margin-top: auto;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,31,25,.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1050;
}
.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.hero {
  background: linear-gradient(115deg, rgba(7,31,25,.96) 10%, rgba(14,77,58,.72) 56%, rgba(7,31,25,.58) 100%), url('/assets/images/backpic/back-1.webp') center 35% / cover no-repeat;
  color: #fff;
  padding: clamp(60px, 8vw, 116px) 0 clamp(84px, 10vw, 136px);
  position: relative;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #f8f4ec;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-kicker i {
  color: var(--gold);
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,.84);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-sport {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-sport:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.btn-sport--primary {
  background: linear-gradient(135deg, #FF7A00, #FF4D00);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-sport--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,90,31,.35);
  color: #fff;
}
.btn-sport--ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.36);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-sport--ghost:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  color: #fff;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -52px;
  position: relative;
  z-index: 5;
  background: #fff;
  border: 1px solid #e7ede9;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.stat-item {
  position: relative;
  padding: 30px 24px;
  text-align: left;
  border-right: 1px solid #edf0ea;
}
.stat-item:last-child {
  border-right: none;
}
.stat-dot {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,90,31,.12);
}
.stat-value {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
  line-height: 1;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-value small {
  font-size: .55em;
  font-weight: 700;
  color: var(--orange);
  margin-left: 4px;
}
.stat-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.section {
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
}
.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--green-dark);
  margin-top: 6px;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
}
.eyebrow i {
  color: inherit;
}
.eyebrow--dark {
  color: var(--gold);
}
.head-quiet {
  color: var(--muted);
}
.section-title-light {
  color: #fff !important;
}
.text-light-muted {
  color: rgba(255,255,255,.7) !important;
}
.sport-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #eef1ec;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: box-shadow .3s ease, transform .3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sport-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.sport-card-feature {
  min-height: 100%;
}
.sport-card-feature .sport-card-media {
  height: 210px;
  background-size: cover;
  background-position: center;
}
.sport-card-media--dark {
  background-color: var(--green-dark);
}
.sport-card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  align-items: flex-start;
}
.card-kicker {
  display: inline-block;
  background: rgba(255,90,31,.1);
  color: var(--orange);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
}
.card-kicker--green {
  background: rgba(14,77,58,.1);
  color: var(--green);
}
.sport-card h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--green-dark);
}
.sport-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  transition: gap .2s ease, color .2s ease;
}
.arrow-link i {
  transition: transform .2s ease;
}
.arrow-link:hover {
  color: var(--orange);
  gap: 12px;
}
.arrow-link:hover i {
  transform: translateX(2px);
}
.sport-card-mini {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #eef1ec;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .3s ease, transform .3s ease;
  position: relative;
  overflow: hidden;
}
.sport-card-mini:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.mini-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,90,31,.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.sport-card-mini h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: var(--green-dark);
}
.sport-card-mini p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}
.sport-card-split {
  display: flex;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid #eef1ec;
  overflow: hidden;
  min-height: 250px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.sport-card-split:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.split-text {
  width: 62%;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.split-text h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 800;
  color: var(--green-dark);
}
.split-text p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}
.split-media {
  width: 38%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
}
.reward-section {
  background: linear-gradient(135deg, #0E4D3A 0%, #071F19 100%);
  color: #fff;
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.reward-section .section-head p {
  color: rgba(255,255,255,.7);
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.reward-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.reward-card:hover {
  background: rgba(255,255,255,.1);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
  transform: translateY(-4px);
}
.reward-card--gold {
  background: linear-gradient(145deg, rgba(255,176,32,.18), rgba(14,77,58,.2));
  border-color: rgba(255,176,32,.34);
  position: relative;
  overflow: hidden;
}
.reward-card--gold::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -54px;
  top: -54px;
  background: radial-gradient(circle, rgba(255,176,32,.28), transparent 68%);
  border-radius: 50%;
}
.reward-iconwrap {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 23px;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(255,176,32,.36);
}
.reward-iconwrap--ghost {
  background: rgba(255,255,255,.1);
  color: var(--gold);
  box-shadow: none;
}
.reward-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.reward-card p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.8;
}
.reward-note-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reward-note-list li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  align-items: flex-start;
}
.reward-note-list li i {
  color: var(--gold);
  margin-top: 5px;
  font-size: 12px;
}
.mission-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.mission-card {
  background: #fff;
  border: 1px solid #e8eee9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 24px;
  margin-bottom: 18px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.mission-card:last-child {
  margin-bottom: 0;
}
.mission-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.mission-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mission-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
}
.mission-tag {
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tag-orange {
  background: rgba(255,90,31,.12);
  color: var(--orange);
}
.tag-green {
  background: rgba(14,77,58,.1);
  color: var(--green);
}
.tag-red {
  background: rgba(220,53,69,.1);
  color: #dc3545;
}
.tag-gray {
  background: rgba(102,122,114,.1);
  color: var(--muted);
}
.mission-info {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.mission-info span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.progress-track {
  height: 10px;
  background: #e9efea;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-light), var(--gold));
  border-radius: 999px;
}
.mission-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.mission-stat {
  color: var(--muted);
  font-size: 13px;
}
.cta-band {
  background: linear-gradient(135deg, #0E4D3A, #071F19), url('/assets/images/backpic/back-2.png');
  background-size: cover;
  background-blend-mode: multiply;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border: 44px solid rgba(255,255,255,.03);
  border-radius: 50%;
}
.cta-band-body {
  position: relative;
  z-index: 1;
}
.cta-band-body h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-band-body p {
  margin: 0;
  color: rgba(255,255,255,.76);
}
.cta-band-actions {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.news-section {
  background: var(--bg);
}
.news-lead-card {
  background: #fff;
  border: 1px solid #e9eee9;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  height: 100%;
  min-height: 330px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.news-lead-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.news-lead-media {
  width: 46%;
  background-size: cover;
  background-position: center;
  min-height: 260px;
  position: relative;
}
.news-lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-lead-body {
  width: 54%;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.news-lead-body .tag {
  align-self: flex-start;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(14,77,58,.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.tag i {
  font-size: 11px;
}
.news-lead-body h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.42;
  color: var(--green-dark);
  margin: 0;
}
.news-lead-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-lead-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.news-compact {
  display: flex;
  align-items: stretch;
  gap: 16px;
  background: #fff;
  border: 1px solid #eaf0eb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px;
  margin-bottom: 16px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.news-compact:last-child {
  margin-bottom: 0;
}
.news-compact:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.news-compact-order {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255,90,31,.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.news-compact-body {
  flex: 1;
  min-width: 0;
}
.news-compact-body .tag {
  margin-bottom: 8px;
}
.news-compact-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--green-dark);
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-compact-body time {
  color: var(--muted);
  font-size: 13px;
}
.empty-news {
  background: #fff;
  border: 1px dashed #cbd6cf;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 52px 30px;
  color: var(--muted);
}
.empty-news i {
  font-size: 38px;
  color: #c2cfc8;
  margin-bottom: 14px;
  display: block;
}
.empty-news p {
  margin-bottom: 0;
}
.faq-section {
  background: var(--bg);
}
.faq-left .section-head {
  margin-bottom: 20px;
}
.faq-item {
  background: #fff;
  border: 1px solid #e8eee9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:has(button:not(.collapsed)) {
  border-color: var(--green);
  box-shadow: 0 10px 30px rgba(14,77,58,.08);
}
.faq-q {
  margin: 0;
}
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  background: transparent;
}
.faq-q .faq-btn i {
  font-size: 15px;
  color: var(--orange);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-btn.collapsed i {
  transform: rotate(0deg);
}
.faq-btn:not(.collapsed) i {
  transform: rotate(180deg);
}
.faq-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -2px;
  border-radius: var(--radius);
}
.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.faq-answer p {
  margin: 0;
}
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  margin-top: auto;
}
.footer-top {
  padding: 56px 0 34px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-brand i {
  color: var(--gold);
  font-size: 22px;
}
.footer-about {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.9;
  max-width: 320px;
  margin-bottom: 0;
}
.footer-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,.68);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
}
.footer-bottom {
  text-align: center;
  padding: 22px 24px;
  color: rgba(255,255,255,.42);
  font-size: 13px;
}
@media (max-width: 991.98px) {
  .app-sidebar {
    display: none;
  }
  .app-main {
    margin-left: 0;
  }
  .mobile-header {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -32px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #edf0ea;
    padding: 20px 18px;
  }
  .cta-band {
    flex-direction: column;
  }
  .cta-band-actions .btn-sport {
    width: 100%;
  }
  .news-lead-card {
    flex-direction: column;
  }
  .news-lead-media,
  .news-lead-body {
    width: 100%;
  }
  .news-lead-media {
    min-height: 180px;
  }
  .footer-top .row > div {
    margin-bottom: 28px;
  }
}
@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-sport {
    width: 100%;
  }
  .split-text {
    width: 100%;
    padding: 24px 20px;
  }
  .sport-card-split {
    flex-direction: column;
  }
  .split-media {
    width: 100%;
    min-height: 160px;
  }
  .faq-answer,
  .faq-btn {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* roulang page: article */
:root{
  --brand:#0E4D3A;
  --brand-dark:#071F19;
  --orange:#FF5A1F;
  --orange-2:#FF7A00;
  --gold:#FFB020;
  --bg:#F7F5EF;
  --card:#FFFFFF;
  --text:#16231F;
  --soft:#667A72;
  --line:#E3E8E1;
  --r-lg:24px;
  --r-md:20px;
  --r-sm:16px;
  --shadow-sm:0 6px 24px rgba(7,31,25,.06);
  --shadow-md:0 18px 44px rgba(7,31,25,.14);
  --ease:cubic-bezier(.2,.7,.2,1);
}
html{
  -webkit-text-size-adjust:100%;
}
*,
*::before,
*::after{
  box-sizing:border-box;
}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  background:var(--bg);
  color:var(--text);
  font-size:16px;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
a{
  color:inherit;
  text-decoration:none;
  transition:color .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease),opacity .25s var(--ease),transform .25s var(--ease),box-shadow .25s var(--ease);
}
img{
  max-width:100%;
  display:block;
  height:auto;
}
button{
  font-family:inherit;
  border:0;
  background:none;
  cursor:pointer;
  color:inherit;
}
ul,ol{
  padding-left:0;
}
a:focus-visible,
button:focus-visible,
.btn-main:focus-visible,
.btn-secondary:focus-visible{
  outline:3px solid rgba(255,90,31,.45);
  outline-offset:2px;
}
.content-wrap{
  max-width:1240px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}
.main-area{
  margin-left:248px;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:var(--bg);
}
.app-shell{
  min-height:100vh;
}

.btn-main{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 30px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--orange-2),#FF4D00);
  color:#fff;
  font-weight:700;
  font-size:15px;
  line-height:1;
  letter-spacing:.01em;
  border:none;
  box-shadow:0 10px 22px rgba(255,90,31,.25);
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),filter .25s var(--ease);
  white-space:nowrap;
}
.btn-main:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(255,90,31,.34);
  filter:brightness(1.05);
  color:#fff;
}
.btn-main:active{
  transform:translateY(0);
  box-shadow:0 6px 16px rgba(255,90,31,.22);
}
.btn-main-sm{
  min-height:44px;
  padding:0 22px;
  font-size:14px;
}
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:0 28px;
  border-radius:999px;
  background:transparent;
  border:2px solid var(--brand);
  color:var(--brand);
  font-weight:700;
  font-size:15px;
  transition:all .25s var(--ease);
}
.btn-secondary:hover{
  background:var(--brand);
  color:#fff;
}
.btn-ghost-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:0 28px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.6);
  color:#fff;
  font-weight:600;
  font-size:15px;
  transition:all .25s var(--ease);
}
.btn-ghost-light:hover{
  background:#fff;
  color:var(--brand-dark);
  border-color:#fff;
}
.btn-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand);
  font-weight:700;
  font-size:15px;
  padding:10px 4px;
}
.btn-link i{
  transition:transform .25s var(--ease);
}
.btn-link:hover{
  color:var(--orange);
}
.btn-link:hover i{
  transform:translateX(5px);
}

.sidebar{
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  width:248px;
  background:var(--brand-dark);
  z-index:1200;
  overflow-x:hidden;
  overflow-y:auto;
  transition:transform .35s var(--ease),width .3s var(--ease),box-shadow .3s var(--ease);
}
.sidebar-inner{
  min-height:100%;
  padding:28px 18px 24px;
  display:flex;
  flex-direction:column;
}
.brand-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  padding:4px 10px 30px;
  margin-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.brand-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--orange-2));
  color:var(--brand-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  box-shadow:0 6px 18px rgba(255,121,0,.25);
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.25;
}
.brand-cn{
  font-size:19px;
  font-weight:800;
  color:#fff;
  letter-spacing:.02em;
  white-space:nowrap;
}
.brand-sub{
  font-size:10px;
  letter-spacing:.28em;
  color:rgba(255,255,255,.42);
  text-transform:uppercase;
  margin-top:3px;
}
.sidebar-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:14px;
}
.sidebar-link{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:46px;
  padding:0 14px;
  border-radius:14px;
  color:rgba(255,255,255,.74);
  font-size:15px;
  font-weight:500;
  border-left:4px solid transparent;
  transition:background .25s var(--ease),color .25s var(--ease),border-color .25s var(--ease);
}
.sidebar-link i{
  width:20px;
  text-align:center;
  color:rgba(255,255,255,.5);
  font-size:16px;
  transition:color .25s var(--ease);
}
.sidebar-link:hover{
  background:rgba(255,255,255,.07);
  color:#fff;
}
.sidebar-link:hover i{
  color:var(--gold);
}
.sidebar-link.active{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-left-color:var(--orange);
  font-weight:700;
}
.sidebar-link.active i{
  color:var(--orange);
}
.sidebar-bottom{
  margin-top:auto;
  padding-top:24px;
}
.side-call-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:16px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.7;
}
.side-call-title{
  color:#fff;
  font-weight:700;
  margin-bottom:6px;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
}
.side-call-title i{
  color:var(--gold);
}
.side-call-phone{
  display:block;
  margin-top:8px;
  font-size:17px;
  font-weight:800;
  color:#fff;
}

.mobile-topbar{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:64px;
  background:var(--brand-dark);
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  z-index:1100;
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 8px 26px rgba(7,31,25,.18);
}
.mobile-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-weight:800;
  font-size:18px;
}
.mobile-brand i{
  color:var(--gold);
  font-size:20px;
}
.nav-toggle{
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
}
.drawer-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(7,31,25,.56);
  z-index:1150;
  opacity:0;
  pointer-events:none;
  transition:opacity .35s var(--ease);
}
.drawer-backdrop.show{
  opacity:1;
  pointer-events:auto;
}

.article-hero{
  position:relative;
  background:linear-gradient(115deg,rgba(7,31,25,.95) 12%,rgba(14,77,58,.85) 58%,rgba(14,77,58,.66) 100%),url("/assets/images/backpic/back-2.png") center/cover no-repeat;
  padding:64px 0 62px;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.04);
}
.article-hero::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:36%;
  height:120px;
  background:linear-gradient(135deg,transparent,rgba(255,176,32,.14));
  clip-path:polygon(22% 0,100% 0,100% 100%,0 100%);
  pointer-events:none;
}
.content-wrap{
  position:relative;
  z-index:2;
}
.article-breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:8px;
  font-size:14px;
  color:rgba(255,255,255,.66);
  margin-bottom:28px;
  overflow:hidden;
  white-space:nowrap;
}
.article-breadcrumb a{
  color:rgba(255,255,255,.82);
  transition:color .25s var(--ease);
}
.article-breadcrumb a:hover{
  color:var(--gold);
}
.article-breadcrumb .crumb-cat{
  color:rgba(255,255,255,.9);
  font-weight:600;
}
.article-breadcrumb .sep{
  color:rgba(255,255,255,.35);
}
.article-breadcrumb .crumb-title{
  max-width:180px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:rgba(255,255,255,.58);
}
.article-tag{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:var(--orange);
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:7px 14px;
  border-radius:999px;
  margin-bottom:18px;
  box-shadow:0 8px 18px rgba(255,90,31,.28);
}
.article-title{
  font-size:clamp(32px,4vw,52px);
  font-weight:850;
  line-height:1.2;
  color:#fff;
  max-width:860px;
  letter-spacing:-.02em;
  margin-bottom:18px;
  text-wrap:balance;
}
.article-subline{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:18px;
  color:rgba(255,255,255,.72);
  font-size:14px;
  margin-top:14px;
}
.article-subline span{
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.article-subline i{
  color:var(--gold);
}

.article-stage{
  padding:44px 0 60px;
  background:var(--bg);
}
.article-layout{
  display:grid;
  grid-template-columns:minmax(0,820px) minmax(280px,320px);
  gap:28px;
  align-items:start;
  justify-content:center;
}
.article-main-card{
  background:var(--card);
  border-radius:var(--r-lg);
  border:1px solid rgba(227,232,225,.8);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  padding:clamp(28px,5vw,54px);
  position:relative;
}
.article-body{
  font-size:17px;
  line-height:1.9;
  color:var(--text);
  word-break:break-word;
}
.article-body > *:last-child{
  margin-bottom:0;
}
.article-body h2{
  font-size:26px;
  font-weight:800;
  line-height:1.4;
  margin:2.2em 0 .85em;
  padding-left:16px;
  position:relative;
  letter-spacing:-.01em;
  color:var(--brand-dark);
}
.article-body h2::before{
  content:"";
  position:absolute;
  left:0;
  top:.18em;
  bottom:.18em;
  width:4px;
  background:var(--brand);
  border-radius:99px;
}
.article-body h3{
  font-size:21px;
  font-weight:750;
  margin:1.9em 0 .7em;
  color:var(--brand-dark);
}
.article-body h4{
  font-size:18px;
  font-weight:700;
  margin:1.6em 0 .5em;
}
.article-body p{
  margin:0 0 1.35em;
}
.article-body ul,
.article-body ol{
  margin:0 0 1.5em;
  padding-left:1.7em;
}
.article-body ul li{
  list-style:disc;
  padding-left:.2em;
  margin-bottom:.45em;
}
.article-body ol li{
  list-style:decimal;
  margin-bottom:.45em;
}
.article-body li::marker{
  color:var(--brand);
}
.article-body ul li::marker{
  color:var(--brand);
  font-size:.9em;
}
.article-body blockquote{
  margin:2em 0;
  padding:18px 24px;
  border-left:4px solid var(--orange);
  border-radius:0 16px 16px 0;
  background:var(--bg);
  color:#34453E;
  font-size:16px;
  line-height:1.8;
}
.article-body blockquote p{
  margin:0;
}
.article-body img{
  border-radius:18px;
  margin:1.8em auto;
  box-shadow:var(--shadow-sm);
  width:100%;
  object-fit:cover;
}
.article-body figure{
  margin:2em 0;
  text-align:center;
}
.article-body figure img{
  margin:0 auto;
}
.article-body figcaption{
  margin-top:10px;
  color:var(--soft);
  font-size:13px;
  text-align:center;
}
.article-body table{
  width:100%;
  border-collapse:collapse;
  margin:1.8em 0;
  font-size:15px;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
}
.article-body th,
.article-body td{
  border:1px solid var(--line);
  padding:12px 14px;
  text-align:left;
}
.article-body th{
  background:#EEF4EE;
  color:var(--brand-dark);
  font-weight:700;
}
.article-body a{
  color:var(--brand);
  border-bottom:1px solid rgba(14,77,58,.28);
  transition:color .25s var(--ease),border-color .25s var(--ease);
}
.article-body a:hover{
  color:var(--orange);
  border-bottom-color:rgba(255,90,31,.4);
}
.article-body pre{
  background:var(--brand-dark);
  color:#dcefe7;
  padding:22px;
  border-radius:16px;
  overflow:auto;
  margin:1.8em 0;
  font-size:14px;
}
.article-body code{
  background:#EDF2ED;
  color:var(--brand);
  font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,monospace;
  font-size:.9em;
  padding:2px 7px;
  border-radius:6px;
}
.article-body pre code{
  background:transparent;
  color:inherit;
  padding:0;
}

.article-aside{
  position:sticky;
  top:28px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.aside-card{
  background:#fff;
  border:1px solid rgba(227,232,225,.9);
  border-radius:var(--r-md);
  padding:22px;
  box-shadow:var(--shadow-sm);
}
.aside-card-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  font-weight:800;
  margin-bottom:16px;
  color:var(--brand-dark);
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.aside-card-title i{
  color:var(--orange);
}
.aside-cat-list{
  list-style:none;
  margin:0;
}
.aside-cat-list li{
  margin-bottom:4px;
}
.aside-cat-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:42px;
  padding:0 12px;
  border-radius:12px;
  color:var(--text);
  font-size:14px;
  font-weight:500;
  transition:background .25s var(--ease),color .25s var(--ease),padding-left .25s var(--ease);
}
.aside-cat-list a i{
  color:var(--soft);
  font-size:12px;
  transition:transform .25s var(--ease),color .25s var(--ease);
}
.aside-cat-list a:hover{
  background:var(--bg);
  color:var(--brand);
  padding-left:16px;
}
.aside-cat-list a:hover i{
  color:var(--orange);
  transform:translateX(2px);
}
.aside-contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  color:var(--soft);
  padding:9px 0;
  border-bottom:1px dashed var(--line);
}
.aside-contact-item:last-child{
  border-bottom:0;
}
.aside-contact-item i{
  width:30px;
  height:30px;
  min-width:30px;
  border-radius:9px;
  background:#EEF5F1;
  color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}

.post-guide-nav{
  margin-top:38px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.post-back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand);
  font-weight:700;
  font-size:14px;
}
.post-back-link i{
  transition:transform .25s var(--ease);
}
.post-back-link:hover{
  color:var(--orange);
}
.post-back-link:hover i{
  transform:translateX(-4px);
}
.post-top-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--soft);
  font-size:14px;
  font-weight:600;
}
.post-top-link i{
  color:var(--orange);
}
.post-top-link:hover{
  color:var(--brand);
}

.continue-zone{
  background:var(--bg);
  padding:30px 0 70px;
}
.continue-zone .section-head h2{
  font-size:30px;
  font-weight:800;
  color:var(--brand-dark);
  margin-bottom:28px;
}
.continue-zone .section-head .eyebrow{
  color:var(--orange);
  font-weight:800;
  letter-spacing:.12em;
  font-size:13px;
  margin-bottom:6px;
  display:block;
}
.continue-card{
  display:flex;
  align-items:stretch;
  background:#fff;
  border-radius:var(--r-md);
  overflow:hidden;
  border:1px solid rgba(227,232,225,.8);
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s var(--ease);
  height:100%;
}
.continue-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:rgba(14,77,58,.25);
}
.continue-card-img{
  width:120px;
  min-width:120px;
  min-height:160px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.continue-card-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent 50%,rgba(7,31,25,.3));
}
.continue-card-body{
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.continue-card-body .continue-card-cat{
  font-size:12px;
  font-weight:800;
  color:var(--orange);
  margin-bottom:8px;
  letter-spacing:.08em;
}
.continue-card-body h3{
  font-size:18px;
  font-weight:750;
  color:var(--text);
  line-height:1.45;
  margin-bottom:10px;
}
.continue-card-body p{
  font-size:14px;
  color:var(--soft);
  line-height:1.7;
  margin-bottom:0;
}
.continue-card-body .go-link{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--brand);
  font-size:14px;
  font-weight:700;
}
.continue-card-body .go-link i{
  transition:transform .25s var(--ease);
}
.continue-card-body .go-link:hover i{
  transform:translateX(5px);
}

.post-cta{
  background:linear-gradient(120deg,var(--brand-dark) 0%,var(--brand) 100%);
  position:relative;
  overflow:hidden;
  padding:76px 0;
}
.post-cta::before{
  content:"";
  position:absolute;
  right:-80px;
  top:-40px;
  width:420px;
  height:280px;
  background:linear-gradient(120deg,rgba(255,90,31,.32),transparent);
  border-radius:50%;
  filter:blur(60px);
}
.post-cta::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:100%;
  background-image:repeating-linear-gradient(125deg,transparent 0 18px,rgba(255,255,255,.025) 18px 20px);
  pointer-events:none;
}
.post-cta .cta-inner{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.post-cta .cta-title{
  font-size:clamp(26px,3vw,36px);
  font-weight:800;
  color:#fff;
  line-height:1.3;
  margin-bottom:8px;
}
.post-cta .cta-desc{
  color:rgba(255,255,255,.72);
  font-size:16px;
  max-width:560px;
}

.notfound-section{
  padding:110px 24px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  flex:1;
}
.empty-box{
  background:#fff;
  border-radius:var(--r-lg);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  max-width:560px;
  width:100%;
  padding:58px 40px;
}
.empty-icon{
  width:76px;
  height:76px;
  margin:0 auto 22px;
  border-radius:50%;
  background:#F4F1E9;
  color:var(--orange);
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.empty-box h1{
  font-size:32px;
  font-weight:800;
  color:var(--brand-dark);
  margin-bottom:14px;
}
.empty-box p{
  color:var(--soft);
  font-size:16px;
  margin-bottom:26px;
}

.site-footer{
  background:var(--brand-dark);
  color:rgba(255,255,255,.68);
  padding:64px 0 24px;
  margin-top:auto;
  position:relative;
}
.footer-top{
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand{
  font-size:24px;
  font-weight:850;
  color:#fff;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.footer-brand i{
  color:var(--gold);
  font-size:24px;
}
.footer-about{
  font-size:14px;
  color:rgba(255,255,255,.55);
  max-width:320px;
  line-height:1.85;
  margin-bottom:0;
}
.footer-title{
  font-size:15px;
  font-weight:700;
  color:#fff;
  margin-bottom:16px;
}
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  color:rgba(255,255,255,.55);
  font-size:14px;
  transition:color .25s var(--ease),padding-left .25s var(--ease);
}
.footer-links a:hover{
  color:var(--gold);
  padding-left:5px;
}
.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:rgba(255,255,255,.55);
  margin-bottom:12px;
}
.footer-contact-item i{
  color:var(--gold);
  margin-top:5px;
}
.footer-bottom{
  padding-top:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
  font-size:13px;
  color:rgba(255,255,255,.4);
}

@media (min-width:1400px){
  .content-wrap{
    max-width:1280px;
  }
  .article-layout{
    grid-template-columns:minmax(0,850px) minmax(280px,330px);
  }
}
@media (max-width:991.98px){
  .sidebar{
    width:286px;
    transform:translateX(-104%);
    box-shadow:20px 0 50px rgba(0,0,0,.2);
  }
  .sidebar.open{
    transform:translateX(0);
  }
  .main-area{
    margin-left:0;
    padding-top:64px;
  }
  .mobile-topbar{
    display:flex;
  }
  .drawer-backdrop.show{
    display:block;
  }
  .article-layout{
    grid-template-columns:1fr;
  }
  .article-aside{
    position:static;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
}
@media (max-width:767.98px){
  .content-wrap{
    padding-left:16px;
    padding-right:16px;
  }
  .article-breadcrumb{
    gap:6px;
    font-size:13px;
  }
  .article-breadcrumb .crumb-title{
    max-width:110px;
  }
  .banner-hero{
    padding:132px 0 70px;
  }
  h1.article-title{
    font-size:32px;
  }
  .article-main-card{
    padding:22px 18px;
    border-radius:20px;
  }
  .article-body{
    font-size:16px;
    line-height:1.85;
  }
  .article-body h2{
    font-size:22px;
  }
  .article-body h3{
    font-size:19px;
  }
  .article-stage{
    padding-top:26px;
  }
  .article-subline{
    gap:12px;
    font-size:13px;
  }
  .continue-zone{
    padding:10px 0 54px;
  }
  .continue-card-img{
    width:92px;
    min-width:92px;
    max-width:92px;
  }
  .continue-card-body{
    padding:16px 14px;
  }
  .continue-card-body h3{
    font-size:16px;
  }
  .post-cta{
    padding:56px 0;
  }
  .post-cta .cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .post-cta .btn-main{
    width:100%;
  }
  .post-guide-nav{
    flex-direction:column;
    align-items:flex-start;
  }
  .notfound-section{
    padding:60px 16px;
  }
  .empty-box{
    padding:40px 20px;
  }
  .footer-top .col-4{
    width:33.3333%;
    flex:0 0 auto;
    padding-right:8px;
    padding-left:8px;
  }
  .footer-bottom{
    flex-direction:column;
    text-align:center;
    justify-content:center;
  }
}
@media (max-width:520px){
  .article-subline span:nth-child(2){
    display:none;
  }
  .article-breadcrumb .crumb-title{
    display:none;
  }
  .article-breadcrumb .crumb-cat{
    max-width:90px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .article-aside{
    grid-template-columns:1fr;
  }
  .continue-card{
    flex-direction:column;
  }
  .continue-card-img{
    width:100%;
    min-width:100%;
    min-height:120px;
  }
  .continue-card-img::after{
    background:linear-gradient(0deg,transparent 45%,rgba(7,31,25,.15));
  }
}

/* roulang page: category1 */
:root {
      --pine: #0E4D3A;
      --deep: #071F19;
      --orange: #FF5A1F;
      --orange-bright: #FF7A00;
      --orange-deep: #FF4D00;
      --gold: #FFB020;
      --cream: #F7F5EF;
      --card: #FFFFFF;
      --ink: #16231F;
      --muted: #667A72;
      --line: #E3E8E1;
      --radius-lg: 24px;
      --radius-md: 20px;
      --radius-sm: 16px;
      --radius-pill: 999px;
      --shadow-card: 0 6px 24px rgba(7, 31, 25, 0.06);
      --shadow-hover: 0 18px 44px rgba(7, 31, 25, 0.14);
      --shadow-orange: 0 10px 22px rgba(255, 90, 31, 0.25);
      --space-section: clamp(72px, 9vw, 116px);
      --container-pad: clamp(22px, 4vw, 60px);
      --sidebar-width: 248px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.75;
      font-variant-numeric: tabular-nums;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    }

    button,
    summary {
      font-family: inherit;
      cursor: pointer;
    }

    :where(a, button, summary, input, textarea, [tabindex]):focus-visible {
      outline: 3px solid rgba(255, 90, 31, .75);
      outline-offset: 3px;
      border-radius: 10px;
    }

    .content-wrap {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding-left: var(--container-pad);
      padding-right: var(--container-pad);
    }

    .section-block {
      padding: var(--space-section) 0;
      position: relative;
    }

    .medium-pb {
      padding-bottom: clamp(32px, 6vw, 72px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 700;
      color: var(--pine);
      background: rgba(14, 77, 58, .08);
      letter-spacing: .04em;
      margin-bottom: 16px;
    }

    .eyebrow i {
      color: var(--orange);
    }

    .section-title {
      font-size: clamp(30px, 3.6vw, 38px);
      line-height: 1.25;
      font-weight: 800;
      letter-spacing: -0.01em;
      margin: 0 0 16px;
      color: var(--ink);
    }

    .section-title.light {
      color: #fff;
    }

    .section-sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 720px;
      line-height: 1.85;
      margin: 0;
    }

    .section-sub.light {
      color: rgba(255, 255, 255, .76);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      border: 0;
      min-height: 48px;
      padding: 0 26px;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.2;
      white-space: nowrap;
    }

    .btn-orange {
      color: #fff;
      background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
      box-shadow: var(--shadow-orange);
      transition: all .25s ease;
    }

    .btn-orange:hover,
    .btn-orange:active {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(255, 90, 31, .34);
      background: linear-gradient(135deg, #ff8b18, #ff3b00);
    }

    .btn-green-line {
      color: var(--pine);
      background: #fff;
      border: 2px solid var(--pine);
    }

    .btn-green-line:hover {
      color: #fff;
      background: var(--pine);
      border-color: var(--pine);
      transform: translateY(-2px);
    }

    .btn-white-line {
      color: #fff;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, .72);
    }

    .btn-white-line:hover {
      color: var(--deep);
      background: #fff;
      border-color: #fff;
    }

    .btn-dark {
      color: #fff;
      background: var(--deep);
      border: 2px solid var(--deep);
    }

    .btn-dark:hover {
      color: #fff;
      background: var(--pine);
      border-color: var(--pine);
    }

    /* Desktop left sidebar */
    .app-sidebar {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: var(--sidebar-width);
      background: var(--deep);
      z-index: 1050;
      display: none;
      flex-direction: column;
      padding: 24px 16px 18px;
      color: #fff;
    }

    .sidebar-inner {
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 4px 8px;
      border-radius: 18px;
    }

    .brand i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      font-size: 18px;
      color: var(--gold);
      background: rgba(255, 255, 255, .07);
      border-radius: 12px;
    }

    .brand-cn {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: .01em;
      color: #fff;
      line-height: 1.2;
    }

    .brand-sub {
      display: block;
      font-size: 11px;
      color: rgba(255, 255, 255, .55);
      font-weight: 400;
      letter-spacing: .06em;
      margin-top: 4px;
    }

    .sidebar-nav {
      margin: 36px 0 34px;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .sidebar-link {
      display: flex;
      align-items: center;
      gap: 13px;
      height: 48px;
      padding: 0 14px 0 16px;
      border-radius: 14px;
      font-size: 15px;
      font-weight: 500;
      color: rgba(255, 255, 255, .72);
      transition: background .25s ease, color .25s ease, box-shadow .25s ease;
    }

    .sidebar-link i {
      width: 20px;
      font-size: 16px;
      color: rgba(255, 255, 255, .66);
      text-align: center;
    }

    .sidebar-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, .06);
    }

    .sidebar-link.active {
      color: #fff;
      background: rgba(255, 255, 255, .09);
      box-shadow: inset 4px 0 0 var(--orange);
      font-weight: 700;
    }

    .sidebar-link.active i {
      color: var(--orange);
    }

    .sidebar-contact {
      margin-top: auto;
      border-radius: 20px;
      background: rgba(255, 255, 255, .06);
      padding: 18px 16px;
      color: #fff;
    }

    .sidebar-contact small {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .55);
      font-size: 13px;
      margin-bottom: 10px;
    }

    .sidebar-contact strong {
      display: block;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .02em;
      color: #fff;
    }

    .sidebar-contact p {
      margin: 10px 0 0;
      font-size: 13px;
      color: rgba(255, 255, 255, .52);
    }

    /* Main area */
    .app-main {
      min-height: 100vh;
    }

    /* Mobile top */
    .mobile-topbar {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1040;
      height: 64px;
      background: var(--deep);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 18px;
      box-shadow: 0 8px 24px rgba(7, 31, 25, .28);
    }

    .mobile-topbar .brand i {
      width: 32px;
      height: 32px;
      font-size: 15px;
    }

    .menu-btn {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .1);
      border: 0;
      color: #fff;
      font-size: 19px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .menu-btn:hover {
      background: rgba(255, 255, 255, .18);
    }

    .mobile-overlay {
      position: fixed;
      inset: 0;
      z-index: 1054;
      background: rgba(7, 31, 25, .58);
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s ease, visibility .3s ease;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      z-index: 1055;
      width: min(320px, 84vw);
      background: var(--deep);
      color: #fff;
      padding: 22px 18px;
      transform: translateX(-105%);
      visibility: hidden;
      transition: transform .32s ease, visibility .32s ease;
      overflow-y: auto;
    }

    body.menu-open {
      overflow: hidden;
    }

    body.menu-open .mobile-overlay {
      opacity: 1;
      visibility: visible;
    }

    body.menu-open .mobile-drawer {
      transform: translateX(0);
      visibility: visible;
    }

    .mobile-drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .mobile-drawer .brand {
      padding-left: 0;
    }

    .close-btn {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .08);
      border: 0;
      color: #fff;
      font-size: 17px;
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mobile-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      height: 50px;
      padding: 0 16px;
      border-radius: 14px;
      font-size: 16px;
      font-weight: 500;
      color: rgba(255, 255, 255, .76);
    }

    .mobile-nav a i {
      color: rgba(255, 255, 255, .68);
    }

    .mobile-nav a.active {
      background: rgba(255, 255, 255, .1);
      color: #fff;
      font-weight: 700;
      box-shadow: inset 4px 0 0 var(--orange);
    }

    .mobile-bottom {
      margin-top: 36px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .06);
      padding: 16px;
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
    }

    .mobile-bottom strong {
      color: #fff;
      font-size: 18px;
      display: block;
      margin-top: 4px;
    }

    /* Page banner */
    .race-banner {
      padding: clamp(88px, 16vh, 144px) 0 110px;
      background: linear-gradient(110deg, rgba(7, 31, 25, .98) 0%, rgba(7, 31, 25, .86) 38%, rgba(14, 77, 58, .3) 82%), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .race-banner::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -120px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 176, 32, .2), rgba(255, 255, 255, 0) 62%);
      pointer-events: none;
    }

    .banner-inner {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 0 0 26px;
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, .64);
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .breadcrumb a:hover {
      color: #fff;
    }

    .breadcrumb i {
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
    }

    .breadcrumb span {
      color: rgba(255, 255, 255, .9);
      font-weight: 700;
      font-size: 14px;
    }

    .race-banner h1 {
      font-size: clamp(46px, 7vw, 78px);
      font-weight: 850;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 0 0 18px;
      color: #fff;
    }

    .race-banner .banner-lead {
      font-size: clamp(16px, 2vw, 20px);
      line-height: 1.8;
      color: rgba(255, 255, 255, .82);
      max-width: 650px;
      margin-bottom: 16px;
    }

    .race-banner .banner-note {
      color: rgba(255, 255, 255, .56);
      font-size: 15px;
      max-width: 640px;
    }

    .banner-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    /* Stats strip */
    .stats-strip {
      position: relative;
      z-index: 5;
      margin-top: -52px;
      padding-bottom: calc(clamp(24px, 4vw, 48px));
    }

    .stat-card {
      background: #fff;
      border: 1px solid rgba(14, 77, 58, .16);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      padding: 22px 20px;
      min-height: 118px;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: "";
      position: absolute;
      top: 15px;
      right: 15px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
    }

    .stat-number {
      display: block;
      font-size: clamp(30px, 3vw, 42px);
      font-weight: 850;
      color: var(--pine);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* Intro */
    .intro-block {
      padding-top: 0;
    }

    .intro-media {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      height: 100%;
      min-height: 320px;
    }

    .intro-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .intro-content {
      padding-left: clamp(8px, 3vw, 42px);
    }

    .intro-content .section-title {
      margin-top: 0;
    }

    .check-list {
      list-style: none;
      margin: 28px 0 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .check-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--ink);
      font-size: 15px;
      line-height: 1.7;
    }

    .check-list li i {
      color: var(--orange);
      font-size: 17px;
      margin-top: 4px;
    }

    /* Media card */
    .media-card {
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid rgba(14, 77, 58, .1);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: box-shadow .3s ease, transform .3s ease;
      height: 100%;
    }

    .media-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .media-cover {
      overflow: hidden;
      position: relative;
    }

    .media-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease;
    }

    .media-card:hover .media-cover img {
      transform: scale(1.04);
    }

    .media-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .media-body h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--ink);
      margin: 0 0 12px;
      letter-spacing: -0.01em;
    }

    .media-body p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      margin: 0 0 22px;
      max-width: 560px;
    }

    .media-body .arrow-link {
      margin-top: auto;
    }

    .cover-large {
      min-height: 300px;
    }

    .cover-medium {
      min-height: 170px;
    }

    .stack-2 {
      display: flex;
      flex-direction: column;
      gap: 20px;
      height: 100%;
    }

    .stack-2 .media-card {
      flex: 1 0 auto;
    }

    .card-horizontal {
      display: flex;
      gap: 0;
    }

    .card-horizontal .media-cover {
      width: 40%;
      min-height: 100%;
    }

    .card-horizontal .media-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 15px;
      font-weight: 700;
      color: var(--pine);
    }

    .arrow-link i {
      transition: transform .25s ease;
    }

    .arrow-link:hover {
      color: var(--orange);
    }

    .arrow-link:hover i {
      transform: translateX(6px);
    }

    .dark-card {
      background: linear-gradient(135deg, var(--pine), var(--deep));
      color: #fff;
    }

    .dark-card .media-body h3 {
      color: #fff;
    }

    .dark-card .media-body p {
      color: rgba(255, 255, 255, .76);
    }

    .dark-card .arrow-link {
      color: #fff;
    }

    .dark-card .arrow-link:hover {
      color: var(--gold);
    }

    .tag-box {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .14);
      color: rgba(255, 255, 255, .9);
      padding: 7px 14px;
      font-size: 13px;
      font-weight: 500;
    }

    /* Schedule */
    .event-panel {
      background: #fff;
      border-radius: 26px;
      box-shadow: var(--shadow-card);
      padding: clamp(22px, 3.4vw, 42px);
      margin-top: 18px;
    }

    .schedule-row {
      display: grid;
      grid-template-columns: 86px minmax(0, 1fr) auto;
      gap: 9px 18px;
      align-items: center;
      padding: 22px 4px;
      border-bottom: 1px solid var(--line);
    }

    .schedule-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .schedule-row:first-child {
      padding-top: 0;
    }

    .date-box {
      background: var(--cream);
      border-radius: 16px;
      text-align: center;
      padding: 10px 6px;
      color: var(--pine);
      border: 1px solid rgba(14, 77, 58, .12);
    }

    .date-box span {
      display: block;
    }

    .date-box .dow {
      font-size: 12px;
      color: var(--muted);
    }

    .date-box .dnum {
      font-size: 25px;
      font-weight: 850;
      line-height: 1.2;
    }

    .schedule-main {
      min-width: 0;
    }

    .schedule-main h3 {
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 6px;
      color: var(--ink);
      line-height: 1.4;
    }

    .schedule-main p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    .schedule-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
      align-items: center;
    }

    .rate-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 20px;
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.3;
    }

    .rate-tag i {
      font-size: 8px;
    }

    .rate-open {
      color: var(--pine);
      background: rgba(14, 77, 58, .1);
    }

    .rate-wait {
      color: #8a5b00;
      background: rgba(255, 176, 32, .14);
    }

    .rate-ready {
      color: #a53e00;
      background: rgba(255, 90, 31, .08);
    }

    .schedule-action .btn {
      min-height: 40px;
      padding: 0 18px;
      font-size: 14px;
    }

    /* Process dark section */
    .flow-section {
      background: linear-gradient(120deg, rgba(7, 31, 25, .98), rgba(14, 77, 58, .88)), url('/assets/images/backpic/back-3.png') center/cover no-repeat;
      color: #fff;
    }

    .flow-section::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .02) 0 28px, transparent 28px 44px);
    }

    .flow-wrap {
      position: relative;
      z-index: 3;
    }

    .process-card {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 24px;
      padding: 26px 24px;
      height: 100%;
      backdrop-filter: blur(4px);
      transition: background .3s ease, border-color .3s ease, transform .3s ease;
    }

    .process-card:hover {
      background: rgba(255, 255, 255, .14);
      border-color: rgba(255, 255, 255, .28);
      transform: translateY(-4px);
    }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--gold), var(--orange));
      color: #fff;
      font-size: 24px;
      font-weight: 850;
      margin-bottom: 20px;
      box-shadow: 0 10px 24px rgba(255, 176, 32, .24);
    }

    .process-card h3 {
      color: #fff;
      font-size: 19px;
      font-weight: 800;
      margin: 0 0 12px;
    }

    .process-card p {
      color: rgba(255, 255, 255, .76);
      font-size: 15px;
      line-height: 1.8;
      margin: 0;
    }

    /* Callout scene */
    .scene-card {
      background: #fff;
      border-radius: 24px;
      padding: clamp(28px, 5vw, 44px);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .scene-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      font-size: 22px;
      color: #fff;
      background: linear-gradient(135deg, var(--pine), var(--deep));
      margin-bottom: 18px;
    }

    .scene-card h3 {
      font-size: 22px;
      font-weight: 800;
      margin: 0 0 12px;
    }

    .scene-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
      margin: 0;
    }

    .scene-card ul {
      list-style: none;
      margin: 18px 0 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .scene-card ul li {
      position: relative;
      padding-left: 20px;
      color: var(--ink);
      font-size: 14px;
    }

    .scene-card ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 9px;
      height: 9px;
      border-radius: 2px;
      background: var(--orange);
    }

    /* CTA */
    .cta-band {
      background: linear-gradient(100deg, rgba(7, 31, 25, .99), rgba(14, 77, 58, .86)), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      border-radius: 28px;
      padding: clamp(44px, 6vw, 68px);
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
      overflow: hidden;
    }

    .cta-band::after {
      content: "";
      position: absolute;
      top: -60px;
      right: 30px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255, 176, 32, .16);
      filter: blur(2px);
    }

    .cta-copy {
      max-width: 620px;
    }

    .cta-band .tag-box {
      background: rgba(255, 255, 255, .12);
    }

    .cta-band h2,
    .cta-band h3 {
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.25;
      font-weight: 850;
      color: #fff;
      margin: 16px 0 10px;
    }

    .cta-band p {
      color: rgba(255, 255, 255, .76);
      font-size: 15px;
      margin: 0;
      line-height: 1.8;
    }

    .cta-button {
      position: relative;
      z-index: 3;
    }

    /* FAQ */
    .faq-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(28px, 4vw, 70px);
    }

    .faq-intro {
      max-width: 400px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 20px 22px;
      box-shadow: var(--shadow-card);
      transition: border-color .3s ease, box-shadow .3s ease;
    }

    .faq-item[open] {
      border-color: var(--pine);
      box-shadow: var(--shadow-hover);
    }

    .faq-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      cursor: pointer;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "\f078";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--pine);
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(14, 77, 58, .08);
      font-size: 13px;
      flex: 0 0 auto;
      transition: transform .3s ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(180deg);
    }

    .faq-item .faq-answer {
      padding-top: 14px;
      border-top: 1px dashed var(--line);
      margin-top: 14px;
      color: var(--muted);
      line-height: 1.85;
      font-size: 15px;
    }

    .faq-item .faq-answer a {
      color: var(--pine);
      font-weight: 700;
      border-bottom: 1px solid rgba(14, 77, 58, .3);
    }

    /* Footer */
    .site-footer {
      background: var(--deep);
      color: #fff;
      padding: clamp(52px, 8vw, 80px) 0 30px;
      margin-top: 20px;
    }

    .footer-top {
      padding-bottom: 44px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 22px;
      font-weight: 850;
      color: #fff;
    }

    .footer-brand i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: var(--orange);
      color: #fff;
      font-size: 19px;
    }

    .footer-about {
      color: rgba(255, 255, 255, .58);
      font-size: 15px;
      line-height: 1.8;
      max-width: 320px;
      margin-top: 16px;
    }

    .footer-title {
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      margin: 4px 0 18px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .62);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255, 255, 255, .62);
      font-size: 14px;
      margin-bottom: 14px;
    }

    .footer-contact-item i {
      color: var(--orange);
      margin-top: 4px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .12);
      padding-top: 25px;
      color: rgba(255, 255, 255, .46);
      font-size: 14px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Utilities */
    .mb-0 {
      margin-bottom: 0;
    }

    .mt-1 {
      margin-top: .25rem;
    }

    .mt-2 {
      margin-top: .5rem;
    }

    .mt-3 {
      margin-top: 1rem;
    }

    .mt-4 {
      margin-top: 1.5rem;
    }

    .mt-5 {
      margin-top: 2.5rem;
    }

    /* Breakpoints */
    @media (min-width: 992px) {
      .app-main {
        margin-left: var(--sidebar-width);
      }
      .app-sidebar {
        display: flex;
      }
      .mobile-topbar {
        display: none;
      }
      .faq-wrap {
        grid-template-columns: 0.75fr 1.35fr;
      }
    }

    @media (max-width: 991.98px) {
      .intro-content {
        padding-left: 0;
        margin-top: 28px;
      }
      .schedule-row {
        grid-template-columns: 70px minmax(0, 1fr);
      }
      .schedule-action {
        grid-column: 1 / -1;
        text-align: right;
      }
      .schedule-action .btn {
        width: 100%;
        justify-content: center;
      }
      .race-banner {
        min-height: 560px;
      }
    }

    @media (max-width: 767.98px) {
      :root {
        --space-section: 64px;
      }
      .mobile-topbar {
        height: 60px;
      }
      .race-banner {
        padding: 70px 0 88px;
      }
      .race-banner h1 {
        font-size: 40px;
        letter-spacing: -0.01em;
      }
      .breadcrumb {
        margin-bottom: 18px;
      }
      .banner-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .banner-actions .btn {
        width: 100%;
      }
      .section-title {
        font-size: 28px;
      }
      .stat-card {
        min-height: 96px;
      }
      .media-body h3 {
        font-size: 19px;
      }
      .card-horizontal {
        flex-direction: column;
      }
      .card-horizontal .media-cover {
        width: 100%;
        min-height: 200px;
      }
      .stack-2 {
        gap: 14px;
      }
      .cta-band {
        border-radius: 20px;
        padding: 32px 22px;
      }
      .btn {
        min-height: 48px;
        width: 100%;
        justify-content: center;
      }
      .site-footer {
        padding-top: 52px;
      }
    }

    @media (max-width: 575.98px) {
      .content-wrap {
        padding-left: 18px;
        padding-right: 18px;
      }
      .breadcrumb {
        gap: 6px;
      }
      .breadcrumb a,
      .breadcrumb span {
        font-size: 13px;
      }
      .schedule-row {
        grid-template-columns: 1fr;
      }
      .schedule-main p {
        font-size: 14px;
      }
      .schedule-meta {
        gap: 6px;
      }
      .schedule-action {
        text-align: left;
      }
      .process-card {
        padding: 22px 18px;
      }
      .faq-item summary {
        font-size: 16px;
      }
    }

    @media (max-width: 991.98px) {
      .mobile-drawer {
        width: min(340px, 88vw);
      }
    }

/* roulang page: category2 */
:root {
  --primary: #0E4D3A;
  --dark-green: #071F19;
  --orange: #FF5A1F;
  --orange-light: #FF7A00;
  --gold: #FFB020;
  --warm-bg: #F7F5EF;
  --card-bg: #FFFFFF;
  --ink: #16231F;
  --muted: #667A72;
  --line: #E3E8E1;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --radius-xs: 10px;
  --shadow-sm: 0 6px 24px rgba(7,31,25,.06);
  --shadow-hover: 0 18px 44px rgba(7,31,25,.14);
  --shadow-orange: 0 10px 22px rgba(255,90,31,.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--warm-bg);
  color: var(--ink);
  line-height: 1.85;
  font-variant-numeric: tabular-nums;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--orange);
}

button, input {
  font: inherit;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

.container-custom, .content-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

/* ====== sidebar ====== */
.app-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 248px;
  z-index: 1050;
  background: linear-gradient(180deg, #0E3D2F 0%, var(--dark-green) 100%);
  display: flex;
  flex-direction: column;
  padding: 28px 20px 24px;
  color: #fff;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
  padding: 6px 8px 26px;
}

.sidebar-brand i {
  font-size: 26px;
  color: var(--gold);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  min-height: 48px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 500;
  border-radius: 14px;
  transition: background .2s ease, color .2s ease;
  position: relative;
  background: transparent;
}

.sidebar-link i {
  width: 22px;
  text-align: center;
  font-size: 17px;
}

.sidebar-link:hover {
  background: rgba(255,255,255,.09);
  color: #fff;
}

.sidebar-link.active {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.sidebar-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--orange);
  border-radius: 0 8px 8px 0;
}

.sidebar-aside {
  padding: 12px 4px 0;
}

.sidebar-mini-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-card-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.mini-card-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.mini-card-link {
  color: var(--gold);
  font-size: 14px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mini-card-link i {
  font-size: 14px;
}

.mini-card-link:hover {
  color: #fff;
}

/* mobile header */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--dark-green);
  z-index: 1040;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.mobile-brand i {
  color: var(--gold);
}

.menu-toggle {
  background: rgba(255,255,255,.14);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.menu-toggle:hover {
  background: rgba(255,255,255,.25);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,31,25,.55);
  z-index: 1080;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  background: var(--dark-green);
  z-index: 1090;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  transform: translateX(-110%);
  transition: transform .32s ease;
}

.drawer-menu.open {
  transform: translateX(0);
}

.drawer-close {
  background: rgba(255,255,255,.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  position: absolute;
  top: 18px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 22px;
}

.drawer-brand i {
  color: var(--gold);
}

.drawer-menu .sidebar-nav {
  flex-direction: column;
}

.drawer-menu .sidebar-link {
  color: rgba(255,255,255,.8);
}

.drawer-menu .sidebar-link.active {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.drawer-foot {
  margin-top: auto;
  padding: 20px 0 10px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.drawer-foot a {
  color: var(--gold);
}

/* main wrapper */
.main-wrap {
  margin-left: 248px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

/* ====== category hero ====== */
.category-hero {
  position: relative;
  background: linear-gradient(110deg, rgba(7,31,25,.92) 0%, rgba(14,77,58,.82) 55%, rgba(14,77,58,.45) 100%), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  color: #fff;
}

.category-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark-green) 0%, rgba(7,31,25,.7) 50%, transparent 100%);
}

.category-hero .content-wrap {
  position: relative;
  z-index: 2;
}

.eyebrow-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(255,255,255,.14);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--gold);
  margin-bottom: 20px;
}

.category-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-lead {
  color: rgba(255,255,255,.85);
  max-width: 620px;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.btn-solid, .btn-glass, .btn-outline-dark, .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: all .25s ease;
  white-space: nowrap;
  justify-content: center;
}

.btn-solid {
  background: linear-gradient(90deg, var(--orange-light), #FF4D00);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-solid:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255,90,31,.35);
}

.btn-solid i {
  font-size: 14px;
  transition: transform .2s;
}

.btn-solid:hover i {
  transform: translateX(3px);
}

.btn-glass {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}

.btn-glass:hover {
  background: rgba(255,255,255,.24);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-dark-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(4px);
}

.hero-meta-item .meta-num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero-meta-item .meta-label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* ====== intro ====== */
.intro-block {
  padding: clamp(64px, 9vw, 100px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sec-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 14px;
}

.intro-text h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
}

.intro-text p {
  color: var(--muted);
  font-size: 16px;
  max-width: 580px;
  margin-bottom: 24px;
}

.intro-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
}

.intro-list-item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
}

.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(255,255,255,.92);
  color: var(--dark-green);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-badge i {
  color: var(--orange);
}

/* ====== training programs ====== */
.section-title-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.section-title-block h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
}

.section-title-note {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
}

.programs-section {
  background: var(--warm-bg);
  padding: clamp(60px, 9vw, 100px) 0;
}

.program-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: box-shadow .35s ease, transform .35s ease;
}

.program-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.program-card .card-media {
  overflow: hidden;
  position: relative;
}

.program-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.program-card:hover .card-media img {
  transform: scale(1.04);
}

.program-card .card-media .media-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(255,90,31,.95);
  color: #fff;
  font-size: 13px;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
}

.program-card .card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.program-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 4px;
}

.program-card .card-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 12px;
  flex: 1;
}

.program-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--primary);
  font-weight: 600;
}

.program-card .card-link i {
  transition: transform .2s;
}

.program-card .card-link:hover i {
  transform: translateX(4px);
}

/* grid: custom heights */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.program-grid .program-card.wide-col {
  grid-column: span 2;
}

.program-grid .program-card.tall-row {
  grid-row: span 2;
}

.program-grid .program-card.full-row {
  grid-column: span 4;
}

.program-card .card-media {
  height: auto;
  flex: 1;
}

.program-card.wide-col .card-media {
  min-height: 170px;
  max-height: 230px;
}

.program-card.tall-row .card-media {
  min-height: 190px;
}

.program-card.tall-row .card-body {
  padding: 14px 18px 18px;
}

.program-card.tall-row .card-body h3 {
  font-size: 18px;
}

.program-card.tall-row .card-desc {
  font-size: 13px;
}

.program-card.tall-row .card-link {
  font-size: 13px;
}

/* ====== service section ====== */
.service-section {
  background: #fff;
  padding: clamp(64px, 9vw, 104px) 0;
}

.service-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.service-copy h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 18px;
}

.service-copy .section-desc {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(247,245,239,.8);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  transition: box-shadow .25s, transform .25s;
}

.service-point i {
  font-size: 22px;
  color: var(--orange);
  background: rgba(255,90,31,.12);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-point .sp-text h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-point .sp-text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.service-image {
  position: relative;
}

.service-image img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 480px;
}

/* ====== path / timelime ====== */
.path-section {
  background: var(--dark-green);
  padding: clamp(64px, 9vw, 104px) 0;
  color: #fff;
}

.path-section h2 {
  color: #fff;
}

.path-section .section-title-note {
  color: rgba(255,255,255,.65);
}

.path-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.path-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  position: relative;
  transition: background .3s ease, transform .3s ease;
}

.path-step:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-4px);
}

.path-step .step-num {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--orange-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 17px;
  margin-bottom: 20px;
}

.path-step .path-time {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}

.path-step h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 6px;
}

.path-step p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ====== hot courses ====== */
.courses-section {
  background: var(--warm-bg);
  padding: clamp(60px, 9vw, 100px) 0;
}

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-row {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 0;
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}

.course-row:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.course-row .course-pic {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.course-row .course-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.course-row .course-pic .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.92);
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--dark-green);
  font-weight: 600;
}

.course-row .course-pic .tag.green {
  background: rgba(14,77,58,.92);
  color: #fff;
}

.course-row .course-info {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.course-info h3 {
  font-size: 21px;
  font-weight: 800;
}

.course-info .course-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.course-meta i {
  color: var(--primary);
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.course-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 32px;
  background: var(--warm-bg);
  border-left: 1px solid var(--line);
}

.course-action .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.course-action .status::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2FA84F;
  border-radius: 50%;
}

.course-action .status.warn {
  color: var(--orange);
}

.course-action .status.warn::before {
  background: var(--orange);
}

.course-action .btn-outline-dark {
  height: 44px;
  padding: 0 22px;
}

/* ====== FAQ ====== */
.faq-section {
  background: #fff;
  padding: clamp(64px, 9vw, 100px) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.6fr;
  gap: 50px;
}

.faq-left h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
}

.faq-left p {
  color: var(--muted);
  font-size: 15px;
  max-width: 360px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--warm-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-q i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a-inner {
  padding-top: 12px;
  border-top: 1px solid rgba(7,31,25,.1);
  margin-top: 12px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.85;
}

/* ====== cta band ====== */
.cta-band {
  background: linear-gradient(120deg, var(--dark-green), #0B3A2E 60%, #0E4D3A);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,176,32,.25), transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.cta-inner h3 {
  color: #fff;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  max-width: 460px;
  margin-bottom: 10px;
}

.cta-inner p {
  color: rgba(255,255,255,.75);
  font-size: 15px;
}

.cta-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn-group .btn-solid {
  height: 52px;
  padding: 0 32px;
}

.cta-btn-group .btn-glass {
  height: 52px;
  padding: 0 30px;
}

/* ====== footer ====== */
.site-footer {
  background: var(--dark-green);
  color: rgba(255,255,255,.7);
  padding: 50px 0 30px;
}

.footer-top {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 32px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand i {
  color: var(--gold);
}

.footer-about {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  max-width: 300px;
  margin: 0;
}

.footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}

.footer-bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.footer-bottom a {
  color: rgba(255,255,255,.35);
}

/* ====== responsive ====== */
@media (max-width: 1399.98px) {
  .content-wrap {
    max-width: 1200px;
  }
}

@media (max-width: 1199.98px) {
  .program-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
  }

  .program-grid .program-card.wide-col {
    grid-column: span 3;
  }

  .program-grid .program-card.tall-row {
    grid-row: auto;
  }
}

@media (max-width: 991.98px) {
  .app-sidebar {
    display: none;
  }

  .main-wrap {
    margin-left: 0;
  }

  .mobile-header {
    display: flex;
  }

  .site-main {
    padding-top: 0;
  }

  .category-hero {
    min-height: 480px;
    padding-top: 100px;
  }

  .intro-grid, .service-wrap, .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .program-grid .program-card.wide-col {
    grid-column: span 2;
  }

  .program-grid .program-card.tall-row {
    grid-row: auto;
  }

  .path-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-row {
    grid-template-columns: 250px 1fr;
  }

  .course-action {
    grid-column: 1 / -1;
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 16px 20px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .content-wrap {
    padding: 0 20px;
  }

  .mobile-header {
    height: 60px;
  }

  .category-hero {
    min-height: auto;
    padding: 92px 0 52px;
  }

  .category-hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-solid, .btn-glass {
    width: 100%;
  }

  .hero-meta-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-meta-item {
    padding: 10px 12px;
    text-align: center;
  }

  .hero-meta-item .meta-num {
    font-size: 20px;
  }

  .intro-grid {
    gap: 32px;
  }

  .intro-image img {
    height: 300px;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .program-grid .program-card.wide-col {
    grid-column: span 1;
  }

  .program-card .card-media img {
    height: auto;
  }

  .service-image img {
    height: 320px;
  }

  .path-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .course-row {
    grid-template-columns: 1fr;
  }

  .course-row .course-pic {
    min-height: 190px;
    position: relative;
  }

  .course-row .course-pic img {
    position: relative;
    height: 190px;
  }

  .course-row .course-info {
    padding: 20px;
  }

  .course-action {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-left {
    margin-bottom: 10px;
  }
}

@media (max-width: 420px) {
  .hero-meta-strip {
    grid-template-columns: 1fr 1fr;
  }

  .category-hero h1 {
    font-size: 36px;
  }

  .cta-btn-group .btn-solid, .cta-btn-group .btn-glass {
    width: 100%;
  }
}
