/* ============================================================
   PG会馆 · Site Kit
   文件：/assets/site.css
   共享：变量、重置、排印、头部、页脚、按钮、面包屑、容器、网格、基础组件
   ============================================================ */

/* ---------- 1. 设计变量 ---------- */
:root {
  --color-primary: #0B1D3A;
  --color-secondary: #123B6D;
  --color-dark: #071428;
  --color-gold: #D4AF37;
  --color-gold-light: #F0D98A;
  --color-gold-deep: #B8942F;
  --color-silver: #C0C0C0;
  --color-white: #FFFFFF;
  --color-cloud: #E5E9F0;
  --color-steel: #8A94A6;
  --color-emerald: #2ECC71;
  --color-amber: #E67E22;

  --font-head: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Times New Roman", "Georgia", serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  --header-h: 80px;
  --header-h-mobile: 64px;
  --container-w: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. 重置与基础 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-wrap: break-word;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-cloud);
  background-color: var(--color-primary);
  background-image:
    radial-gradient(1200px 800px at 85% -10%, rgba(18, 59, 109, 0.55) 0%, transparent 60%),
    radial-gradient(900px 600px at -10% 10%, rgba(212, 175, 55, 0.07) 0%, transparent 55%);
}

::selection {
  background: rgba(212, 175, 55, 0.85);
  color: var(--color-dark);
}

[hidden] {
  display: none !important;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 300ms ease;
}

a:hover {
  color: var(--color-gold-light);
}

ul,
ol {
  padding-left: 1.25em;
}

li {
  margin-bottom: 0.4em;
}

/* ---------- 3. 排印 ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5em;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-white);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1em;
}

small {
  font-size: 0.875em;
}

/* ---------- 4. 布局基础 ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-narrow {
  max-width: 920px;
}

.section {
  padding-block: var(--space-5);
}

.section-tight {
  padding-block: var(--space-3);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#main-content {
  flex: 1;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

#main-content:focus {
  outline: none;
}

/* ---------- 5. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease,
    color 300ms ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold) 45%, var(--color-gold-deep));
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  color: var(--color-dark);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.42);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
}

.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: none;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ---------- 6. 头部 ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  display: inline-flex;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  color: var(--color-dark);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(180deg, rgba(7, 20, 40, 0.96) 0%, rgba(11, 29, 58, 0.94) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 28%, rgba(212, 175, 55, 0.15) 60%, transparent 100%);
  opacity: 0.7;
}

.header-inner {
  position: relative;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 60%, var(--color-gold-deep) 100%);
  color: var(--color-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.5px;
  border-radius: 4px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.35));
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--color-gold);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-silver);
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 10px 14px;
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-cloud);
  border-radius: var(--radius-sm);
  transition: color 300ms ease, background-color 300ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold), rgba(212, 175, 55, 0.1));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms var(--ease);
}

.nav-link:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--color-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-btn {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 300ms ease, background-color 300ms ease;
}

.nav-toggle:hover {
  border-color: var(--color-gold);
  background-color: rgba(212, 175, 55, 0.08);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-gold);
  transition: transform 300ms var(--ease), opacity 300ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- 7. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: auto;
  color: var(--color-steel);
  font-size: 15px;
  background-color: var(--color-dark);
  background-image:
    radial-gradient(800px 400px at 100% 0%, rgba(18, 59, 109, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, rgba(212, 175, 55, 0.1) 55%, transparent 100%);
  opacity: 0.8;
}

.footer-shell {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: var(--space-5) 24px var(--space-3);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-brand-col .brand {
  margin-bottom: 20px;
}

.footer-trust {
  max-width: 360px;
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-steel);
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

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

.footer-list li {
  margin: 0 0 10px;
}

.footer-link {
  color: var(--color-cloud);
  font-size: 15px;
  transition: color 300ms ease, padding-left 300ms var(--ease);
}

.footer-link:hover {
  color: var(--color-gold);
  padding-left: 6px;
  text-decoration: none;
}

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

.footer-contact-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-cloud);
}

.footer-contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  transform: rotate(45deg);
}

.footer-contact-label {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-silver);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--color-steel);
}

.footer-copyright,
.footer-icp,
.footer-support {
  margin: 0;
}

.footer-support {
  flex-basis: 100%;
  font-size: 12px;
  opacity: 0.8;
}

/* ---------- 8. 面包屑 ---------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 20px 0 4px;
  font-size: 13px;
  color: var(--color-steel);
}

.breadcrumbs a {
  color: var(--color-silver);
  text-decoration: none;
  transition: color 300ms ease;
}

.breadcrumbs a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.breadcrumbs [aria-current="page"] {
  color: var(--color-gold);
}

.breadcrumb-sep {
  color: var(--color-silver);
  opacity: 0.6;
  margin-inline: 4px;
}

/* ---------- 9. 面板与材质 ---------- */
.glass-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 300ms ease;
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.28);
}

