body.inquiry-modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

.inquiry-float {
  position: fixed;
  z-index: 2400;
  top: 50%;
  right: 0;
  display: flex;
  width: 56px;
  min-height: 132px;
  padding: 14px 8px;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 9px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  border-radius: 6px 0 0 6px;
  background: #078c4d;
  box-shadow: 0 12px 30px rgba(7, 55, 32, .28);
  font: inherit;
  cursor: pointer;
  transition: background-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}

.nav-open .inquiry-float,
.inquiry-modal-open .inquiry-float,
.live-chat-open .inquiry-float,
.live-chat-open .rd1-mobile-contact-bar {
  opacity: 0;
  pointer-events: none;
}

.inquiry-float:hover {
  transform: translate(-3px, -50%);
  background: #067a43;
  box-shadow: 0 16px 36px rgba(7, 55, 32, .34);
}

.inquiry-float.is-obscured {
  opacity: 0;
  pointer-events: none;
  transform: translate(100%, -50%);
}

.inquiry-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .96);
  outline-offset: -5px;
}

.inquiry-float__mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #078c4d;
  border-radius: 50%;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.inquiry-float__label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.inquiry-modal[hidden] {
  display: none;
}

.inquiry-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 12, .72);
  backdrop-filter: blur(5px);
}

.inquiry-modal__dialog {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 42px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

.inquiry-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #20242a;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.inquiry-modal__header {
  max-width: 680px;
  margin-bottom: 30px;
}

.inquiry-modal__header span {
  color: #e84d3d;
  font-size: 13px;
  font-weight: 900;
}

.inquiry-modal__header h2 {
  margin: 8px 0 12px;
  color: #111318;
  font-size: 36px;
  line-height: 1.18;
}

.inquiry-modal__header p {
  margin: 0;
  color: #626a75;
  line-height: 1.75;
}

.inquiry-modal__content {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: center;
}

.inquiry-modal__qr {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: #fff;
  background: #101317;
}

.inquiry-modal__qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.inquiry-modal__qr strong,
.inquiry-modal__qr span {
  display: block;
}

.inquiry-modal__qr strong {
  margin-bottom: 5px;
  font-size: 20px;
}

.inquiry-modal__qr span {
  color: #cdd2d9;
  font-size: 13px;
  line-height: 1.55;
}

.inquiry-modal__channels {
  border-top: 1px solid #dfe3e8;
}

.inquiry-modal__channel {
  padding: 20px 0;
  border-bottom: 1px solid #dfe3e8;
}

.inquiry-modal__channel small,
.inquiry-modal__channel strong,
.inquiry-modal__channel a {
  display: block;
}

.inquiry-modal__channel small {
  margin-bottom: 8px;
  color: #727a85;
  font-size: 12px;
  font-weight: 800;
}

.inquiry-modal__channel a {
  color: #111318;
  font-size: 28px;
  font-weight: 900;
}

.inquiry-modal__channel strong {
  color: #111318;
  font-size: 17px;
}

.inquiry-modal__channel p {
  margin: 8px 0 0;
  color: #626a75;
  font-size: 14px;
  line-height: 1.65;
}

