/**
 * 中状教育 PC 首页 — 年轻化配色 + 公考转化模块
 */
:root {
  --zz-red: #e60012;
  --zz-coral: #ff5a6d;
  --zz-violet: #8b5cf6;
  --zz-cyan: #22d3ee;
  --zz-pink: #ec4899;
  --zz-red-2: #b8000e;
  --zz-soft: rgba(139, 92, 246, 0.1);
  --zz-soft-2: rgba(255, 90, 109, 0.1);
  --zz-ink: #0f172a;
  --zz-muted: #64748b;
  --zz-line: #e2e8f0;
  --zz-bg: #f4f7ff;
  --zz-card: #fff;
  --zz-r: 16px;
  --zz-r-lg: 20px;
  --zz-sh: 0 16px 48px rgba(99, 102, 241, 0.1);
  --zz-sh-soft: 0 8px 32px rgba(99, 102, 241, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
  --zz-t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --zz-grad: linear-gradient(135deg, var(--zz-violet) 0%, var(--zz-coral) 55%, var(--zz-pink) 100%);
  --zz-content-max: 1280px;
  --zz-content-pad: 24px;
}

.zz-home {
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(139, 92, 246, 0.12), transparent),
    radial-gradient(ellipse 80% 50% at 100% 40%, rgba(34, 211, 238, 0.08), transparent), var(--zz-bg);
  color: var(--zz-ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.zz-main {
  padding-bottom: 100px;
}

.zz-wrap {
  width: 100%;
  max-width: var(--zz-content-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--zz-content-pad);
  box-sizing: border-box;
}

/* —— 轮播（全宽） —— */
.zz-hero {
  position: relative;
  background: linear-gradient(180deg, #fafbff 0%, #fff5f7 100%);
  padding-bottom: 12px;
}

.zz-hero__banner {
  max-width: 1920px;
  min-width: 1200px;
  height: 460px;
  margin: 0 auto;
}

.zz-hero__slide,
.zz-home .bannerItem {
  display: block;
  width: 100%;
  height: 460px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  outline: none;
}

.zz-banner-arrow,
.zz-home .zz-banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.45);
  border-radius: 8px;
  transition: background var(--zz-t);
}

.zz-banner-arrow:hover,
.zz-home .zz-banner-arrow:hover {
  background: linear-gradient(135deg, var(--zz-violet), var(--zz-coral));
}

.zz-banner-arrow--prev {
  left: max(24px, calc(50% - 620px));
  transform: translateY(-50%) scale(-1, 1);
}

.zz-banner-arrow--next {
  right: max(24px, calc(50% - 620px));
}

.zz-banner-dots,
.zz-home .zz-banner-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.zz-banner-dots li,
.zz-home .zz-banner-dots li {
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}

.zz-banner-dots button,
.zz-home .zz-banner-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0;
  cursor: pointer;
  color: transparent;
}

.zz-banner-dots .slick-active button,
.zz-home .zz-banner-dots .slick-active button {
  width: 26px;
  background: #fff;
}

/* —— 信任条（勿负 margin 压住 .zz-youth-line；可与轮播底缘轻微衔接） —— */
.zz-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 6px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .zz-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
  }
}

.zz-trust__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
  backdrop-filter: blur(12px);
  border-radius: var(--zz-r-lg);
  padding: 22px 22px 24px;
  box-shadow: var(--zz-sh-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: transform var(--zz-t), box-shadow var(--zz-t), border-color var(--zz-t);
  overflow: hidden;
}

.zz-trust__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--zz-r-lg) var(--zz-r-lg) 0 0;
  opacity: 0.85;
}

