:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-2: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #f7f9fb;
  --card: var(--surface);
  --card-2: var(--surface-2);
  --border: #e5e9ef;
  --text: #1c2430;
  --muted: #55616f;
  --muted-2: #768394;
  --brand: #2b73d2;
  --brand-2: #1e5fb7;
  --success: #2ea44f;
  --nav-bg: #ffffff;
  --nav-border: #e5e9ef;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC",
    "Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  width: auto;
  height: 36px;
  max-width: 220px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 640px) {
  .brand__logo {
    height: 32px;
    max-width: 180px;
  }
}

.brand__text {
  font-weight: 650;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(28, 36, 48, 0.9);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.2px;
}

.nav__link:hover {
  background: rgba(15, 23, 42, 0.04);
}

.nav__link--active {
  color: var(--brand);
  background: rgba(43, 115, 210, 0.08);
}

.nav__sep {
  width: 1px;
  height: 22px;
  background: var(--border);
  border-radius: 999px;
  margin: 0 4px;
}

.hero {
  padding: 46px 0 24px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.hero__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: 0.2px;
}

.hero__lead {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.hero__subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 56ch;
}

.hero__cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__media {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.badges {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 10px 12px;
  transition: transform 120ms ease, background 120ms ease;
}

.badge:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
}

.badge img {
  height: 34px;
  width: auto;
}

.badge--store {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.badge--store:hover {
  background: transparent;
  transform: none;
}

.badge--store img {
  height: 34px;
  border-radius: 6px;
}

.hero__links {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 650;
}

.hero__link:hover {
  color: var(--brand);
}

.btn--outline {
  background: var(--surface);
  border-color: var(--brand);
  color: var(--brand);
}

.btn--outline:hover {
  background: rgba(43, 115, 210, 0.06);
  border-color: var(--brand-2);
  color: var(--brand-2);
}

.btn--lg {
  padding: 11px 16px;
}

.btn--cta {
  min-width: 220px;
  font-size: 16px;
  padding: 14px 28px;
}

.section {
  padding: 42px 0;
}

.section--alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.2px;
}

.section__desc {
  margin: 0;
  color: var(--muted);
}

.section__desc + .section__desc {
  margin-top: 2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.card__head {
  padding: 16px 16px 10px;
}

.card__title {
  margin: 0;
  font-size: 16px;
}

.card__desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.card__media {
  padding: 12px 16px 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__media img {
  max-height: 118px;
  width: auto;
  opacity: 0.95;
  border-radius: 12px;
}

.card__actions {
  padding: 14px 16px 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel__title {
  margin: 0;
  font-size: 18px;
}

.panel__desc {
  margin: 8px 0 0;
  color: var(--muted);
}

.panel__media {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.panel__media img {
  width: 100%;
  height: auto;
  display: block;
}

.panel__actions {
  margin-top: 14px;
}

.panel__actions--row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 650;
  font-size: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.btn .btn__icon {
  margin-right: 8px;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
  border-color: rgba(28, 36, 48, 0.18);
}

.btn--primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--brand-2);
}

.btn--ghost {
  background: transparent;
}

.btn--block {
  width: 100%;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 12px 14px;
}

.faq__q {
  cursor: pointer;
  font-weight: 650;
  color: var(--text);
}

.faq__a {
  margin-top: 10px;
  color: var(--muted);
}

.t-slider {
  position: relative;
}

.t-slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.t-slider__controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.t-slider__track {
  --t-gap: 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--t-gap) * 2)) / 3);
  gap: var(--t-gap);
  overflow-x: auto;
  padding: 8px 2px 12px;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  -webkit-overflow-scrolling: touch;
}

.t-slider__track {
  scrollbar-width: none;
}

.t-slider[data-marquee] .t-slider__track {
  scroll-snap-type: none;
}

.t-slider[data-marquee] .t-slider__track {
  scroll-behavior: auto;
}

@media (max-width: 980px) {
  .t-slider__track {
    grid-auto-columns: calc((100% - var(--t-gap)) / 2);
  }
}

@media (max-width: 640px) {
  .t-slider__track {
    grid-auto-columns: 100%;
  }
}

.t-slider__track::-webkit-scrollbar {
  display: none;
}

.t-slider__track::-webkit-scrollbar-thumb {
  background: rgba(28, 36, 48, 0.14);
  border-radius: 999px;
}

.t-card {
  scroll-snap-align: start;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 20px 20px 18px;
  display: grid;
  gap: 14px;
}

.t-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: block;
  border: 1px solid rgba(28, 36, 48, 0.14);
  background: rgba(255, 255, 255, 0.65);
}

.t-meta {
  display: grid;
  gap: 2px;
}

.t-name {
  font-weight: 750;
  color: var(--text);
  line-height: 1.2;
}