.inquiry-modal__channel button {
  margin-top: 10px;
  padding: 0;
  color: #e84d3d;
  border: 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.inquiry-modal__actions {
  display: flex;
  gap: 10px;
  padding-top: 20px;
}

.inquiry-modal__actions a {
  flex: 1;
  padding: 13px 16px;
  text-align: center;
  color: #fff;
  background: #e84d3d;
  font-weight: 900;
}

.inquiry-modal__actions a:last-child {
  color: #111318;
  background: #eef0f3;
}

.inquiry-modal__status {
  min-height: 24px;
  margin: 20px 0 0;
  color: #178449;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 680px) {
  .inquiry-float {
    top: 50%;
    right: 0;
    bottom: auto;
    width: 44px;
    height: 52px;
    min-height: 0;
    padding: 4px;
    transform: translateY(-50%);
    border-radius: 6px 0 0 6px;
  }

  .inquiry-float:hover {
    transform: translate(-2px, -50%);
  }

  .inquiry-float__mark {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .inquiry-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .inquiry-modal {
    padding: 12px;
  }

  .inquiry-modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 34px 22px 26px;
  }

  .inquiry-modal__header {
    margin-bottom: 22px;
  }

  .inquiry-modal__header h2 {
    font-size: 29px;
  }

  .inquiry-modal__content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .inquiry-modal__qr {
    grid-template-columns: 136px 1fr;
    align-items: center;
    padding: 16px;
  }

  .inquiry-modal__channel a {
    font-size: 24px;
  }

  .inquiry-modal__actions {
    display: grid;
  }
}

.blog-article-shell {
  color: #161616;
  background: #fbfbfb;
}

.blog-article-page {
  overflow: clip;
  background: #fbfbfb;
}

.article-container {
  width: min(1197px, calc(100% - 64px));
  margin-inline: auto;
}

.article-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.article-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #ea543f;
}

.article-hero {
  padding-bottom: 24px;
  background: #fbfbfb;
}

.article-hero .blog-breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 96px;
  color: #6d737a;
  border-bottom: 1px solid #e2e4e5;
  font-size: 13px;
}

.article-hero .blog-breadcrumbs a:hover {
  color: #ea543f;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  padding-top: 48px;
}

.article-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}

.article-kicker {
  margin: 0 0 14px;
  color: #ea543f;
  font-size: 13px;
  font-weight: 700;
}

.article-hero h1 {
  max-width: 590px;
  margin: 0;
  color: #161616;
  font-size: 46px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 0;
}

.article-byline {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 1.45fr);
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #dedfe0;
}

.article-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.article-author img {
  width: 52px;
  height: 52px;
  border: 1px solid #dedfe0;
  border-radius: 50%;
  object-fit: cover;
}

.article-author div {
  display: grid;
  gap: 3px;
}

.article-author strong {
  font-size: 15px;
}

.article-author span,
.article-dates dt {
  color: #737980;
  font-size: 12px;
}

.article-dates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.article-dates div {
  min-width: 0;
}

.article-dates dt,
.article-dates dd {
  margin: 0;
}

.article-dates dd {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.article-hero-media {
  display: grid;
  min-height: 432px;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: #eceff1;
}

.article-hero-media img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.article-content-section {
  padding: 80px 0 104px;
}

.article-content-grid {
  display: grid;
  grid-template-columns: 207px minmax(0, 519px) 311px;
  gap: 80px;
  align-items: start;
}

.article-left-rail {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 150px);
}

.article-share {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dfe1e2;
}

.article-share > span:first-child,
.article-toc summary {
  color: #161616;
  font-size: 14px;
  font-weight: 700;
}

.article-share button {
  width: max-content;
  padding: 0;
  color: #69727d;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.article-share button:hover {
  color: #ea543f;
}

.article-share-status {
  min-height: 17px;
  color: #69727d;
  font-size: 12px;
}

.article-toc {
  overflow: auto;
  max-height: calc(100vh - 260px);
}

.article-toc summary {
  margin-bottom: 16px;
  list-style: none;
  cursor: pointer;
}

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

.article-toc ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: block;
  padding: 9px 0 9px 14px;
  color: #69727d;
  border-left: 2px solid #dfe1e2;
  font-size: 13px;
  line-height: 1.45;
}

.article-toc a:hover,
.article-toc a.is-active {
  color: #161616;
  border-left-color: #ea543f;
}

.article-right-rail {
  align-self: stretch;
}

.article-quote-card {
  position: sticky;
  top: 120px;
  padding: 16px 22px 24px;
  border: 1px solid #e0e2e3;
  border-radius: 4px;
  background: #fff;
}

.article-quote-media {
  display: grid;
  height: 170px;
  margin: -16px -22px 22px;
  place-items: center;
  overflow: hidden;
  background: #eceff1;
}

.article-quote-media img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.article-quote-kicker {
  margin: 0 0 8px;
  color: #ea543f;
  font-size: 12px;
  font-weight: 700;
}

