.dp-v2 .content-main {
  position: relative;
  isolation: isolate;
}

.dp-v2 .site-header a[aria-current="page"] {
  background: var(--surface-blue, #e9edff);
  color: var(--accent-dark, #203bc5);
}

.dp-v2 .site-footer a[aria-current="page"] {
  color: var(--accent-dark, #203bc5);
}

.dp-v2.dp-content-index .content-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.dp-v2.dp-content-index .content-grid-single .post:first-child {
  min-height: 440px;
  grid-row: auto;
}

.dp-v2.dp-content-index .content-grid-single .post:first-child h2 {
  max-width: 22ch;
}

.dp-v2 .content-main::before {
  position: absolute;
  z-index: -1;
  width: clamp(280px, 38vw, 620px);
  height: clamp(280px, 38vw, 620px);
  border-radius: 50%;
  background: rgba(49, 84, 245, 0.075);
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

.dp-v2 .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  border: 1px solid rgba(49, 84, 245, 0.22);
  border-radius: 10px;
  background: var(--surface-blue, #e9edff);
  color: var(--accent-dark, #203bc5);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.085em;
  line-height: 1;
  text-transform: uppercase;
}

.dp-v2.dp-content-index .content-main {
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) 0 clamp(96px, 11vw, 156px);
}

.dp-v2.dp-content-index .content-main::before {
  top: -150px;
  right: -120px;
}

.dp-v2.dp-content-index .content-main > .wrap {
  width: min(calc(100% - 40px), var(--container, 1240px));
  max-width: none;
  margin-inline: auto;
  padding: 0;
}

.dp-v2 .content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 94px);
}

.dp-v2 .content-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink, #0c0f14);
  font-size: clamp(48px, 7.3vw, 94px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.dp-v2 .content-hero .sub {
  max-width: 34em;
  margin: 0 0 7px;
  color: var(--ink-soft, #3e4654);
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
}

.dp-v2 .content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 20px;
  counter-reset: content-card;
}

.dp-v2.dp-content-index .post {
  position: relative;
  display: flex;
  min-height: 278px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line, #dce2ec);
  border-radius: var(--radius-card, 28px);
  background: var(--surface, #ffffff);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: none;
  counter-increment: content-card;
  text-decoration: none;
  transition: border-color 220ms var(--ease, ease), transform 220ms var(--ease, ease), box-shadow 220ms var(--ease, ease);
}

.dp-v2.dp-content-index .post::after {
  position: absolute;
  right: clamp(24px, 3vw, 40px);
  bottom: clamp(20px, 2.5vw, 32px);
  color: rgba(49, 84, 245, 0.12);
  content: "0" counter(content-card);
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.72;
  pointer-events: none;
}

.dp-v2.dp-content-index .post:first-child {
  min-height: 576px;
  grid-row: span 2;
  border-color: transparent;
  background: var(--accent, #3154f5);
  color: #ffffff;
}

.dp-v2.dp-content-index .post:first-child::before {
  position: absolute;
  top: -22%;
  right: -16%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.dp-v2.dp-content-index .post:first-child::after {
  color: rgba(255, 255, 255, 0.14);
}


.dp-v2.dp-content-index .post:hover {
  border-color: var(--line-strong, #c9d1df);
  box-shadow: var(--shadow-soft, 0 28px 80px -50px rgba(40, 55, 92, 0.42));
  transform: translateY(-5px);
}

.dp-v2.dp-content-index .post:first-child:hover {
  border-color: transparent;
  box-shadow: 0 34px 80px -44px rgba(32, 59, 197, 0.78);
}

.dp-v2.dp-content-index .post:active {
  transform: translateY(1px) scale(0.99);
}

.dp-v2.dp-content-index .post .tag {
  position: relative;
  z-index: 1;
  margin: 0 0 auto;
  color: var(--accent-dark, #203bc5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dp-v2.dp-content-index .post:first-child .tag {
  color: rgba(255, 255, 255, 0.76);
}

.dp-v2.dp-content-index .post h2 {
  position: relative;
  z-index: 1;
  max-width: 21ch;
  margin: 46px 0 16px;
  color: var(--ink, #0c0f14);
  font-family: inherit;
  font-size: clamp(24px, 2.35vw, 34px);
  font-weight: 750;
  letter-spacing: -0.048em;
  line-height: 1.08;
  text-wrap: balance;
}

.dp-v2.dp-content-index .post:first-child h2 {
  max-width: 15ch;
  color: #ffffff;
  font-size: clamp(34px, 4.3vw, 58px);
  letter-spacing: -0.06em;
}

.dp-v2.dp-content-index .post p {
  position: relative;
  z-index: 1;
  max-width: 55ch;
  margin: 0 0 24px;
  color: var(--muted, #606a7a);
  font-size: 14px;
  line-height: 1.7;
  text-wrap: pretty;
}

.dp-v2.dp-content-index .post:first-child p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.dp-v2.dp-content-index .post .read {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: auto;
  color: var(--accent, #3154f5);
  font-size: 13px;
  font-weight: 800;
}

.dp-v2.dp-content-index .post:first-child .read {
  color: #ffffff;
}

.dp-v2.dp-content-article .content-main {
  overflow-x: clip;
  padding: 0 0 clamp(96px, 11vw, 156px);
}

.dp-v2.dp-content-article .content-main::before {
  top: 54px;
  right: -210px;
}

.dp-v2.dp-content-article .content-main > .wrap {
  width: min(calc(100% - 40px), var(--container, 1240px));
  max-width: none;
  margin-inline: auto;
  padding: 0;
}

.dp-v2 .crumb {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 18px 0 12px;
  color: var(--muted, #606a7a);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dp-v2 .crumb a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 9px;
  color: var(--ink-soft, #3e4654);
  padding: 0 5px;
  text-decoration: none;
}

.dp-v2 .crumb a:hover {
  color: var(--accent, #3154f5);
}

.dp-v2.dp-content-article article {
  width: min(100%, 820px);
  min-width: 0;
  margin-left: clamp(0px, 5vw, 72px);
  padding: clamp(46px, 6vw, 82px) 0 0;
  color: var(--ink-soft, #3e4654);
  font-size: clamp(16.5px, 1.25vw, 18px);
  line-height: 1.78;
}

.dp-v2.dp-content-article article > .eyebrow {
  margin-bottom: 26px;
}

.dp-v2.dp-content-article article > h1 {
  max-width: 13ch;
  margin: 0 0 22px;
  color: var(--ink, #0c0f14);
  font-family: inherit;
  font-size: clamp(43px, 6.1vw, 76px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.99;
  text-wrap: balance;
}

.dp-v2.dp-content-article .byline {
  margin: 0 0 clamp(40px, 5vw, 58px);
  color: var(--muted, #606a7a);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.dp-v2.dp-content-article article > .lead {
  max-width: 48ch;
  margin: 0 0 28px;
  color: var(--ink, #0c0f14);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.45;
  text-wrap: pretty;
}

.dp-v2.dp-content-article article p {
  margin: 0 0 20px;
  text-wrap: pretty;
}

.dp-v2.dp-content-article article strong {
  color: var(--ink, #0c0f14);
  font-weight: 750;
}

.dp-v2.dp-content-article article > h2,
.dp-v2.dp-content-article .cta-block h2 {
  margin: clamp(58px, 8vw, 88px) 0 18px;
  color: var(--ink, #0c0f14);
  font-family: inherit;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 750;
  letter-spacing: -0.052em;
  line-height: 1.06;
  text-wrap: balance;
}

.dp-v2.dp-content-article article > h3,
.dp-v2.dp-content-article .step h3 {
  margin: 36px 0 10px;
  color: var(--ink, #0c0f14);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.3;
  text-wrap: balance;
}

.dp-v2.dp-content-article .answer-box {
  position: relative;
  overflow: hidden;
  margin: 34px 0 62px;
  border: 1px solid rgba(49, 84, 245, 0.2);
  border-radius: var(--radius-card, 28px);
  background: var(--surface-blue, #e9edff);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: none;
}

.dp-v2.dp-content-article .answer-box::after {
  position: absolute;
  top: -58px;
  right: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(49, 84, 245, 0.2);
  border-radius: 50%;
  content: "";
}

.dp-v2.dp-content-article .answer-box .label {
  display: block;
  margin: 0 0 13px;
  color: var(--accent-dark, #203bc5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dp-v2.dp-content-article .answer-box p {
  position: relative;
  z-index: 1;
  max-width: 59ch;
  margin: 0;
  color: var(--accent-ink, #102070);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 550;
  line-height: 1.65;
}

.dp-v2.dp-content-article .table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin: 28px 0 36px;
  border: 1px solid var(--line, #dce2ec);
  border-radius: 18px;
  background: var(--surface, #ffffff);
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.dp-v2.dp-content-article .table-hint {
  display: none;
  margin: 0 0 10px;
  color: var(--muted, #606a7a);
  font-size: 11.5px;
  font-weight: 700;
}

.dp-v2.dp-content-article .table-scroll table {
  display: table;
  width: 100%;
  min-width: 640px;
  max-width: none;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  border-collapse: collapse;
}

.dp-v2.dp-content-article caption.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.dp-v2.dp-content-article th {
  background: var(--ink, #0c0f14);
  color: #ffffff;
  padding: 15px 17px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-align: left;
  text-transform: uppercase;
}

.dp-v2.dp-content-article td {
  border-top: 1px solid var(--line, #dce2ec);
  color: var(--ink-soft, #3e4654);
  padding: 15px 17px;
  vertical-align: top;
}

.dp-v2.dp-content-article td:first-child {
  color: var(--ink, #0c0f14);
  font-weight: 750;
  white-space: nowrap;
}

.dp-v2.dp-content-article ul {
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.dp-v2.dp-content-article li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--line, #dce2ec);
  padding: 16px 0 16px 30px;
}

.dp-v2.dp-content-article li::before {
  position: absolute;
  top: 26px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--accent, #3154f5);
  content: "";
  transform: rotate(45deg);
}

.dp-v2.dp-content-article .callout,
.dp-v2.dp-content-article .warn {
  margin: 32px 0;
  border: 1px solid rgba(49, 84, 245, 0.2);
  border-radius: 16px;
  background: var(--surface, #ffffff);
  color: var(--ink-soft, #3e4654);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft, 0 28px 80px -50px rgba(40, 55, 92, 0.42));
  font-size: 15px;
  font-weight: 550;
  line-height: 1.7;
}

.dp-v2.dp-content-article .article-source {
  margin: -20px 0 30px;
  color: var(--muted, #606a7a);
  font-size: 13px;
  line-height: 1.6;
}

.dp-v2.dp-content-article .article-pricing-table table {
  min-width: 760px;
}

.dp-v2.dp-content-article .article-pricing-table td:nth-child(2) {
  min-width: 260px;
}

.dp-v2.dp-content-article .article-pricing-table td:nth-child(3) {
  min-width: 138px;
}

.dp-v2.dp-content-article .article-pricing-table td:last-child,
.dp-v2.dp-content-article .article-pricing-table td:last-child strong {
  color: var(--ink, #0c0f14);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.dp-v2.dp-content-article .article-pricing-table td small {
  display: block;
  margin-top: 10px;
  color: var(--muted, #606a7a);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  white-space: normal;
}

.dp-v2.dp-content-article .article-pricing-table__featured td {
  background: rgba(49, 84, 245, 0.055);
}

.dp-v2.dp-content-article .article-pricing-table__featured td:first-child {
  color: var(--accent-dark, #203bc5);
}

.dp-v2.dp-content-article .article-plan-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: -15px 0 30px;
  color: var(--accent-dark, #203bc5);
  font-size: 14px;
  font-weight: 800;
}

.dp-v2.dp-content-article .article-terms {
  margin: 0 0 42px;
  border-block: 1px solid var(--line, #dce2ec);
  padding: 8px 0;
}

.dp-v2.dp-content-article .article-terms p {
  margin: 0;
  border-bottom: 1px solid var(--line, #dce2ec);
  padding: 14px 0;
  color: var(--ink-soft, #3e4654);
  font-size: 13px;
  line-height: 1.65;
}

.dp-v2.dp-content-article .article-terms p:last-child {
  border-bottom: 0;
}

.dp-v2.dp-content-article .warn {
  border-color: var(--line, #dce2ec);
  background: var(--surface-soft, #edf1f8);
}

.dp-v2.dp-content-article .step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line, #dce2ec);
  border-radius: 0;
  background: transparent;
  padding: 26px 0 28px;
}

.dp-v2.dp-content-article .step:last-of-type {
  border-bottom: 1px solid var(--line, #dce2ec);
}

.dp-v2.dp-content-article .step .n {
  display: inline-grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  margin: 1px 0 0;
  border-radius: 13px;
  background: var(--accent, #3154f5);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.dp-v2.dp-content-article .step h3 {
  margin: 0 0 7px;
}

.dp-v2.dp-content-article .step p {
  margin: 0;
  color: var(--muted, #606a7a);
  font-size: 15px;
  line-height: 1.7;
}

.dp-v2.dp-content-article .cta-block {
  position: relative;
  overflow: hidden;
  margin: clamp(66px, 9vw, 100px) 0;
  border-radius: var(--radius-card, 28px);
  background: var(--accent, #3154f5);
  color: #ffffff;
  padding: clamp(34px, 6vw, 62px);
  text-align: left;
}

.dp-v2.dp-content-article .cta-block::after {
  position: absolute;
  right: -92px;
  bottom: -106px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.dp-v2.dp-content-article .cta-block h2 {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  margin: 0 0 16px;
  color: #ffffff;
}

.dp-v2.dp-content-article .cta-block > p:not(.cta-note) {
  position: relative;
  z-index: 1;
  max-width: 47ch;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.dp-v2.dp-content-article .cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill, 999px);
  background: #ffffff;
  color: var(--accent-dark, #203bc5);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 220ms var(--ease, ease), box-shadow 220ms var(--ease, ease);
}

.dp-v2.dp-content-article .cta-btn:hover {
  box-shadow: 0 20px 40px -24px rgba(12, 15, 20, 0.72);
  transform: translateY(-2px);
}

.dp-v2.dp-content-article .cta-btn:active {
  transform: translateY(1px) scale(0.985);
}

.dp-v2.dp-content-article .cta-note {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 650;
}

.dp-v2.dp-content-article details {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line, #dce2ec);
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.dp-v2.dp-content-article details:first-of-type {
  border-top: 1px solid var(--line, #dce2ec);
}

.dp-v2.dp-content-article summary {
  position: relative;
  min-height: 68px;
  cursor: pointer;
  color: var(--ink, #0c0f14);
  padding: 21px 50px 21px 0;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.5;
  list-style: none;
}

.dp-v2.dp-content-article summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: var(--surface-blue, #e9edff);
  color: var(--accent-dark, #203bc5);
  content: "+";
  font-size: 20px;
  font-weight: 600;
  transform: translateY(-50%);
}

.dp-v2.dp-content-article details[open] summary::after {
  content: "−";
}

.dp-v2.dp-content-article summary::-webkit-details-marker {
  display: none;
}

.dp-v2.dp-content-article details p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted, #606a7a);
  padding: 0 50px 23px 0;
  font-size: 15px;
  line-height: 1.75;
}

.dp-v2.dp-content-article a.inline,
.dp-v2.dp-content-article article a:not(.cta-btn) {
  color: var(--accent-dark, #203bc5);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(49, 84, 245, 0.32);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.dp-v2.dp-content-article article a:hover {
  text-decoration-color: currentColor;
}

.dp-v2.dp-content-article .related-reading {
  margin-top: 42px;
  border-top: 1px solid var(--line, #dce2ec);
  padding-top: 28px;
  color: var(--muted, #606a7a);
  font-size: 14px;
}

@media (max-width: 980px) {
  .dp-v2 .content-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dp-v2 .content-hero .sub {
    max-width: 44em;
  }

  .dp-v2.dp-content-article article {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .dp-v2 .content-grid {
    grid-template-columns: 1fr;
  }

  .dp-v2.dp-content-index .post,
  .dp-v2.dp-content-index .post:first-child {
    min-height: 330px;
    grid-column: auto;
    grid-row: auto;
    padding: 30px;
  }

  .dp-v2.dp-content-index .post:first-child {
    min-height: 480px;
  }

  .dp-v2.dp-content-index .post h2 {
    max-width: 19ch;
  }

}

@media (max-width: 520px) {
  body.dp-content-article .whatsapp-float { display: none; }

  .dp-v2.dp-content-index .content-main,
  .dp-v2.dp-content-article .content-main {
    padding-bottom: 90px;
  }

  .dp-v2.dp-content-index .content-main > .wrap,
  .dp-v2.dp-content-article .content-main > .wrap {
    width: min(calc(100% - 28px), var(--container, 1240px));
  }

  .dp-v2 .content-hero-copy h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .dp-v2.dp-content-index .post {
    min-height: 350px;
    padding: 26px;
  }

  .dp-v2.dp-content-index .post:first-child {
    min-height: 500px;
  }

  .dp-v2.dp-content-index .post:first-child h2 {
    font-size: clamp(32px, 10vw, 45px);
  }

  .dp-v2 .crumb {
    font-size: 12px;
  }

  .dp-v2.dp-content-article article {
    padding-top: 34px;
  }

  .dp-v2.dp-content-article article > h1 {
    max-width: 14ch;
    font-size: clamp(34px, 9.5vw, 42px);
    letter-spacing: -0.04em;
    line-height: 1.03;
  }

  .dp-v2.dp-content-article article > .lead {
    font-size: 19px;
  }

  .dp-v2.dp-content-article .table-hint {
    display: block;
  }

  .dp-v2.dp-content-article .table-hint + .table-scroll {
    margin-top: 0;
  }

  .dp-v2.dp-content-article .article-pricing-table {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .dp-v2.dp-content-article .article-pricing-table table,
  .dp-v2.dp-content-article .article-pricing-table tbody,
  .dp-v2.dp-content-article .article-pricing-table tr,
  .dp-v2.dp-content-article .article-pricing-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .dp-v2.dp-content-article .article-pricing-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .dp-v2.dp-content-article .article-pricing-table tr {
    margin-bottom: 18px;
    border: 1px solid var(--line, #dce2ec);
    border-radius: 16px;
    background: var(--surface, #fff);
    padding: 8px 20px 14px;
  }

  .dp-v2.dp-content-article .article-pricing-table__featured {
    border-color: var(--accent, #3154f5);
  }

  .dp-v2.dp-content-article .article-pricing-table td,
  .dp-v2.dp-content-article .article-pricing-table td:nth-child(2),
  .dp-v2.dp-content-article .article-pricing-table td:nth-child(3) {
    min-width: 0;
    border-top: 1px solid var(--line, #dce2ec);
    padding: 14px 0;
    white-space: normal;
  }

  .dp-v2.dp-content-article .article-pricing-table td:first-child {
    border-top: 0;
    color: var(--ink, #0c0f14);
    font-size: 20px;
  }

  .dp-v2.dp-content-article .article-pricing-table td::before {
    display: block;
    margin-bottom: 5px;
    color: var(--muted, #606a7a);
    content: attr(data-label);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .dp-v2.dp-content-article .article-pricing-table td:first-child::before {
    display: none;
  }

  .dp-v2.dp-content-article .answer-box,
  .dp-v2.dp-content-article .cta-block {
    margin-inline: -2px;
    padding: 27px 24px;
  }

  .dp-v2.dp-content-article .step {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 14px;
  }

  .dp-v2.dp-content-article .step .n {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .dp-v2.dp-content-article summary {
    padding-right: 43px;
    font-size: 15px;
  }

  .dp-v2.dp-content-article details p {
    padding-right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dp-v2.dp-content-index .post,
  .dp-v2.dp-content-article .cta-btn {
    transition: none;
  }
}

@media print {
  .dp-v2.dp-content-article article {
    max-width: none;
    margin-left: 0;
  }
}
