#content {
  --article-ink: #0d1720;
  --article-muted: #64717d;
  --article-line: #dce3e8;
  --article-brand: #008d6a;
  --article-brand-dark: #006b51;
  --article-navy: #071a2c;
  --article-blue: #1174b8;
  --article-shadow: 0 18px 45px rgba(4, 29, 45, 0.1);
  --article-radius: 14px;
  width: min(calc(100% - 36px), 1340px);
  margin: 0 auto;
  padding: 32px 0 70px;
  color: var(--article-ink);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

#content,
#content * {
  box-sizing: border-box;
}

#content a {
  color: var(--article-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

#content a:hover {
  color: var(--article-brand-dark);
}

#content img {
  max-width: 100%;
}

#content .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 30px;
  color: #7a8084;
  font-size: 14px;
}

#content .breadcrumbs a {
  color: var(--article-muted);
  text-decoration: none;
}

#content .content-grid {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) 270px;
  grid-template-areas: "share article sidebar";
  gap: 32px;
  align-items: start;
}

#content .content-grid > * {
  min-width: 0;
}

#content .content-grid > article {
  grid-area: article;
}

#content .article-kicker {
  margin: 0 0 10px;
  color: var(--article-brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

#content h1 {
  max-width: none;
  margin: 0;
  color: #333;
  font-size: clamp(36px, 3.7vw, 48px);
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1.18;
  text-align: left;
}

#content .deck {
  max-width: none;
  margin: 22px 0 20px;
  color: #4a4a4a;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
}

#content .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--article-line);
  color: var(--article-muted);
  font-size: 13px;
}

#content .article-meta strong {
  color: var(--article-ink);
}

#content .share-row {
  position: sticky;
  top: 92px;
  grid-area: share;
  display: flex;
  flex-direction: column;
  align-self: start;
  margin: 4px 0 0;
  border-top: 1px solid #d6dae3;
}

#content .share-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 47px;
  padding: 8px 9px;
  border: 0;
  border-bottom: 1px solid #d6dae3;
  border-radius: 0;
  background: transparent;
  color: #25283c;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
}

#content .share-button:hover,
#content .share-button:focus-visible {
  color: var(--article-brand-dark);
  background: #f4f8f7;
}

#content #copy-link::after,
#content #copy-link:after {
  display: none !important;
  content: none !important;
}

#content .share-icon {
  display: inline-grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #292c40;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

#content .share-icon.email {
  border-radius: 0;
  background: transparent;
  color: #292c40;
  font-size: 23px;
}

#content .share-icon.link {
  border: 1px solid #292c40;
  background: transparent;
  color: #292c40;
  font-size: 14px;
}

#content .hero-figure {
  margin: 8px 0 30px;
}

#content .hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--article-radius);
  background: var(--article-navy);
  box-shadow: var(--article-shadow);
  object-fit: cover;
}

#content figcaption {
  margin-top: 9px;
  color: var(--article-muted);
  font-size: 12px;
  line-height: 1.45;
}

#content .article-body {
  max-width: none;
}

#content .article-body > p:first-child {
  color: #333;
  font-size: 18px;
  line-height: 1.5;
}

#content .article-body h2 {
  margin: 42px 0 14px;
  color: #333;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.3;
  text-align: left;
}

#content .article-body h3 {
  margin: 29px 0 9px;
  color: #333;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
}

#content .article-body p {
  margin: 0 0 18px;
}

#content .article-body ul,
#content .article-body ol {
  margin: 0 0 20px;
  padding-left: 25px;
}

#content .article-body li {
  margin-bottom: 7px;
}

#content .answer-box {
  margin: 24px 0 30px;
  padding: 22px 24px;
  border-left: 5px solid var(--article-brand);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, #edf8f4, #f8fbfa);
}

#content .answer-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--article-brand-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#content .answer-box p {
  margin: 0;
  font-size: 18px;
  line-height: 1.58;
}