.article-quote-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
}

.article-quote-card > p:not(.article-quote-kicker) {
  margin: 0 0 16px;
  color: #68717a;
  font-size: 14px;
  line-height: 1.65;
}

.article-quote-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.article-quote-card li {
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.45;
}

.article-quote-card li::before {
  float: left;
  margin-left: -18px;
  color: #ea543f;
  content: "+";
  font-weight: 700;
}

.article-quote-primary,
.article-quote-phone {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
}

.article-quote-primary {
  color: #fff;
  background: #ea543f;
}

.article-quote-primary:hover {
  background: #d94a37;
}

.article-quote-phone {
  margin-top: 10px;
  color: #202830;
  border: 1px solid #cdd1d4;
}

.article-body {
  min-width: 0;
  color: #2e3337;
  font-size: 16px;
  line-height: 1.8;
}

.article-lead {
  margin: 0 0 44px;
  padding: 22px 24px;
  color: #242a2f;
  border-left: 4px solid #ea543f;
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.article-section {
  scroll-margin-top: 130px;
}

.article-section + .article-section {
  margin-top: 52px;
}

.article-body h2 {
  margin: 0 0 20px;
  color: #161616;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.article-body h3 {
  margin: 34px 0 12px;
  color: #20252a;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
}

.article-body p {
  margin: 0 0 20px;
}

.article-body a {
  color: #d94734;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: #a83224;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 22px;
}

.article-body code {
  padding: 2px 5px;
  border-radius: 2px;
  background: #eceff1;
  font-size: .92em;
}

.article-code {
  margin: 22px 0;
  padding: 18px 20px;
  overflow-x: auto;
  border-left: 3px solid #f34f41;
  background: #f2f4f5;
  color: #20282d;
  font: 500 14px/1.7 Consolas, "Courier New", monospace;
  white-space: pre-wrap;
}

.article-code code {
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.article-table-wrap {
  width: 100%;
  margin: 28px 0 34px;
  overflow-x: auto;
  border: 1px solid #d9dddf;
  background: #fff;
}

.article-table-wrap:focus-visible {
  outline: 2px solid #ea543f;
  outline-offset: 2px;
}

.article-body table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}

.article-body th,
.article-body td {
  padding: 14px 16px;
  border-right: 1px solid #e0e3e5;
  border-bottom: 1px solid #e0e3e5;
  text-align: left;
  vertical-align: top;
}

.article-body th:last-child,
.article-body td:last-child {
  border-right: 0;
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.article-body th {
  color: #fff;
  background: #202830;
  font-weight: 600;
}

.article-body tbody tr:nth-child(even) {
  background: #f5f6f6;
}

.article-figure {
  margin: 26px 0 30px;
}

.article-figure img {
  display: block;
  width: 100%;
  max-height: 420px;
  border: 1px solid #dfe2e4;
  border-radius: 2px;
  background: #eceff1;
  object-fit: contain;
}

.article-figure figcaption {
  margin-top: 10px;
  color: #747b82;
  font-size: 13px;
  line-height: 1.55;
}

.article-section--faq {
  padding-top: 8px;
  border-top: 3px solid #202830;
}

.article-section--faq h3 {
  margin: 0;
  padding: 20px 0 10px;
  border-top: 1px solid #dfe2e4;
  font-size: 19px;
}

.article-section--faq h2 + h3 {
  border-top: 0;
}

.article-section--references {
  padding-top: 28px;
  border-top: 1px solid #dfe2e4;
}

.article-section--references p {
  padding-left: 16px;
  border-left: 2px solid #dfe2e4;
  color: #626a72;
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.article-section--scope {
  padding: 24px;
  border: 1px solid #dfe2e4;
  background: #f3f4f4;
}

.article-section--scope h2 {
  font-size: 24px;
}

.article-related-section {
  padding: 88px 0 96px;
  border-top: 1px solid #e0e2e3;
  background: #fff;
}

.article-related-section header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 38px;
}

.article-related-section header .article-kicker {
  grid-column: 1 / -1;
}

.article-related-section h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.35;
}

.article-related-section header > a {
  color: #d94734;
  font-weight: 700;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-related-card {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid #dfe2e4;
  border-radius: 4px;
  background: #fff;
}

.article-related-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eceff1;
}

.article-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.article-related-card:hover img {
  transform: scale(1.03);
}

.article-related-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.article-related-card span {
  margin-bottom: 14px;
  color: #737a81;
  font-size: 12px;
}

.article-related-card h3 {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.45;
}

.article-related-link {
  align-self: flex-start;
  margin-top: auto;
  color: #d94734;
  font-weight: 700;
}

.article-bottom-cta {
  padding: 84px 0;
  color: #fff;
  background: #202830;
}

.article-bottom-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 80px;
  align-items: center;
}