.zz-trust__item:nth-child(1)::before {
  background: linear-gradient(90deg, var(--zz-violet), #a78bfa);
}

.zz-trust__item:nth-child(2)::before {
  background: linear-gradient(90deg, var(--zz-coral), #fb7185);
}

.zz-trust__item:nth-child(3)::before {
  background: linear-gradient(90deg, var(--zz-cyan), #38bdf8);
}

.zz-trust__item:nth-child(4)::before {
  background: linear-gradient(90deg, var(--zz-pink), #f472b6);
}

.zz-trust__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(139, 92, 246, 0.14), 0 8px 24px rgba(15, 23, 42, 0.06);
  border-color: rgba(139, 92, 246, 0.22);
}

.zz-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(255, 90, 109, 0.06));
  margin-bottom: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.zz-ico--book {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b5cf6' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E"),
    linear-gradient(145deg, rgba(139, 92, 246, 0.14), rgba(167, 139, 250, 0.06));
}

.zz-ico--target {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ff5a6d' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E"),
    linear-gradient(145deg, rgba(255, 90, 109, 0.14), rgba(251, 113, 133, 0.06));
}

.zz-ico--users {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2322d3ee' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3C/svg%3E"),
    linear-gradient(145deg, rgba(34, 211, 238, 0.14), rgba(56, 189, 248, 0.06));
}

.zz-ico--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ec4899' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"),
    linear-gradient(145deg, rgba(236, 72, 153, 0.14), rgba(244, 114, 182, 0.06));
}

.zz-trust__t {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--zz-ink);
  line-height: 1.35;
}

.zz-trust__d {
  margin: 0;
  flex: 1;
  font-size: 13px;
  color: var(--zz-muted);
  line-height: 1.65;
  min-height: 3.3em;
}

/* —— CTA —— */
.zz-cta {
  margin-top: 36px;
}

.zz-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 30px;
  border-radius: calc(var(--zz-r) + 4px);
  background: var(--zz-grad);
  color: #fff;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.35);
}

.zz-cta__copy strong {
  display: block;
  font-size: 19px;
  margin-bottom: 6px;
}

.zz-cta__copy span {
  font-size: 14px;
  opacity: 0.94;
}

.zz-cta__go {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--zz-t), box-shadow var(--zz-t);
}

.zz-btn:active {
  transform: scale(0.98);
}

.zz-btn--solid {
  background: #fff;
  color: var(--zz-violet);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  font-weight: 700;
}

.zz-btn--solid:hover {
  transform: translateY(-2px);
}

.zz-btn--line {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.zz-btn--line:hover {
  background: rgba(255, 255, 255, 0.12);
}

.zz-btn--block {
  width: 100%;
}

.zz-btn--light {
  background: #fff;
  color: var(--zz-red);
}

/* —— 通知跑马灯 —— */
.zz-marquee {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--zz-card);
  border: 1px solid var(--zz-line);
  border-radius: var(--zz-r);
  padding: 10px 16px;
  overflow: hidden;
}

.zz-marquee__tag {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--zz-grad);
  padding: 6px 12px;
  border-radius: 10px;
  letter-spacing: 0.06em;
}

.zz-marquee__track {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.zz-marquee__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  width: max-content;
}

.zz-marquee__list a {
  color: var(--zz-ink);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.zz-marquee__list a:hover {
  color: var(--zz-violet);
}

/* —— 区块标题（全站首页模块节奏） —— */
.zz-sec-head {
  text-align: center;
  margin: 44px 0 26px;
}

.zz-sec-head__t {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  background: linear-gradient(100deg, var(--zz-ink) 0%, var(--zz-violet) 55%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zz-sec-head__s {
  margin: 0 auto;
  max-width: 560px;
  color: var(--zz-muted);
  font-size: 15px;
  line-height: 1.55;
}

.zz-sec-head--light .zz-sec-head__t {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
}

.zz-sec-head--light .zz-sec-head__s {
  color: #fff;
}

.zz-sec-head--light .zz-sec-head__s {
  opacity: 0.9;
}

.zz-exam__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1000px) {
  .zz-exam__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.zz-exam__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px;
  border-radius: var(--zz-r);
  text-decoration: none;
  color: #fff !important;
  min-height: 148px;
  overflow: hidden;
  box-shadow: var(--zz-sh);
  transition: transform var(--zz-t), box-shadow var(--zz-t);
}

.zz-exam__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.2), transparent 55%);
  pointer-events: none;
}

.zz-exam__card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.zz-exam__en {
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.88;
  position: relative;
  z-index: 1;
}

.zz-exam__cn {
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 6px;
  position: relative;
  z-index: 1;
}

