:root {
  --bg0: #060b18;
  --bg1: #071224;
  --bg2: #0a1b33;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.60);
  --muted-2: rgba(255, 255, 255, 0.44);

  --brand: rgba(0, 122, 255, 0.92);
  --brand-glow: rgba(0, 122, 255, 0.38);
  --brand-soft: rgba(0, 122, 255, 0.16);

  --glass: rgba(255, 255, 255, 0.06);
  --glass-2: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-border-2: rgba(0, 122, 255, 0.22);

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.30);

  --radius: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(160deg, var(--bg0), var(--bg1) 38%, var(--bg2));
  padding-top: 76px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 540px at 18% 12%, rgba(0, 122, 255, 0.22), transparent 60%),
    radial-gradient(760px 480px at 86% 18%, rgba(255, 255, 255, 0.10), transparent 62%),
    radial-gradient(680px 420px at 62% 78%, rgba(0, 122, 255, 0.16), transparent 66%),
    radial-gradient(520px 360px at 10% 86%, rgba(255, 255, 255, 0.07), transparent 70%);
  filter: blur(1px);
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: rgba(255, 255, 255, 0.98);
}

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

.ww-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.ww-main {
  display: block;
}

.ww-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  z-index: 1000;
}

.ww-skip:focus {
  left: 12px;
  top: 12px;
}

.ww-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(8, 14, 30, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
}

.ww-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  opacity: 0.75;
}

.ww-nav__bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ww-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.ww-brand__name {
  font-weight: 650;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.92);
}

.ww-brand__mark {
  display: inline-flex;
  align-items: center;
}

.ww-nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ww-nav__link {
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.ww-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
}

.ww-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ww-nav__toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 10px 10px;
  cursor: pointer;
}

.ww-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ww-section {
  padding: 56px 0;
}

.ww-section--tight {
  padding: 40px 0;
}

.ww-section--surface {
  position: relative;
}

.ww-section--surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 400px at 40% 0%, rgba(0, 122, 255, 0.12), transparent 62%);
  pointer-events: none;
}

.ww-section__head {
  margin-bottom: 22px;
}

.ww-measure {
  max-width: 820px;
}

.ww-h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.ww-h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.4px;
}

.ww-title {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.2px;
}

.ww-lead {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.ww-muted {
  color: var(--muted);
}

.ww-text-sm {
  font-size: 14px;
}

.ww-text-xs {
  font-size: 12px;
}

.ww-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.ww-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.ww-eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.90), rgba(0, 122, 255, 0.65) 55%, rgba(0, 122, 255, 0.12) 72%);
  box-shadow: 0 0 22px var(--brand-glow);
}

.ww-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ww-actions--stack {
  flex-direction: column;
  align-items: stretch;
}

.ww-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.90);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  user-select: none;
  text-decoration: none;
}

.ww-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.ww-btn--block {
  width: 100%;
}

.ww-btn--primary {
  border-color: rgba(0, 122, 255, 0.40);
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.18), rgba(0, 122, 255, 0.10));
  box-shadow: 0 0 0 1px rgba(0, 122, 255, 0.12), 0 16px 48px rgba(0, 122, 255, 0.18);
  position: relative;
}

.ww-btn--primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(220px 140px at 20% 20%, rgba(255, 255, 255, 0.16), transparent 60%);
  opacity: 0.65;
  pointer-events: none;
}

.ww-btn--primary:hover {
  box-shadow: 0 0 0 1px rgba(0, 122, 255, 0.18), 0 20px 60px rgba(0, 122, 255, 0.26);
  border-color: rgba(0, 122, 255, 0.56);
}

.ww-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}

.ww-btn--glass {
  border-color: rgba(0, 122, 255, 0.26);
  background: rgba(0, 122, 255, 0.10);
}

.ww-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ww-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.ww-panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.ww-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 220px at 10% 0%, rgba(0, 122, 255, 0.14), transparent 58%);
  opacity: 0.85;
  pointer-events: none;
}

.ww-panel__inner {
  position: relative;
  padding: 22px;
}

.ww-panel--hero {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.ww-panel--media {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 122, 255, 0.18);
}

.ww-panel--card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ww-panel--card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 122, 255, 0.30);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
}

.ww-panel--sticky {
  position: sticky;
  top: 92px;
}

.ww-panel--tile:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 122, 255, 0.30);
}

.ww-panel--tile {
  display: block;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ww-panel--faq {
  padding: 0;
}

.ww-panel--faq .ww-panel__inner {
  padding-top: 14px;
}

.ww-panel--note {
  box-shadow: none;
  border-color: rgba(0, 122, 255, 0.22);
  background: rgba(0, 122, 255, 0.08);
}

.ww-panel--cta {
  border-color: rgba(0, 122, 255, 0.28);
}

.ww-panel--cta::before {
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(620px 320px at 80% 30%, rgba(0, 122, 255, 0.22), transparent 62%);
}

.ww-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  margin: 18px 0;
}

.ww-stack > * + * {
  margin-top: 12px;
}

.ww-mt-sm {
  margin-top: 10px;
}

.ww-mt-lg {
  margin-top: 22px;
}

.ww-mt-0 {
  margin-top: 0;
}

.ww-hero {
  padding: 26px 0 54px;
}

.ww-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.ww-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ww-hero__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ww-hero__media {
  align-self: stretch;
}