.article-bottom-cta h2 {
  max-width: 720px;
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.3;
}

.article-bottom-cta p:not(.article-kicker) {
  max-width: 760px;
  margin: 0;
  color: #c9ced2;
  line-height: 1.7;
}

.article-bottom-cta-inner > div:last-child {
  display: grid;
  gap: 12px;
}

.article-bottom-cta-inner > div:last-child a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: 700;
}

.article-bottom-cta-inner > div:last-child a:first-child {
  color: #fff;
  background: #ea543f;
}

.article-bottom-cta-inner > div:last-child a:last-child {
  color: #fff;
  border: 1px solid #66717a;
}

.article-evidence {
  margin-top: 56px;
  padding: 32px;
  border-top: 4px solid #e7592b;
  background: #f4f7f8;
}

.article-context-links {
  margin-top: 40px;
  padding: 20px 22px;
  color: #203840;
  background: #f4f7f8;
  border-left: 4px solid #e7592b;
}

.article-context-links strong {
  display: block;
  margin-bottom: 8px;
  color: #18333e;
}

.article-context-links p {
  margin: 0;
}

.article-context-links a {
  color: #9f3218;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-context-links a:hover,
.article-context-links a:focus-visible {
  color: #6f1f0e;
}

.article-evidence > header {
  margin-bottom: 24px;
}

.article-evidence > header h2 {
  margin: 6px 0 0;
  color: #162c36;
  font-size: 28px;
  line-height: 1.25;
}

.article-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 24px;
}

.article-evidence-grid > div {
  min-width: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid #dce4e7;
}

.article-evidence-grid h3 {
  margin: 0 0 14px;
  color: #18333e;
  font-size: 18px;
  line-height: 1.35;
}

.article-client-group + .article-client-group {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e3e8ea;
}

.article-client-group ul,
.article-evidence-certifications ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-client-group li {
  padding: 7px 10px;
  color: #203840;
  background: #eef2f3;
  border-left: 3px solid #e7592b;
  font-size: 14px;
  line-height: 1.35;
}

.article-evidence-certifications ul {
  display: grid;
  gap: 10px;
}

.article-evidence-certifications li {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  background: #18333e;
}

.article-evidence-certifications strong {
  color: #fff;
  font-size: 16px;
}

.article-evidence-certifications span {
  color: #d9e4e7;
  font-size: 13px;
}

@media (max-width: 760px) {
  .article-evidence {
    margin-top: 40px;
    padding: 24px 18px;
  }

  .article-evidence > header h2 {
    font-size: 24px;
  }

  .article-evidence-grid {
    grid-template-columns: 1fr;
  }

  .article-evidence-grid > div {
    padding: 18px;
  }
}

@media (max-width: 1260px) {
  .article-container {
    width: calc(100% - 48px);
  }

  .article-content-grid {
    grid-template-columns: 180px minmax(0, 1fr) 280px;
    gap: 32px;
  }

  .article-byline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .article-hero h1 {
    font-size: 40px;
    line-height: 1.25;
  }

  .article-hero-media {
    min-height: 380px;
  }

  .article-content-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
  }

  .article-left-rail {
    position: static;
    grid-column: 1 / -1;
    max-height: none;
  }

  .article-share {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }

  .article-share-status {
    min-height: 0;
  }

  .article-toc {
    max-height: none;
    padding: 18px 20px;
    border: 1px solid #dfe2e4;
    background: #fff;
  }

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

  .article-toc a {
    height: 100%;
  }

  .article-right-rail {
    align-self: start;
  }

  .article-quote-card {
    top: 100px;
  }

  .article-related-card {
    min-height: 390px;
  }
}