.zz-exam__hint {
  display: block;
  font-size: 12px;
  opacity: 0.88;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.zz-exam__go {
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.zz-exam__card--gk {
  background: linear-gradient(145deg, #1e3a5f, #0f172a);
}

.zz-exam__card--sk {
  background: linear-gradient(145deg, #9a3412, #431407);
}

.zz-exam__card--js {
  background: linear-gradient(145deg, #166534, #052e16);
}

.zz-exam__card--sy {
  background: linear-gradient(145deg, #6b21a8, #3b0764);
}

/* —— 焦点 + 侧栏：与 .zz-wrap 同宽；有主文时为 1:1；无主文时侧栏独占一行铺满 —— */
.zz-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 8px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 无编辑精选文章时，避免侧栏只占半行、右侧大块留白 */
.zz-spotlight > .zz-spotlight__side:only-child {
  grid-column: 1 / -1;
  width: 100%;
}

@media (max-width: 1180px) {
  .zz-spotlight {
    grid-template-columns: 1fr;
  }

  .zz-spotlight > .zz-spotlight__side:only-child {
    grid-column: auto;
  }
}

.zz-spotlight__main {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  width: 100%;
  min-width: 0;
  background: var(--zz-card);
  border-radius: var(--zz-r);
  overflow: hidden;
  border: 1px solid var(--zz-line);
  box-shadow: var(--zz-sh);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--zz-t);
}

@media (max-width: 900px) {
  .zz-spotlight__main {
    grid-template-columns: 1fr;
  }
}

.zz-spotlight__main:hover {
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.14);
}

.zz-spotlight__media {
  position: relative;
  min-height: 220px;
  background: var(--zz-bg);
}

.zz-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zz-spotlight__body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zz-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--zz-violet);
  background: linear-gradient(135deg, var(--zz-soft), var(--zz-soft-2));
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  width: fit-content;
}

.zz-spotlight__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--zz-ink);
}

.zz-spotlight__desc {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--zz-muted);
  line-height: 1.65;
}

.zz-spotlight__meta {
  font-size: 13px;
  color: #94a3b8;
}

.zz-spotlight__side {
  width: 100%;
  min-width: 0;
}

/* 左：硬知识+资讯列表（stack） 右：顾问 CTA；独占一行时拆成三列铺满版心 */
.zz-side-split {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.88fr);
  width: 100%;
  min-height: 0;
  background: var(--zz-card);
  border-radius: var(--zz-r-lg);
  border: 1px solid var(--zz-line);
  box-shadow: var(--zz-sh-soft);
  overflow: hidden;
}

/* 侧栏独占一行（无编辑精选大图）→ 三列：硬知识 | 文章 | 顾问 */
.zz-spotlight > .zz-spotlight__side:only-child .zz-side-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr) minmax(0, 0.92fr);
}

.zz-spotlight > .zz-spotlight__side:only-child .zz-side-split__stack {
  display: contents;
}

.zz-spotlight > .zz-spotlight__side:only-child .zz-side-split__tips {
  margin: 0;
  padding: 16px 14px 16px 18px;
  border-right: 1px solid #f1f5f9;
  border-radius: 0;
}

.zz-spotlight > .zz-spotlight__side:only-child .zz-side-split__feed {
  margin: 0;
  padding: 14px 16px 16px;
  border-right: 1px solid #f1f5f9;
}

@media (max-width: 640px) {
  .zz-side-split {
    grid-template-columns: 1fr;
  }

  .zz-spotlight > .zz-spotlight__side:only-child .zz-side-split {
    grid-template-columns: 1fr;
  }

  .zz-spotlight > .zz-spotlight__side:only-child .zz-side-split__stack {
    display: flex;
  }

  .zz-spotlight > .zz-spotlight__side:only-child .zz-side-split__tips {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .zz-spotlight > .zz-spotlight__side:only-child .zz-side-split__feed {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
}

.zz-side-split__stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 14px 14px 14px 16px;
  border-right: 1px solid #f1f5f9;
}

@media (max-width: 640px) {
  .zz-side-split__stack {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
}

.zz-side-split__feed {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.zz-side-split__head {
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.zz-side-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.zz-side-split__hint {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--zz-muted);
  line-height: 1.45;
}

.zz-side-split__tips {
  margin: 0;
  padding: 12px 11px 12px 13px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.07), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.14);
  flex-shrink: 0;
}

.zz-side-split__tips-k {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #5b21b6;
}

.zz-side-split__tips-ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zz-side-split__tips-ul li {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--zz-ink);
}

.zz-side-split__tips-ul li:last-child {
  margin-bottom: 0;
}

.zz-side-split__tips-ul span {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--zz-violet), #6366f1);
  vertical-align: 0.08em;
}

.zz-side-split__more {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--zz-muted);
}