.t-role {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.t-quote {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-stars {
  display: inline-flex;
  gap: 4px;
  color: rgba(255, 184, 0, 0.92);
}

.t-stars svg {
  width: 14px;
  height: 14px;
  display: block;
}

.t-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted-2);
  font-size: 12px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  color: var(--muted-2);
}

.footer {
  padding: 56px 0 48px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #f8fbff, var(--bg-2));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer__brandIcon {
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.footer__brandIcon svg {
  width: auto;
  height: auto;
  max-width: 220px;
  display: block;
}

.footer__brandIcon img {
  width: auto;
  height: auto;
  max-width: 220px;
  display: block;
}

.footer__title {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.footer__sub {
  color: var(--muted-2);
  font-size: 13px;
  margin-top: 2px;
}

.footer__social {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.footer__socialTitle {
  font-weight: 800;
  color: var(--text);
}

.footer__socialLinks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
  border-color: rgba(28, 36, 48, 0.18);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.bi-facebook {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.6 21v-7.7h2.6l.4-3h-3v-2c0-.9.3-1.6 1.6-1.6h1.6V4c-.3 0-1.4-.1-2.6-.1-2.6 0-4.4 1.6-4.4 4.6v1.8H7.2v3h2.6V21h3.8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.6 21v-7.7h2.6l.4-3h-3v-2c0-.9.3-1.6 1.6-1.6h1.6V4c-.3 0-1.4-.1-2.6-.1-2.6 0-4.4 1.6-4.4 4.6v1.8H7.2v3h2.6V21h3.8Z'/%3E%3C/svg%3E");
}

.bi-twitter-x {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18.8 3H21l-6.6 7.6L22 21h-6l-4.7-6.2L5.9 21H3l7.1-8.2L2 3h6.2l4.2 5.5L18.8 3Zm-2 16h1.2L7.1 4.9H5.8L16.8 19Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18.8 3H21l-6.6 7.6L22 21h-6l-4.7-6.2L5.9 21H3l7.1-8.2L2 3h6.2l4.2 5.5L18.8 3Zm-2 16h1.2L7.1 4.9H5.8L16.8 19Z'/%3E%3C/svg%3E");
}

.bi-instagram {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9A5.5 5.5 0 0 1 16.5 22h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2Zm0 2A3.5 3.5 0 0 0 4 7.5v9A3.5 3.5 0 0 0 7.5 20h9a3.5 3.5 0 0 0 3.5-3.5v-9A3.5 3.5 0 0 0 16.5 4h-9Zm10.2 1.6a.9.9 0 1 1 0 1.8.9.9 0 0 1 0-1.8ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9A5.5 5.5 0 0 1 16.5 22h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2Zm0 2A3.5 3.5 0 0 0 4 7.5v9A3.5 3.5 0 0 0 7.5 20h9a3.5 3.5 0 0 0 3.5-3.5v-9A3.5 3.5 0 0 0 16.5 4h-9Zm10.2 1.6a.9.9 0 1 1 0 1.8.9.9 0 0 1 0-1.8ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

.bi-youtube {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M21.6 7.1a3 3 0 0 0-2.1-2.1C17.7 4.5 12 4.5 12 4.5s-5.7 0-7.5.5A3 3 0 0 0 2.4 7.1 31 31 0 0 0 2 12c0 1.6.1 3.3.4 4.9a3 3 0 0 0 2.1 2.1c1.8.5 7.5.5 7.5.5s5.7 0 7.5-.5a3 3 0 0 0 2.1-2.1c.3-1.6.4-3.3.4-4.9s-.1-3.3-.4-4.9ZM10.3 15.3V8.7L16 12l-5.7 3.3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M21.6 7.1a3 3 0 0 0-2.1-2.1C17.7 4.5 12 4.5 12 4.5s-5.7 0-7.5.5A3 3 0 0 0 2.4 7.1 31 31 0 0 0 2 12c0 1.6.1 3.3.4 4.9a3 3 0 0 0 2.1 2.1c1.8.5 7.5.5 7.5.5s5.7 0 7.5-.5a3 3 0 0 0 2.1-2.1c.3-1.6.4-3.3.4-4.9s-.1-3.3-.4-4.9ZM10.3 15.3V8.7L16 12l-5.7 3.3Z'/%3E%3C/svg%3E");
}

.footer-social-icon--facebook {
  color: #1877f2;
}

.footer-social-icon--x {
  color: #0f1419;
}

.footer-social-icon--youtube {
  color: #ff0000;
}

.footer-social-icon--instagram {
  background: radial-gradient(circle at 30% 30%, #ffd776 0%, #f56040 28%, #bc2a8d 55%, #405de6 100%);
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: rgba(28, 36, 48, 0.9);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.social-btn--facebook {
  color: #1877f2;
}

.social-btn--x {
  color: #0f1419;
}

.social-btn--ig {
  background: radial-gradient(circle at 30% 30%, #ffd776 0%, #f56040 28%, #bc2a8d 55%, #405de6 100%);
  border-color: transparent;
  color: #fff;
}

.social-btn--yt {
  background: #ff0000;
  border-color: transparent;
  color: #fff;
}

.social-btn:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
  border-color: rgba(28, 36, 48, 0.18);
}

.social-btn--ig:hover,
.social-btn--yt:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
  border-color: rgba(28, 36, 48, 0.18);
  color: #fff;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer__colTitle {
  font-weight: 850;
  color: var(--text);
  margin: 6px 0 10px;
}

.footer__colLinks {
  display: grid;
  gap: 10px;
}

.footer__colLink {
  color: var(--muted);
  font-weight: 650;
}

.footer__colLink:hover {
  color: var(--brand);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
}

.feature__k {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(43, 115, 210, 0.22);
}

.feature__img {
  height: 86px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature__v {
  position: absolute;
  top: 48px;
  left: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0;
  font-size: 12px;
  font-weight: 850;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffb703;
  color: #1c2430;
  box-shadow: 0 10px 24px rgba(255, 183, 3, 0.22);
}

.feature__d {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.news__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(43, 115, 210, 0.1);
  border: 1px solid rgba(43, 115, 210, 0.25);
  color: rgba(28, 36, 48, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.news__title {
  font-weight: 750;
  letter-spacing: 0.2px;
}

.news__desc {
  color: var(--muted);
  font-size: 13px;
}

.news__link {
  margin-top: 6px;
  display: inline-flex;
  align-self: flex-start;
  color: rgba(28, 36, 48, 0.92);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.news__link:hover {
  background: var(--surface-2);
}

.news-more {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.news-more--between {
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.news-more--between .section__desc {
  margin: 0;
}

.news-more--pager {
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.news-more--pager .page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 650;
  font-size: 14px;
  border: 1px solid var(--brand);
  background: var(--surface);
  color: var(--brand);
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
  text-decoration: none;
}

.news-more--pager .page-num:hover {
  transform: translateY(-1px);
  background: rgba(43, 115, 210, 0.06);
  border-color: var(--brand-2);
  color: var(--brand-2);
}

.news-more--pager .page-num-current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.news-more--pager .page-num-current:hover {
  transform: translateY(-1px);
  background: var(--brand-2);
  border-color: var(--brand-2);
  color: #fff;
}

.cta {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(43, 115, 210, 0.08), var(--surface));
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta__title {
  font-size: 18px;
  font-weight: 750;
}

.cta__desc {
  margin-top: 6px;
  color: var(--muted);
}

.cta__right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 34px 0 18px;
}

.page-hero__inner {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(43, 115, 210, 0.08), var(--surface));
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.page-hero__title {
  margin: 0;
  font-size: 28px;
  font-weight: 780;
}

.page-hero__desc {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.page-hero__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.prose {
  color: rgba(28, 36, 48, 0.92);
}

.prose p {
  margin: 0 0 12px;
  color: var(--muted);
}

.prose h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.prose h4 {
  margin: 16px 0 10px;
  font-size: 15px;
  color: rgba(28, 36, 48, 0.92);
}

.prose ul,
.prose ol {
  margin: 0 0 14px 18px;
  color: var(--muted);
}

.prose li {
  margin: 6px 0;
}

.list-cols {
  columns: 2;
  column-gap: 26px;
}

.list-cols li {
  break-inside: avoid;
}

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.box {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
}

.box__img {
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-bottom: 12px;
}

.box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.box__title {
  margin: 0;
  font-size: 16px;
  font-weight: 760;
}

.box__desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.table th,
.table td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.table th {
  text-align: left;
  color: rgba(28, 36, 48, 0.92);
  background: var(--surface-2);
  font-weight: 750;
}

.table tr:last-child td {
  border-bottom: 0;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: rgba(28, 36, 48, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.post {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.post__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.post__date {
  color: rgba(28, 36, 48, 0.6);
  font-size: 12px;
  font-weight: 650;
}

.post__title {
  font-weight: 780;
  letter-spacing: 0.2px;
}

.post__desc {
  color: var(--muted);
  font-size: 13px;
}

.post__link {
  margin-top: 6px;
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 720;
}

.post__link:hover {
  background: var(--surface-2);
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .page-hero__inner {
    grid-template-columns: 1fr;
  }
  .cols {
    grid-template-columns: 1fr;
  }
  .post-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .list-cols {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .badge img {
    height: 30px;
  }
  .panel__actions--row {
    flex-direction: column;
    align-items: stretch;
  }
  .panel__actions--row .btn {
    width: 100%;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brandIcon svg,
  .footer__brandIcon img {
    max-width: 180px;
  }
}