@media (max-width: 780px) {
  .article-container {
    width: calc(100% - 32px);
  }

  .article-hero .blog-breadcrumbs {
    min-height: 70px;
    overflow: hidden;
    white-space: nowrap;
  }

  .article-hero .blog-breadcrumbs [aria-current="page"] {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 22px;
  }

  .article-hero-copy {
    padding: 14px 0 0;
  }

  .article-hero h1 {
    max-width: none;
    font-size: 34px;
    line-height: 1.32;
  }

  .article-byline {
    gap: 18px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .article-dates {
    gap: 8px;
  }

  .article-dates dd {
    font-size: 12px;
  }

  .article-hero-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .article-content-section {
    padding: 54px 0 72px;
  }

  .article-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-left-rail,
  .article-right-rail {
    grid-column: auto;
  }

  .article-share {
    display: none;
  }

  .article-toc {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .article-toc summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #dfe2e4;
    background: #fff;
  }

  .article-toc summary::after {
    color: #ea543f;
    content: "+";
    font-size: 20px;
  }

  .article-toc[open] summary::after {
    content: "-";
  }

  .article-toc ol {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 28px;
  }

  .article-body h3 {
    font-size: 20px;
  }

  .article-quote-card {
    position: static;
  }

  .article-related-section {
    padding: 68px 0 72px;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-related-card {
    min-height: 0;
  }

  .article-bottom-cta {
    padding: 64px 0;
  }

  .article-bottom-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .article-hero h1 {
    font-size: 31px;
  }

  .article-author img {
    width: 46px;
    height: 46px;
  }

  .article-dates {
    grid-template-columns: 1fr 1fr;
  }

  .article-dates div:first-child {
    grid-column: 1 / -1;
  }

  .article-lead {
    padding: 18px;
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 26px;
  }

  .article-table-wrap {
    margin-right: 0;
    margin-left: 0;
  }

  .article-section--scope {
    padding: 20px;
  }

  .article-related-section header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-related-section h2,
  .article-bottom-cta h2 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .article-related-media img {
    transition: none;
  }
}

.blog-kicker,
.blog-tag {
  color: #555d63;
}

.blog-feature-main p,
.blog-index-heading > p:last-child,
.blog-card-body > p,
.blog-noscript {
  color: #59626a;
}

.blog-feature-meta,
.blog-card-meta,
.blog-feature-list article > div {
  color: #555d63;
}

.blog-product-link,
.blog-feature-meta a,
.blog-card-meta a,
.blog-feature-list article > div a,
.blog-topic-link {
  color: #a73522;
}

.blog-topic-link:hover,
.blog-topic-link.is-active,
.blog-pagination button:hover,
.blog-pagination button.is-active,
.blog-cta-primary {
  color: #fff;
  background: #a73522;
}

.blog-cta-primary:hover {
  background: #852817;
}

.article-kicker,
.article-quote-kicker {
  color: #a73522;
}

.article-author span,
.article-dates dt,
.article-figure figcaption,
.article-related-card span {
  color: #59626a;
}

.article-body a,
.article-related-section header > a,
.article-related-link {
  color: #9f3218;
}

.article-body a:hover,
.article-related-section header > a:hover,
.article-related-link:hover {
  color: #741f10;
}

.article-quote-primary,
.article-bottom-cta-inner > div:last-child a:first-child {
  color: #fff;
  background: #a73522;
}

.article-quote-primary:hover,
.article-bottom-cta-inner > div:last-child a:first-child:hover {
  background: #852817;
}

.article-bottom-cta .article-kicker {
  color: #ff8c78;
}

@media (max-width: 560px) {
  .blog-hero::before,
  .blog-hero-art {
    display: none;
    background: none;
    content: none;
  }
}