.zz-side-split__feed .zz-hot-list {
  margin: 0;
  padding: 4px 0 0 22px;
  flex: 1;
  list-style: decimal;
  background: transparent;
  border: none;
  box-shadow: none;
}

.zz-hot-list li {
  margin-bottom: 8px;
  line-height: 1.45;
  padding-left: 2px;
}

.zz-hot-list li:last-child {
  margin-bottom: 0;
}

.zz-hot-list a {
  color: var(--zz-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.zz-side-split__feed .zz-hot-list:empty {
  min-height: 72px;
  padding-left: 0;
  list-style: none;
}

.zz-side-split__feed .zz-hot-list:empty::after {
  content: "后台发布资讯后，此处自动同步文章标题（栏目 ID 11）";
  display: block;
  font-size: 12px;
  color: var(--zz-muted);
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
}

.zz-hot-list a:hover {
  color: var(--zz-violet);
}

.zz-side-split__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 16px 14px 18px;
  text-align: center;
  background: linear-gradient(155deg, rgba(139, 92, 246, 0.11) 0%, rgba(255, 90, 109, 0.07) 100%);
}

.zz-side-card__icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(139, 92, 246, 0.2));
}

.zz-side-split__cta-p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--zz-ink);
  line-height: 1.6;
  text-align: left;
}

@media (min-width: 641px) {
  .zz-side-split__cta-p {
    text-align: center;
  }
}

.zz-side-split__btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: auto;
  display: inline-flex !important;
  justify-content: center;
  padding: 11px 16px;
  font-size: 14px;
  box-sizing: border-box;
}

/* —— Tabs —— */
.zz-tabs {
  margin-top: 8px;
}

.zz-tabs__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  padding: 14px 20px;
  margin-bottom: 16px;
  background: var(--zz-card);
  border: 1px solid var(--zz-line);
  border-radius: var(--zz-r-lg);
  box-shadow: var(--zz-sh-soft);
}

.zz-tabs__label {
  font-size: 14px;
  font-weight: 800;
  color: var(--zz-ink);
  letter-spacing: 0.02em;
}

.zz-tabs__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 0;
  flex: 1;
  min-width: min(100%, 320px);
}

.zz-tabs__btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--zz-line);
  background: var(--zz-card);
  font-size: 15px;
  font-weight: 600;
  color: var(--zz-ink);
  cursor: pointer;
  transition: var(--zz-t);
}

.zz-tabs__btn:hover,
.zz-tabs__btn.is-active {
  background: var(--zz-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.zz-tabs__panel {
  background: var(--zz-card);
  border-radius: var(--zz-r);
  border: 1px solid var(--zz-line);
  padding: 8px 0;
  box-shadow: var(--zz-sh);
}

.zz-tabs__panel[hidden] {
  display: none !important;
}

.zz-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zz-card-list li {
  border-bottom: 1px solid #f1f5f9;
}

.zz-card-list li:last-child {
  border-bottom: 0;
}

.zz-card-list__a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  text-decoration: none;
  color: inherit;
  transition: background var(--zz-t);
}

.zz-card-list__a:hover {
  background: var(--zz-soft);
}

.zz-card-list__t {
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}

.zz-card-list__d {
  font-size: 13px;
  color: #94a3b8;
  flex-shrink: 0;
}

/* —— 九宫格文章 —— */
.zz-mosaic .zz-sec-head {
  margin: 32px 0 18px;
}

.zz-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) {
  .zz-mosaic__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .zz-mosaic__grid {
    grid-template-columns: 1fr;
  }
}

.zz-tile {
  margin: 0;
}

.zz-tile__link {
  display: block;
  background: var(--zz-card);
  border-radius: var(--zz-r);
  overflow: hidden;
  border: 1px solid var(--zz-line);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: transform var(--zz-t), box-shadow var(--zz-t);
  height: 100%;
}

.zz-tile__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.15);
}

.zz-tile__pic {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--zz-bg);
}

.zz-tile__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zz-tile__t {
  margin: 14px 16px 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.zz-tile__d {
  margin: 0 16px 16px;
  font-size: 13px;
  color: var(--zz-muted);
  line-height: 1.5;
}

/* —— 备考流程 —— */
.zz-learn {
  margin-top: 44px;
}

.zz-learn__inner {
  border-radius: calc(var(--zz-r) + 4px);
  padding: 36px 28px 40px;
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 35%, #9d174d 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(76, 29, 149, 0.35);
}

.zz-learn__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  margin: 28px 0 28px;
  padding: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .zz-learn__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.zz-learn__steps li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 14px;
}

