:root {
  --n24-bg: #ffffff;
  --n24-surface: #ffffff;
  --n24-surface-soft: #f6f7f9;
  --n24-surface-muted: #fafbfc;
  --n24-border: #d9dee5;
  --n24-border-strong: #c9d0da;
  --n24-text: #1f2937;
  --n24-text-soft: #5b6778;
  --n24-heading: #122033;
  --n24-accent: #24364d;
  --n24-accent-soft: #eef2f6;
  --n24-highlight: #ef476f;
  --n24-warning-bg: #fff8eb;
  --n24-warning-border: #ead7aa;
  --n24-warning-text: #8a6a22;
  --n24-success-bg: #f3f8f4;
  --n24-success-border: #cfded2;
  --n24-radius-xs: 8px;
  --n24-radius-sm: 12px;
  --n24-radius: 16px;
  --n24-radius-lg: 22px;
  --n24-shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.04);
  --n24-shadow-sm: 0 6px 18px rgba(16, 24, 40, 0.05);
  --n24-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
  --n24-max: 860px;
  --n24-content-max: 720px;
  --n24-serif: Georgia, "Times New Roman", Times, serif;
  --n24-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

article .n24-wrap {
  max-width: var(--n24-max);
  margin: 32px auto 48px;
  padding: 0 20px;
  color: var(--n24-text);
  font-family: var(--n24-sans);
  font-size: 17px;
  line-height: 1.76;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

article .n24-wrap > * {
  max-width: 100%;
  box-sizing: border-box;
}

article .n24-wrap > * + * {
  margin-top: 22px;
}

article .n24-wrap > h2,
article .n24-wrap > h3,
article .n24-wrap > p,
article .n24-wrap > ul,
article .n24-wrap > ol,
article .n24-wrap > blockquote,
article .n24-wrap > .n24-p,
article .n24-wrap > .n24-stats-line,
article .n24-wrap > .n24-tip,
article .n24-wrap > .n24-note,
article .n24-wrap > .n24-warning,
article .n24-wrap > .n24-tldr,
article .n24-wrap > .n24-network-source,
article .n24-wrap > .n24-faq-item {
  max-width: var(--n24-content-max);
}

article .n24-wrap > .n24-table,
article .n24-wrap > .n24-snapshot-block {
  max-width: 100%;
}

article .n24-wrap h2,
article .n24-wrap h3 {
  color: var(--n24-heading);
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin: 34px 0 12px;
}

article .n24-wrap h2 {
  font-family: var(--n24-serif);
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  font-weight: 700;
}

article .n24-wrap h3 {
  font-family: var(--n24-sans);
  font-size: 1.14rem;
  font-weight: 800;
}

article .n24-p,
article .n24-wrap p:not([class]) {
  margin: 0;
  font-size: 1.02rem;
  color: var(--n24-text);
}

article .n24-wrap strong {
  color: var(--n24-heading);
  font-weight: 700;
}

article .n24-wrap em {
  font-style: italic;
}

article .n24-wrap a {
  color: var(--n24-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(36, 54, 77, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  word-break: break-word;
}

article .n24-wrap a:hover,
article .n24-wrap a:focus {
  color: var(--n24-heading);
  border-bottom-color: rgba(36, 54, 77, 0.65);
}

article .n24-stats-line {
  margin: 16px 0 28px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border: 1px solid var(--n24-border);
  border-radius: 999px;
  color: var(--n24-text-soft);
  font-size: 0.94rem;
  line-height: 1.62;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

article .n24-stats-line strong {
  color: var(--n24-heading);
  font-weight: 800;
}

article .n24-snapshot-block {
  margin: 34px 0;
  padding: 22px;
  background: linear-gradient(180deg, #fafbfc 0%, #f5f7f9 100%);
  border: 1px solid var(--n24-border);
  border-radius: var(--n24-radius-lg);
  box-shadow: var(--n24-shadow-xs);
}

article .n24-grid-heading {
  margin: 0 0 18px;
  font-family: var(--n24-sans) !important;
  font-size: 0.8rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--n24-heading);
}

article .n24-grid-wrap {
  margin: 0;
}

article .n24-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

article .n24-card {
  background: var(--n24-surface);
  border: 1px solid var(--n24-border);
  border-radius: var(--n24-radius);
  box-shadow: var(--n24-shadow-xs);
  overflow: hidden;
  min-width: 0;
}

article .n24-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #edf1f5;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

article .n24-card-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--n24-accent-soft);
  color: var(--n24-accent);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

article .n24-card-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--n24-heading);
  line-height: 1.3;
}

article .n24-card-body {
  padding: 14px 18px 18px;
  color: var(--n24-text);
  font-size: 0.98rem;
}

article .n24-list {
  margin: 0;
  padding-left: 1.15rem;
}

article .n24-list li {
  margin: 0;
}

article .n24-list li + li {
  margin-top: 10px;
}

article .n24-list-tight li + li {
  margin-top: 8px;
}

article .n24-list li::marker {
  color: #8692a3;
}

article .n24-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--n24-surface);
  border: 1px solid var(--n24-border);
  border-radius: var(--n24-radius);
  overflow: hidden;
  box-shadow: var(--n24-shadow-xs);
}

article .n24-table thead th {
  padding: 14px 16px;
  background: #f4f6f8;
  color: var(--n24-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--n24-border);
  text-align: left;
  vertical-align: bottom;
}

article .n24-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf1f5;
  vertical-align: top;
  font-size: 0.97rem;
  line-height: 1.58;
}

article .n24-table tbody tr:nth-child(even) {
  background: #fbfcfd;
}

article .n24-table tbody tr:last-child td {
  border-bottom: 0;
}