#content .key-points {
  margin: 26px 0 32px;
  padding: 23px 25px;
  border: 1px solid #cfe4dc;
  border-radius: 12px;
  background: #f8fcfb;
}

#content .key-points h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

#content .key-points ul {
  margin-bottom: 0;
}

#content .table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 22px 0 14px;
  overflow-x: auto;
  border: 1px solid var(--article-line);
  border-radius: 12px;
}

#content table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.42;
}

#content thead {
  background: var(--article-navy);
  color: #fff;
}

#content th,
#content td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--article-line);
  text-align: left;
  vertical-align: top;
}

#content th {
  font-size: 12px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

#content tbody tr:nth-child(even) {
  background: #f7f9fa;
}

#content tbody tr:last-child td {
  border-bottom: 0;
}

#content .yes {
  color: var(--article-brand-dark);
  font-weight: 800;
}

#content .note {
  color: var(--article-muted);
  font-size: 13px;
}

#content .source-block {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--article-line);
}

#content .source-block h2 {
  margin-top: 0;
  font-size: 20px;
}

#content .source-block li {
  font-size: 14px;
}

#content .faq {
  margin-top: 40px;
}

#content .faq details {
  border-top: 1px solid var(--article-line);
}

#content .faq details:last-child {
  border-bottom: 1px solid var(--article-line);
}

#content .faq summary {
  position: relative;
  padding: 17px 42px 17px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

#content .faq summary::-webkit-details-marker {
  display: none;
}

#content .faq summary::after {
  position: absolute;
  top: 12px;
  right: 8px;
  color: var(--article-brand);
  content: "+";
  font-size: 25px;
}

#content .faq details[open] summary::after {
  content: "−";
}

#content .faq details p {
  margin: -2px 0 18px;
  color: #394955;
}

#content .disclaimer {
  margin-top: 35px;
  padding: 17px 19px;
  border-radius: 10px;
  background: #f6f7f8;
  color: var(--article-muted);
  font-size: 12px;
}

#content .sidebar {
  position: sticky;
  top: 92px;
  grid-area: sidebar;
}

#content .side-card {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--article-line);
  border-radius: 10px;
  background: #fff;
}

#content .side-card h2 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

#content .fact-list {
  display: grid;
  gap: 0;
  margin: 0;
}

#content .fact-list div {
  padding: 11px 0;
  border-top: 1px solid var(--article-line);
}

#content .fact-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

#content .fact-list dt {
  color: var(--article-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#content .fact-list dd {
  margin: 3px 0 0;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

#content .cta-card {
  border: 0;
  background: linear-gradient(145deg, #08263b, #063f43);
  box-shadow: var(--article-shadow);
  color: #fff;
}

#content .cta-card p {
  color: #d8ede9;
  font-size: 14px;
}

#content .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 16px;
  border-radius: 8px;
  background: #54d3af;
  color: #062119;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

#content .related-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#content .related-list li {
  padding: 14px 0;
  border-top: 1px solid var(--article-line);
}

#content .related-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

#content .related-list a {
  color: #1a303e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

#content .related-list small {
  display: block;
  margin-bottom: 3px;
  color: var(--article-brand-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 1240px) {
  #content {
    width: min(calc(100% - 36px), 1180px);
  }

  #content .content-grid {
    grid-template-columns: 80px minmax(0, 1fr) 240px;
    grid-template-areas: "share article sidebar";
    gap: 20px;
  }
}