.zz-learn__n {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--zz-grad);
  font-weight: 800;
  margin-bottom: 10px;
}

.zz-learn__steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.zz-learn__steps small {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.45;
}

.zz-learn__cta {
  margin-top: 8px;
}

/* —— FAQ —— */
.zz-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.zz-faq__list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--zz-card);
  border-radius: var(--zz-r);
  border: 1px solid var(--zz-line);
  text-decoration: none;
  color: var(--zz-ink);
  font-size: 15px;
  transition: border-color var(--zz-t), box-shadow var(--zz-t);
}

.zz-faq__list a:hover {
  border-color: rgba(230, 0, 18, 0.35);
  box-shadow: 0 8px 28px rgba(230, 0, 18, 0.08);
}

.zz-faq__q {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--zz-grad);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* —— 年轻化标语（须在信任卡之上可读：单独层 + 与卡片留出间距） —— */
.zz-youth-line {
  position: relative;
  z-index: 2;
  max-width: var(--zz-content-max);
  margin: 0 auto;
  padding: 20px var(--zz-content-pad) 16px;
  box-sizing: border-box;
  text-align: center;
  font-size: 15px;
  color: var(--zz-muted);
  line-height: 1.65;
}

.zz-youth-line strong {
  color: var(--zz-violet);
  font-weight: 800;
}

/* —— 公考时间轴 —— */
.zz-timeline {
  margin-top: 36px;
}

.zz-timeline > .zz-sec-head:first-child {
  margin-top: 0;
  margin-bottom: 22px;
}

.zz-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
  border-radius: var(--zz-r-lg);
  background: var(--zz-card);
  border: 1px solid var(--zz-line);
  overflow: hidden;
  box-shadow: var(--zz-sh-soft);
}

@media (min-width: 900px) {
  .zz-timeline__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zz-timeline__item {
    border-bottom: none;
    min-height: 100%;
    box-sizing: border-box;
  }

  .zz-timeline__item:nth-child(odd) {
    border-right: 1px solid #f1f5f9;
  }

  .zz-timeline__item:nth-child(-n + 2) {
    border-bottom: 1px solid #f1f5f9;
  }
}

.zz-timeline__item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 14px 18px;
  padding: 22px 22px 22px 24px;
  border-bottom: 1px solid #f1f5f9;
  align-items: start;
  transition: background var(--zz-t);
}

.zz-timeline__item:hover {
  background: rgba(139, 92, 246, 0.03);
}

.zz-timeline__item:last-child {
  border-bottom: 0;
}

@media (min-width: 900px) {
  .zz-timeline__item:last-child,
  .zz-timeline__item:nth-last-child(2):nth-child(odd) {
    border-bottom: 0;
  }
}

.zz-timeline__main {
  min-width: 0;
}

.zz-timeline__badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--zz-violet);
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(34, 211, 238, 0.1));
  padding: 8px 11px;
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  align-self: start;
  margin-top: 2px;
  max-width: 7.5rem;
}

@media (max-width: 720px) {
  .zz-timeline__item {
    grid-template-columns: 24px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .zz-timeline__badge {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: 4px;
    max-width: none;
  }

  .zz-timeline__dot {
    grid-row: 1 / span 2;
  }

  .zz-timeline__main {
    grid-column: 2;
    grid-row: 1;
  }
}

.zz-timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 4px;
  background: var(--zz-grad);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.zz-timeline__item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--zz-ink);
}

.zz-timeline__item p {
  margin: 0;
  font-size: 14px;
  color: var(--zz-muted);
  line-height: 1.55;
}

.zz-timeline__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.07), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: var(--zz-r-lg);
  font-size: 14px;
  color: var(--zz-muted);
}

.zz-btn--grad {
  background: var(--zz-grad);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.35);
  border: none;
  text-decoration: none;
}

.zz-btn--grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(236, 72, 153, 0.35);
}

/* —— 方向标签 —— */
.zz-tracks {
  margin-top: 4px;
}

.zz-tracks__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}

.zz-tracks__chips a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--zz-ink);
  background: var(--zz-card);
  border: 1px solid var(--zz-line);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: var(--zz-t);
}