article .n24-wrap blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  background: #fbfcfd;
  border: 1px solid var(--n24-border);
  border-left: 4px solid var(--n24-border-strong);
  border-radius: var(--n24-radius);
  color: var(--n24-heading);
  box-shadow: var(--n24-shadow-xs);
}

article .n24-wrap blockquote p {
  margin: 0 0 10px;
  font-size: 1.04rem;
  line-height: 1.7;
}

article .n24-wrap blockquote cite {
  display: block;
  color: var(--n24-text-soft);
  font-size: 0.94rem;
  font-style: normal;
}

article .n24-tip,
article .n24-note,
article .n24-warning,
article .n24-tldr {
  margin: 28px 0;
  padding: 18px 20px;
  border-radius: var(--n24-radius);
  border: 1px solid var(--n24-border);
  background: var(--n24-surface);
  box-shadow: var(--n24-shadow-xs);
}

article .n24-tip,
article .n24-note {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

article .n24-warning {
  background: linear-gradient(180deg, var(--n24-warning-bg) 0%, #fffdf6 100%);
  border-color: var(--n24-warning-border);
}

article .n24-tldr {
  background: linear-gradient(180deg, #f7f8fa 0%, #f1f4f6 100%);
  border-color: var(--n24-border-strong);
  color: var(--n24-heading);
  font-size: 1rem;
}

article .n24-tip-label,
article .n24-note-label,
article .n24-warning-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--n24-accent-soft);
  color: var(--n24-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

article .n24-warning-label {
  background: #fbf2d9;
  color: var(--n24-warning-text);
}

article .n24-tip .n24-p:last-child,
article .n24-note .n24-p:last-child,
article .n24-warning .n24-p:last-child {
  margin-bottom: 0;
}

article .n24-tldr strong {
  color: var(--n24-heading);
}

article .n24-network-source {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--n24-border);
  color: var(--n24-text-soft);
  font-size: 0.95rem;
}

article .n24-faq-item {
  background: var(--n24-surface);
  border: 1px solid var(--n24-border);
  border-radius: var(--n24-radius-sm);
  overflow: hidden;
  box-shadow: var(--n24-shadow-xs);
}

article .n24-faq-item + .n24-faq-item {
  margin-top: 14px;
}

article .n24-faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 52px 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.42;
  color: var(--n24-heading);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

article .n24-faq-item summary::-webkit-details-marker {
  display: none;
}

article .n24-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--n24-accent-soft);
  color: var(--n24-accent);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

article .n24-faq-item[open] summary {
  border-bottom: 1px solid #edf1f5;
}

article .n24-faq-item[open] summary::after {
  content: "–";
}

article .n24-faq-item p,
article .n24-faq-item .n24-p {
  margin: 0;
  padding: 16px 20px 18px;
  font-size: 0.98rem;
  color: var(--n24-text);
}

article .n24-wrap hr {
  border: 0;
  border-top: 1px solid var(--n24-border);
  margin: 30px 0;
  max-width: var(--n24-content-max);
}

article .n24-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--n24-radius);
}

article .n24-wrap figure {
  margin: 28px 0;
  max-width: 100%;
}

article .n24-wrap figcaption {
  margin-top: 10px;
  color: var(--n24-text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

article .n24-wrap details {
  max-width: var(--n24-content-max);
}

article .n24-wrap table {
  font-variant-numeric: tabular-nums;
}

article .n24-wrap :where(h2, h3, p, li, td, th, summary, cite) {
  overflow-wrap: break-word;
}

article .n24-wrap :where(ul, ol) {
  max-width: var(--n24-content-max);
}

article .n24-wrap :where(ul, ol) li > ul,
article .n24-wrap :where(ul, ol) li > ol {
  margin-top: 10px;
}

article .n24-wrap .wp-block-paragraph,
article .n24-wrap .wp-block-list,
article .n24-wrap .wp-block-heading,
article .n24-wrap .wp-block-table,
article .n24-wrap .wp-block-quote {
  max-width: 100%;
}

article .n24-wrap .wp-block-table table {
  width: 100%;
}

article .n24-wrap .wp-block-quote {
  margin: 28px 0;
}

article .n24-wrap .wp-block-image {
  margin: 28px 0;
}

article .n24-wrap .wp-block-image img {
  border-radius: var(--n24-radius);
}

@media (max-width: 900px) {
  article .n24-grid {
    grid-template-columns: 1fr;
  }

  article .n24-snapshot-block {
    padding: 20px;
  }
}

@media (max-width: 680px) {
  article .n24-wrap {
    margin: 24px auto 36px;
    padding: 0 16px;
    font-size: 16px;
  }

  article .n24-wrap > * + * {
    margin-top: 18px;
  }

  article .n24-wrap h2 {
    font-size: 1.68rem;
    margin: 28px 0 10px;
  }

  article .n24-wrap h3 {
    font-size: 1.06rem;
    margin: 24px 0 10px;
  }

  article .n24-stats-line {
    padding: 14px 16px;
    border-radius: 18px;
  }

  article .n24-snapshot-block {
    margin: 28px 0;
    padding: 18px;
    border-radius: 18px;
  }

  article .n24-card-header {
    padding: 14px 16px 12px;
  }

  article .n24-card-body {
    padding: 12px 16px 16px;
  }

  article .n24-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 14px;
  }

  article .n24-wrap blockquote,
  article .n24-tip,
  article .n24-note,
  article .n24-warning,
  article .n24-tldr {
    padding: 16px;
  }

  article .n24-faq-item summary {
    padding: 16px 48px 16px 16px;
  }

  article .n24-faq-item p,
  article .n24-faq-item .n24-p {
    padding: 14px 16px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  article .n24-wrap a {
    transition: none;
  }
}