.ww-kpis {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ww-kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 12px 12px;
  backdrop-filter: blur(14px);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.ww-kpi__key {
  font-weight: 650;
  font-size: 14px;
}

.ww-kpi__val {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.ww-download-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ww-shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.28);
}

.ww-shot img {
  width: 100%;
  transform: translateZ(0);
}

.ww-kv {
  display: grid;
  gap: 10px;
}

.ww-kv__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.ww-kv__row strong {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 650;
}

.ww-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
}

.ww-showcase__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 122, 255, 0.22);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  position: relative;
}

.ww-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.14), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.ww-showcase__body {
  display: flex;
  flex-direction: column;
}

.ww-grid {
  display: grid;
}

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

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

.ww-gap-lg {
  gap: 18px;
}

.ww-bullet__title {
  font-weight: 650;
}

.ww-tile__title {
  display: block;
  font-weight: 650;
  font-size: 16px;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.ww-bullet {
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.ww-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ww-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ww-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 122, 255, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.50);
}

.ww-feature__no {
  font-size: 44px;
  font-weight: 750;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.10);
  position: absolute;
  top: 10px;
  right: 14px;
  text-shadow: 0 0 26px rgba(0, 122, 255, 0.18);
}

.ww-feature__title {
  font-weight: 650;
  font-size: 18px;
}

.ww-feature:nth-child(2) {
  transform: translateY(10px);
}

.ww-feature:nth-child(5) {
  transform: translateY(10px);
}

.ww-feature:nth-child(2):hover,
.ww-feature:nth-child(5):hover {
  transform: translateY(7px);
}

.ww-faq {
  display: grid;
  gap: 14px;
}

.ww-summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.90);
}

.ww-summary::-webkit-details-marker {
  display: none;
}

.ww-summary::after {
  content: "+";
  float: right;
  color: rgba(255, 255, 255, 0.60);
}

details[open] .ww-summary::after {
  content: "–";
}

.ww-prose {
  color: rgba(255, 255, 255, 0.86);
}

.ww-prose h2,
.ww-prose h3 {
  margin: 18px 0 10px;
  line-height: 1.2;
}

.ww-prose p {
  margin: 10px 0;
}

.ww-prose a {
  color: rgba(200, 228, 255, 0.96);
  text-decoration: underline;
  text-decoration-color: rgba(0, 122, 255, 0.55);
  text-underline-offset: 3px;
}

.ww-prose ul,
.ww-prose ol {
  margin: 10px 0;
  padding-left: 18px;
}

.ww-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.ww-breadcrumb--panel {
  display: inline-flex;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.ww-breadcrumb a {
  color: rgba(255, 255, 255, 0.80);
}

.ww-breadcrumb__sep {
  opacity: 0.55;
}

.ww-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
}

.ww-card__title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0;
}

.ww-card__title a {
  color: rgba(255, 255, 255, 0.92);
}

.ww-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ww-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.ww-pagination {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  padding: 14px 0;
}

.ww-pagination a,
.ww-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  margin: 0 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
}

.ww-pagination .current,
.ww-pagination .active {
  border-color: rgba(0, 122, 255, 0.40);
  background: rgba(0, 122, 255, 0.12);
}

.ww-pn {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.ww-news {
  display: grid;
  gap: 14px;
}

.ww-news__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ww-news__item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 122, 255, 0.28);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
}

.ww-news__link {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  color: inherit;
}

.ww-news__media {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.ww-news__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.18), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.ww-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.ww-news__content {
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ww-news__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.ww-news__desc {
  color: var(--muted);
  font-size: 14px;
}

.ww-news__cta {
  margin-top: 6px;
}

.ww-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.ww-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ww-mini {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 14px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.ww-mini__title {
  font-weight: 650;
}

.ww-mini__desc {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.ww-footer {
  padding: 44px 0 28px;
  position: relative;
}

.ww-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0.8;
}

.ww-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ww-footer__title {
  font-weight: 650;
  margin-bottom: 10px;
}

.ww-footer__list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
}

.ww-footer__list a {
  color: rgba(255, 255, 255, 0.78);
}

.ww-footer__list a:hover {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 18px rgba(0, 122, 255, 0.20);
}

.ww-subfooter {
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 12px;
}

.ww-subfooter__links a {
  color: var(--muted-2);
}

@media (max-width: 980px) {
  body {
    padding-top: 70px;
  }

  .ww-nav__toggle {
    display: inline-flex;
  }

  .ww-nav__menu {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(8, 14, 30, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(18px);
  }

  .ww-nav__menu[aria-hidden="true"] {
    display: none;
  }

  .ww-hero__inner {
    grid-template-columns: 1fr;
  }

  .ww-kpis {
    grid-template-columns: 1fr;
  }

  .ww-showcase {
    grid-template-columns: 1fr;
  }

  .ww-features {
    grid-template-columns: 1fr;
  }

  .ww-feature:nth-child(2),
  .ww-feature:nth-child(5) {
    transform: none;
  }

  .ww-news__link {
    grid-template-columns: 1fr;
  }

  .ww-news__media {
    min-height: 160px;
  }

  .ww-layout {
    grid-template-columns: 1fr;
  }

  .ww-panel--sticky {
    position: static;
  }

  .ww-footer__grid {
    grid-template-columns: 1fr;
  }

  .ww-cta {
    grid-template-columns: 1fr;
  }
}