.zz-tracks__chips a:hover {
  border-color: var(--zz-violet);
  color: var(--zz-violet);
  transform: translateY(-2px);
}

.zz-tracks__hint {
  text-align: center;
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--zz-muted);
}

/* —— 班型对比 —— */
.zz-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 1000px) {
  .zz-plans__grid {
    grid-template-columns: 1fr;
  }
}

.zz-plan {
  position: relative;
  background: var(--zz-card);
  border-radius: calc(var(--zz-r) + 2px);
  padding: 26px 22px 22px;
  border: 1px solid var(--zz-line);
  box-shadow: var(--zz-sh);
  display: flex;
  flex-direction: column;
  transition: var(--zz-t);
  overflow: hidden;
}

.zz-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(99, 102, 241, 0.15);
}

.zz-plan--hot {
  border-color: rgba(139, 92, 246, 0.45);
  background: linear-gradient(180deg, #fff 0%, rgba(139, 92, 246, 0.04) 100%);
}

.zz-plan__ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  transform: rotate(38deg);
  background: var(--zz-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.zz-plan__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.zz-plan__tag {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--zz-violet);
  font-weight: 600;
}

.zz-plan__ul {
  margin: 0 0 18px;
  padding: 0 0 0 18px;
  flex: 1;
  font-size: 14px;
  color: var(--zz-muted);
  line-height: 1.75;
}

.zz-plan__price {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--zz-ink);
  font-weight: 600;
}

.zz-btn--outline {
  background: transparent;
  color: var(--zz-violet);
  border: 2px solid rgba(139, 92, 246, 0.45);
  text-decoration: none;
  text-align: center;
}

.zz-btn--outline:hover {
  background: var(--zz-soft);
}

/* —— 双栏资讯 —— */
.zz-dual .zz-sec-head {
  margin: 28px 0 20px;
}

.zz-dual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .zz-dual__grid {
    grid-template-columns: 1fr;
  }
}

.zz-dual__col {
  background: var(--zz-card);
  border-radius: var(--zz-r);
  border: 1px solid var(--zz-line);
  padding: 18px 0 8px;
  box-shadow: var(--zz-sh);
}

.zz-dual__h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px;
  padding: 0 18px 12px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 17px;
  font-weight: 800;
}

.zz-dual__h span {
  background: linear-gradient(90deg, var(--zz-violet), var(--zz-coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zz-dual__h a {
  font-size: 13px;
  font-weight: 600;
  color: var(--zz-violet);
  text-decoration: none;
}

.zz-dual__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zz-dual__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  text-decoration: none;
  color: var(--zz-ink);
  font-size: 14px;
  border-bottom: 1px solid #f8fafc;
  transition: background var(--zz-t);
}

.zz-dual__list li:last-child a {
  border-bottom: 0;
}

.zz-dual__list a:hover {
  background: rgba(139, 92, 246, 0.06);
}

.zz-dual__list time {
  flex-shrink: 0;
  font-size: 12px;
  color: #94a3b8;
}

/* —— 工具箱 —— */
.zz-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 800px) {
  .zz-tools__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.zz-tools__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 16px;
  border-radius: var(--zz-r);
  background: var(--zz-card);
  border: 1px solid var(--zz-line);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: var(--zz-t);
}

.zz-tools__item:hover {
  border-color: var(--zz-cyan);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(34, 211, 238, 0.15);
}

.zz-tools__i {
  font-size: 26px;
  margin-bottom: 10px;
}

.zz-tools__item strong {
  font-size: 15px;
  margin-bottom: 4px;
}

.zz-tools__item small {
  font-size: 12px;
  color: var(--zz-muted);
}

/* —— 资料包 —— */
.zz-gift {
  margin-top: 24px;
}

.zz-gift__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.08fr);
  gap: 28px 32px;
  align-items: stretch;
  padding: 26px 28px 28px;
  border-radius: calc(var(--zz-r) + 6px);
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.12) 0%, rgba(34, 211, 238, 0.1) 50%, rgba(255, 90, 109, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

@media (max-width: 900px) {
  .zz-gift__inner {
    grid-template-columns: 1fr;
  }
}

.zz-gift__text h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.zz-gift__text p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--zz-muted);
  line-height: 1.65;
}