.solid-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: var(--color-secondary);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-gold);
}

/* ---------- 10. 数据叙事组件 ---------- */
.stat-block {
  padding: 24px;
  border-left: 2px solid var(--color-gold);
  background: linear-gradient(120deg, rgba(18, 59, 109, 0.6) 0%, rgba(7, 20, 40, 0.2) 100%);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  color: var(--color-gold);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
}

.stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-silver);
}

.chapter {
  display: grid;
  grid-template-columns: minmax(80px, 140px) 1fr;
  gap: 28px;
  align-items: start;
}

.chapter-no {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
  color: var(--color-gold);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.chapter-content {
  min-width: 0;
}

.chapter-title {
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-white);
}

/* ---------- 11. 编辑感标题组合 ---------- */
.section-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section-heading {
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.25;
  color: var(--color-white);
}

.section-lead {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-silver);
}

/* ---------- 12. 主题筛选 ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(18, 59, 109, 0.5);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-cloud);
  cursor: pointer;
  transition:
    transform 300ms var(--ease),
    background-color 300ms ease,
    border-color 300ms ease,
    color 300ms ease,
    box-shadow 300ms ease;
}

.filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold) 50%, var(--color-gold-deep));
  border-color: transparent;
  color: var(--color-dark);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

/* ---------- 13. 图片占位容器 ---------- */
.figure-panel {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--color-secondary) 0%, var(--color-dark) 80%);
}

.figure-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  z-index: 2;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  transform: rotate(8deg);
  pointer-events: none;
}

.figure-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(192, 192, 192, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.figure-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 600ms var(--ease);
}

.figure-panel:hover > img {
  transform: scale(1.04);
}

.figure-panel--hero {
  min-height: 360px;
}

.figure-panel--landscape {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.figure-panel--portrait {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

/* ---------- 14. 浮现交互 ---------- */
.js-runtime [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms var(--ease);
}

.js-runtime [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 15. 焦点可见 ---------- */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 16. 响应式 ---------- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  #main-content {
    scroll-margin-top: calc(var(--header-h-mobile) + 12px);
  }

  .header-inner {
    height: var(--header-h-mobile);
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: rgba(7, 20, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    transition:
      max-height 360ms var(--ease),
      visibility 0s 360ms;
  }

  .site-nav[data-open] {
    max-height: calc(100vh - var(--header-h-mobile));
    overflow-y: auto;
    visibility: visible;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    transition:
      max-height 360ms var(--ease),
      visibility 0s 0s;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 12px 20px;
  }

  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 16px 12px;
    font-size: 16px;
    border-radius: 0;
  }

  .nav-link::after {
    left: 12px;
    right: auto;
    width: 28px;
    bottom: 8px;
  }
}

@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .chapter {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .chapter-no {
    font-size: 48px;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-shell {
    padding-top: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-support {
    flex-basis: auto;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 16px;
    gap: 12px;
  }

  .container {
    padding-inline: 16px;
  }

  .footer-shell {
    padding-inline: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .brand-badge {
    display: none;
  }

  .header-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ---------- 17. 减少动态效果 ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-runtime [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