@media (max-width: 980px) {
  #content .content-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "share" "article" "sidebar";
    gap: 28px;
  }

  #content .share-row {
    position: static !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    border-top: 0;
  }

  #content .share-button {
    width: auto;
    min-height: 38px;
    padding: 5px 12px;
    border: 1px solid var(--article-line);
    border-radius: 999px;
    background: #fff;
  }

  #content .share-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  #content .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  #content .side-card {
    margin-bottom: 0;
  }

  #content .sidebar .side-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  #content {
    width: min(calc(100% - 28px), 100%);
    padding-top: 20px;
    font-size: 16px;
  }

  #content h1 {
    font-size: 34px;
  }

  #content .deck {
    font-size: 18px;
  }

  #content .article-body h2 {
    font-size: 25px;
  }

  #content .sidebar {
    grid-template-columns: 1fr;
  }

  #content .sidebar .side-card:last-child {
    grid-column: auto;
  }
}

@media print {
  #content .share-row,
  #content .sidebar {
    display: none !important;
  }

  #content {
    width: 100%;
    padding: 0;
  }

  #content .content-grid {
    display: block;
  }
}

/* Article scope: isolate article typography and spacing from the site-wide CSS. */
#content .nf522-article-content {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
}

#content .nf522-article-content h1,
#content .nf522-article-content h2,
#content .nf522-article-content h3,
#content .nf522-article-content p,
#content .nf522-article-content ul,
#content .nf522-article-content ol,
#content .nf522-article-content li,
#content .nf522-article-content span,
#content .nf522-article-content dl,
#content .nf522-article-content dt,
#content .nf522-article-content dd {
  margin-left: 0 !important;
  padding-left: 0;
  text-indent: 0 !important;
}

#content .nf522-article-content .article-body ul,
#content .nf522-article-content .article-body ol {
  margin: 0 0 20px !important;
  padding-left: 22px !important;
}

#content .nf522-article-content .article-body li {
  margin: 0 0 7px !important;
  padding: 0 !important;
}

#content .nf522-article-content .side-card h2,
#content .nf522-article-content .related-list,
#content .nf522-article-content .fact-list {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
}

#content .nf522-article-content .fact-list > div {
  display: block;
  margin: 0;
  text-align: left;
}

#content .nf522-article-content .fact-list dt,
#content .nf522-article-content .fact-list dd {
  display: block;
  float: none !important;
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  clear: both;
  text-align: left;
}

#content .nf522-article-content .fact-list dt {
  margin: 0 0 5px !important;
}

#content .nf522-article-content .fact-list dd {
  margin: 0 !important;
}

#content .nf522-article-content .cta-card h2 {
  color: #fff;
}

.nf522-product-selection {
  padding: 68px 0 74px;
  background: #f2f3f3;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
}

.nf522-product-selection-inner {
  width: min(calc(100% - 36px), 1340px);
  margin: 0 auto;
}

.nf522-product-selection h2 {
  margin: 0 0 34px;
  padding: 0;
  color: #20272b;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.nf522-product-selection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.nf522-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e4e7e8;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nf522-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 23, 32, 0.1);
}

.nf522-product-card-image,
.nf522-product-card-image img {
  display: block;
  width: 100%;
}

.nf522-product-card-image {
  overflow: hidden;
  background: #e8ecee;
}

.nf522-product-card-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.nf522-product-card:hover .nf522-product-card-image img {
  transform: scale(1.025);
}

.nf522-product-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 148px;
  padding: 22px 22px 20px;
}

.nf522-product-card h3 {
  margin: 0 0 24px;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.nf522-product-card h3 a {
  color: #20272b;
  text-decoration: none;
}

.nf522-product-card-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #159c52;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.nf522-product-card-more span {
  font-size: 24px;
  line-height: 0.8;
}

@media (min-width: 981px) {
  #content .nf522-article-content .share-row {
    position: sticky !important;
    top: 160px;
    left: auto;
    width: 100%;
    align-self: start;
    z-index: 2;
    background: #fff;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  #content .nf522-article-content .share-row {
    left: auto;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .nf522-product-selection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nf522-product-selection {
    padding: 50px 0 56px;
  }

  .nf522-product-selection h2 {
    margin-bottom: 25px;
    font-size: 28px;
  }

  .nf522-product-selection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