.zz-gift__bullets {
  margin: 0 0 18px;
  padding-left: 20px;
  font-size: 13px;
  color: var(--zz-muted);
  line-height: 1.75;
}

.zz-gift__bullets li {
  margin-bottom: 4px;
}

.zz-gift__board {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--zz-r-lg);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 20px 22px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 28px rgba(99, 102, 241, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.zz-gift__board-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--zz-violet);
  text-transform: uppercase;
}

.zz-gift__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.zz-gift__tags span {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  color: #5b21b6;
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.zz-gift__board-foot {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.45);
  font-size: 12px;
  color: var(--zz-muted);
  text-align: center;
  line-height: 1.5;
}

.zz-gift__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.zz-gift__list li {
  border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.zz-gift__list li:last-child {
  border-bottom: 0;
}

.zz-gift__list a {
  display: block;
  padding: 11px 0;
  font-size: 14px;
  color: var(--zz-ink);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--zz-t), padding-left var(--zz-t);
}

.zz-gift__list a:hover {
  color: var(--zz-violet);
  padding-left: 4px;
}

/* —— 双考 —— */
.zz-combo {
  margin-top: 22px;
}

.zz-combo__card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px 32px;
  padding: 26px 28px 28px 32px;
  border-radius: var(--zz-r-lg);
  background: var(--zz-card);
  border: 1px solid var(--zz-line);
  box-shadow: var(--zz-sh-soft);
  text-align: left;
}

.zz-combo__body {
  flex: 1;
  min-width: min(100%, 320px);
}

.zz-combo__card h2 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.zz-combo__card p {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--zz-muted);
  line-height: 1.65;
  max-width: 42rem;
}

.zz-combo__points {
  list-style: none;
  margin: 14px 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--zz-muted);
  line-height: 1.5;
}

.zz-combo__points li {
  padding: 10px 14px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.zz-combo__points strong {
  color: var(--zz-ink);
  margin-right: 6px;
}

.zz-combo__btn {
  width: fit-content;
}

.zz-combo__deco {
  display: none;
  flex-shrink: 0;
  width: min(200px, 28vw);
  min-height: 160px;
  position: relative;
  align-self: center;
}

@media (min-width: 880px) {
  .zz-combo__deco {
    display: block;
  }
}

.zz-combo__deco-ring {
  position: absolute;
  inset: 8% 10% 12%;
  border-radius: 50%;
  border: 2px dashed rgba(139, 92, 246, 0.28);
  background: radial-gradient(circle at 40% 35%, rgba(236, 72, 153, 0.12), transparent 65%);
}

.zz-combo__deco-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139, 92, 246, 0.18) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  background-position: 4px 4px;
  opacity: 0.55;
  border-radius: var(--zz-r);
}

/* —— FAQ 折叠 —— */
.zz-acc {
  max-width: 880px;
  margin: 0 auto;
}

.zz-acc__item {
  background: var(--zz-card);
  border: 1px solid var(--zz-line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.zz-acc__item summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.zz-acc__item summary::-webkit-details-marker {
  display: none;
}

.zz-acc__item summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--zz-violet);
}

.zz-acc__item[open] summary::after {
  content: "−";
}

.zz-acc__item p {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--zz-muted);
  line-height: 1.65;
}

.zz-acc__item a {
  color: var(--zz-violet);
  font-weight: 600;
}

/* —— 底部大 CTA —— */
.zz-final {
  margin-top: 40px;
}

.zz-final__box {
  text-align: center;
  padding: 36px 28px;
  border-radius: calc(var(--zz-r) + 6px);
  background: var(--zz-grad);
  color: #fff;
  box-shadow: 0 24px 60px rgba(139, 92, 246, 0.38);
}

.zz-final__box h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
}

.zz-final__box p {
  margin: 0 0 22px;
  opacity: 0.95;
  font-size: 15px;
}

.zz-final__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.zz-btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.zz-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* —— 吸底报课条 —— */
.zz-stick {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--zz-line);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
}

.zz-stick__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.zz-stick__txt {
  font-size: 15px;
  color: var(--zz-ink);
}

.zz-stick__txt strong {
  color: var(--zz-violet);
}

.zz-stick__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  color: #fff !important;
  text-decoration: none;
  background: var(--zz-grad);
  box-shadow: 0 8px 28px rgba(139, 92, 246, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--zz-t);
}

.zz-stick__btn:hover {
  transform: scale(1.04);
}
