@charset "UTF-8";
body {
  font-family: Inter;
}

.hero-sec {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 80px 60px;
}
.hero-sec .wrapper {
  width: min(1280px, 100%);
}
.hero-sec .wrapper .tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  width: fit-content;
  border-radius: 100px;
  border: 1px solid #e4e4e7;
  background: #fafafa;
  color: #71717a;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  letter-spacing: -0.56px;
}
.hero-sec .wrapper .tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--Gradients-Shop-Glow, linear-gradient(45deg, #fc739c 0.34%, #cc4570 99.66%));
}
.hero-sec .wrapper .heading {
  margin-top: 40px;
  color: var(--Semantic-Text-Primary, #18181b);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -2.24px;
  max-width: 75%;
}
.hero-sec .wrapper .desc {
  margin-top: 20px;
  color: var(--Primitives-Grey-500, #71717a);
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.36px;
}
.hero-sec .wrapper .byline {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #18181b;
}
.hero-sec .wrapper .byline .byline-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-sec .wrapper .byline .author-cont {
  display: flex;
  flex-direction: column;
}
.hero-sec .wrapper .byline .author-cont .auth-name {
  color: var(--Semantic-Text-Primary, #18181b);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.56px;
}
.hero-sec .wrapper .byline .author-cont .auth-date {
  color: var(--Semantic-Text-Secondary, #71717a);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.24px;
}

.blog-body {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 60px 60px 20px;
  display: grid;
  grid-template-columns: 210px 1fr 200px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1140px) {
  .blog-body {
    grid-template-columns: 200px 1fr;
    padding: 40px 24px 20px;
  }
  .blog-body .blog-cta-rail {
    display: none;
  }
}
@media (max-width: 768px) {
  .blog-body {
    grid-template-columns: 1fr;
    padding: 28px 24px 20px;
  }
  .blog-body .blog-toc {
    display: none;
  }
}
.blog-body .blog-toc {
  position: sticky;
  top: 100px;
}
.blog-body .blog-toc__label {
  color: #999;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.blog-body .blog-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-body .blog-toc__item a {
  display: block;
  padding: 10px 14px;
  color: #6b6b75;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.blog-body .blog-toc__item a:hover {
  color: #fc739c;
}
.blog-body .blog-toc__item.active a {
  color: #fc739c;
  font-weight: 600;
  border-left-color: #fc739c;
}
.blog-body .blog-toc__item--sub a {
  padding-left: 24px;
  font-size: 13px;
  color: #9b9ba3;
}
.blog-body .blog-toc__item--sub.active a {
  color: #fc739c;
  font-weight: 600;
  border-left-color: #fc739c;
}
.blog-body .blog-cta-rail {
  position: sticky;
  top: 100px;
}
.blog-body .blog-cta-rail__card {
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.blog-body .blog-cta-rail__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-body .blog-cta-rail__content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}
.blog-body .blog-cta-rail__text {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.blog-body .blog-cta-rail__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 20px;
  background: #fff;
  color: #0f0f12;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}
.blog-body .blog-cta-rail__btn:hover {
  background: #f5f0f7;
}

.blog-text {
  scroll-margin-top: 120px;
}

.blog-article {
  min-width: 0;
  align-items: center;
  max-width: 100%;
}
@media screen and (max-width: 468px) {
  .blog-article {
    padding: 32px 0 60px;
  }
}
.blog-article p {
  margin-bottom: 1.5rem;
  color: #403b3c;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.8;
}
.blog-article h2 {
  scroll-margin-top: 120px;
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: #151414;
  letter-spacing: -0.72px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .blog-article h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 468px) {
  .blog-article h2 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
.blog-article h3 {
  scroll-margin-top: 120px;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 600;
  color: #151414;
  letter-spacing: -0.4px;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 468px) {
  .blog-article h3 {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
.blog-article strong {
  font-weight: 600;
  color: #151414;
}
.blog-article a {
  color: #403b3c;
  font-weight: 600;
  text-decoration: underline;
}
.blog-article a:hover {
  color: #ff67a3;
}
.blog-article ul,
.blog-article ol {
  padding-left: 22px;
  margin: 14px 0 20px;
}
.blog-article ul {
  list-style: disc;
}
.blog-article ol {
  list-style: decimal;
}
.blog-article li {
  margin: 8px 0;
  color: #403b3c;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.7;
}

.blog-pullquote {
  margin: 40px 0;
  padding: 28px 32px;
  border-radius: 16px;
  background: var(--Gradients-Shop-Glow, linear-gradient(45deg, #fc739c 0.34%, #cc4570 99.66%));
}
@media screen and (max-width: 468px) {
  .blog-pullquote {
    padding: 20px 16px;
  }
}
.blog-pullquote .stat {
  color: #fff;
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 600;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.72px;
}
.blog-pullquote .caption {
  margin-bottom: 0px;
  color: #fff;
  opacity: 0.9;
  font-size: 12px;
  font-weight: 400;
  line-height: 180%; /* 21.6px */
  letter-spacing: -0.24px;
}

.blog-image {
  margin: auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.blog-image video,
.blog-image img {
  border-radius: 12px;
}

.blog-stat-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 32px 0 24px;
}
@media screen and (max-width: 640px) {
  .blog-stat-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.blog-stat-cards .blog-stat-card {
  position: relative;
  background: #f9f9fa;
  border: 1px solid #dedee3;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 32px 32px 0 rgba(189, 189, 189, 0.09), 0 8px 18px 0 rgba(189, 189, 189, 0.1);
}
.blog-stat-cards .blog-stat-card .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.blog-stat-cards .blog-stat-card .icon-wrap svg {
  height: 15px;
  flex-shrink: 0;
}
.blog-stat-cards .blog-stat-card .label {
  margin: 0 0 8px;
  color: #6c6d78;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.blog-stat-cards .blog-stat-card .number {
  margin: 0 0 8px;
  color: #3b82f6;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.952px;
}
.blog-stat-cards .blog-stat-card .number .unit {
  margin: 0 2px;
  font-size: 0.9em;
  font-weight: 500;
}
.blog-stat-cards .blog-stat-card .sub {
  color: #8d8e98;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 400;
  line-height: 1.4;
}
.blog-stat-cards .blog-stat-card .divider {
  width: 100%;
  height: 1px;
  background: #e2e2e7;
  margin: 16px 0 20px;
}
.blog-stat-cards .blog-stat-card .top {
  color: #fc739c;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  line-height: 1.3;
}
.blog-stat-cards .blog-stat-card:nth-child(2) .number {
  color: #e38a4d;
}
.blog-stat-cards .blog-stat-card:nth-child(2) .icon-wrap {
  background: rgba(227, 138, 77, 0.08);
}
.blog-stat-cards .blog-stat-card:nth-child(3) .number {
  color: #47bfd3;
}
.blog-stat-cards .blog-stat-card:nth-child(3) .icon-wrap {
  background: rgba(71, 191, 211, 0.08);
}
.blog-stat-cards .blog-stat-card:nth-child(4) .number {
  color: #ff6b9f;
}
.blog-stat-cards .blog-stat-card:nth-child(4) .icon-wrap {
  background: rgba(255, 107, 159, 0.08);
}
@media screen and (max-width: 640px) {
  .blog-stat-cards .blog-stat-card {
    min-height: unset;
    padding: 24px;
  }
  .blog-stat-cards .blog-stat-card .icon-wrap {
    width: 32px;
    height: 32px;
    margin-bottom: 22px;
  }
  .blog-stat-cards .blog-stat-card .icon-wrap svg {
    width: 20px;
    height: 20px;
  }
  .blog-stat-cards .blog-stat-card .label {
    margin-bottom: 14px;
  }
  .blog-stat-cards .blog-stat-card .divider {
    margin: 24px 0 18px;
  }
}

.blog-data-table {
  margin: 24px 0 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1.6px solid #e8e6ea;
  border-radius: 10px;
}
.blog-data-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}
.blog-data-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fa608e;
  padding: 12px 16px;
  border-bottom: 1.6px solid #e8e6ea;
  background: #ffebf1;
  white-space: nowrap;
}
.blog-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e8e6ea;
  color: #3a3a42;
  vertical-align: middle;
}
.blog-data-table td.test-id {
  font-weight: 700;
  color: #fc739c;
  font-variant-numeric: tabular-nums;
}
.blog-data-table td.numeric {
  font-variant-numeric: tabular-nums;
  color: #0f0f12;
  font-weight: 500;
}
.blog-data-table td.result {
  font-weight: 600;
  color: #0f0f12;
  white-space: nowrap;
}
.blog-data-table td.result .winner {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  background: #ffebf1;
  color: #fa608e;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-data-table tr:last-child td {
  border-bottom: none;
}

.blog-table-note {
  font-size: 13px;
  color: #6b6b75;
  margin: 6px 0 0;
  font-style: italic;
}

.blog-chart {
  background: #fbf9fa;
  border: 1.6px solid #e8e6ea;
  border-radius: 12px;
  padding: 24px;
  margin: 28px 0;
}
@media screen and (max-width: 468px) {
  .blog-chart {
    padding: 16px;
  }
}
.blog-chart__title {
  font-size: 12px;
  font-weight: 600;
  color: #0f0f12;
  margin: 0 0 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-chart__sub {
  font-size: 13px;
  color: #6b6b75;
  margin: 0 0 20px;
}

.blog-bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.blog-bar-row--spaced {
  margin-top: 20px;
}
@media screen and (max-width: 468px) {
  .blog-bar-row {
    grid-template-columns: 80px 1fr 44px;
    gap: 8px;
  }
}
.blog-bar-row .label {
  font-size: 14px;
  font-weight: 500;
  color: #0f0f12;
}
@media screen and (max-width: 468px) {
  .blog-bar-row .label {
    font-size: 12px;
  }
}
.blog-bar-row .label small {
  display: block;
  font-size: 12px;
  color: #6b6b75;
  font-weight: 400;
  margin-top: 2px;
}
.blog-bar-row .value {
  font-size: 14px;
  font-weight: 600;
  color: #0f0f12;
  text-align: right;
}

.blog-bar-track {
  background: #e8e6ea;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.blog-bar-fill {
  height: 100%;
  background: #fc739c;
  border-radius: 4px;
  transition: width 0.6s ease;
}
.blog-bar-fill--muted {
  background: #c9c7cc;
}

.blog-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: stepnum;
}
.blog-steps li {
  counter-increment: stepnum;
  padding: 16px 0;
  position: relative;
  border-bottom: 1px solid #e8e6ea;
  color: #403b3c;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.7;
}
.blog-steps li:last-child {
  border-bottom: none;
}
.blog-steps li strong {
  display: block;
  color: #151414;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.blog-footnote {
  padding: 32px 32px;
  background: #ffebf1;
  border-radius: 8px;
  font-size: 13px;
  color: #6b6b75;
  line-height: 1.6;
}
.blog-footnote > p {
  margin-bottom: 0px;
}
.blog-footnote strong {
  color: #3a3a42;
}

.blog-section-eyebrow {
  font-size: 16px;
  font-weight: 600;
  line-height: 26.4px; /* 165% */
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #f45273;
  margin-bottom: 4px;
}

.blog-testimonial {
  margin: 48px 0;
  padding: 36px 40px;
  border-radius: 20px;
  background: var(--Gradients-Shop-Glow, linear-gradient(45deg, #fc739c 0.34%, #cc4570 99.66%));
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .blog-testimonial {
    padding: 28px 24px;
  }
}
.blog-testimonial__quote-mark {
  display: block;
  margin-bottom: 20px;
  opacity: 0.35;
}
.blog-testimonial__quote-mark svg {
  width: 80px;
  height: auto;
}
.blog-testimonial__quote-mark svg path {
  fill: #fff;
}
.blog-testimonial__text {
  color: #fff !important;
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 28px !important;
}
.blog-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.blog-testimonial__author-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-testimonial__author-name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.blog-testimonial__author-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}
.blog-testimonial__brand-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  .blog-testimonial__brand-logo {
    margin-left: 0;
  }
}

.blog-stat-callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #ffebf1;
  border: 1.6px solid rgb(254.1398601399, 214.8601398601, 226.6153846154);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px 0;
}
@media screen and (max-width: 468px) {
  .blog-stat-callout {
    padding: 16px;
    gap: 14px;
  }
}
.blog-stat-callout .blog-stat-number {
  font-size: 38px;
  font-weight: 700;
  color: #fa608e;
  line-height: 1;
  min-width: 80px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 468px) {
  .blog-stat-callout .blog-stat-number {
    font-size: 28px;
    min-width: 64px;
  }
}
.blog-stat-callout .blog-stat-label {
  color: #3a3a42;
  font-size: 15px;
  line-height: 1.5;
}
.blog-stat-callout .blog-stat-source {
  color: #6b6b75;
  font-size: 13px;
  margin-top: 6px;
}
.blog-stat-callout .blog-stat-source a {
  color: #6b6b75;
  font-weight: 400;
  text-decoration: underline;
}
.blog-stat-callout .blog-stat-source a:hover {
  color: #fc739c;
}

.blog-case-study {
  background: #ffebf1;
  border: 1.6px solid #fc739c;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px 0;
}
@media screen and (max-width: 468px) {
  .blog-case-study {
    padding: 16px;
  }
}
.blog-case-study .blog-case-study__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fa608e;
  margin: 0 0 8px;
}
.blog-case-study p {
  font-size: 15px !important;
  color: #3a3a42 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}
.blog-case-study a {
  color: #3a3a42 !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
}
.blog-case-study a:hover {
  color: #fc739c !important;
}
.blog-case-study__video {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  border: 1px solid #e8e6ea;
  display: block;
  margin: 12px auto 0;
}

.blog-checklist {
  background: #fbf9fa;
  border-left: 3px solid #fc739c;
  border-radius: 0 8px 8px 0;
  padding: 16px 22px;
  margin: 20px 0;
  list-style: none !important;
}
.blog-checklist li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  font-size: clamp(15px, 2.5vw, 17px);
  color: #3a3a42;
  line-height: 1.6;
}
.blog-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fc739c;
  font-weight: 700;
  font-size: 14px;
}

.blog-compare-table {
  margin: 18px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1.6px solid #e8e6ea;
  border-radius: 10px;
}
.blog-compare-table table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14px;
}
.blog-compare-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fa608e;
  padding: 12px 16px;
  border-bottom: 1.6px solid #e8e6ea;
  background: #ffebf1;
  white-space: nowrap;
}
.blog-compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e6ea;
  color: #3a3a42;
  vertical-align: top;
  line-height: 1.5;
}
.blog-compare-table tr:last-child td {
  border-bottom: none;
}
.blog-compare-table td:first-child {
  font-weight: 600;
  color: #0f0f12;
  white-space: nowrap;
}

.blog-lede {
  font-size: 19px;
  color: #3a3a42;
  line-height: 1.65;
  margin: 0 0 28px;
}
@media screen and (max-width: 468px) {
  .blog-lede {
    font-size: 16px;
  }
}

.blog-blockquote {
  border-left: 3px solid #fc739c;
  margin: 24px 0;
  padding: 4px 22px;
  color: #3a3a42;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
}
.blog-blockquote a {
  color: #6b6b75;
  font-weight: 400 !important;
  text-decoration: underline !important;
}

.blog-tldr {
  background: #ffebf1;
  border: 1px solid rgb(254.1398601399, 214.8601398601, 226.6153846154);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a42;
}
.blog-tldr strong {
  color: #fa608e;
}

.blog-platform-card {
  border: 1.5px solid #e8e6ea;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 20px 0;
  background: #fff;
}
.blog-platform-card--featured {
  border: 2px solid #fc739c;
  background: #ffebf1;
}
.blog-platform-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: #0f0f12;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-platform-card .blog-badge {
  display: inline-block;
  background: #fc739c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  line-height: 1.4;
}
.blog-platform-card__pros-cons {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-platform-card__pros-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b6b75;
  margin-bottom: 4px;
}
.blog-platform-card__cons-box {
  background: #fbf9fa;
  border-radius: 0 8px 8px 0;
  border-left: 3px solid #e8e6ea;
  padding: 14px 20px;
}
.blog-platform-card__cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-platform-card__cons-box li {
  position: relative;
  padding-left: 22px;
  margin: 6px 0;
  font-size: 15px;
  color: #3a3a42;
  line-height: 1.55;
}
.blog-platform-card__cons-box li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
  font-size: 12px;
  top: 2px;
}
.blog-platform-card .blog-checklist {
  margin: 0;
}
.blog-platform-card .blog-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-platform-card .blog-checklist li {
  margin: 6px 0;
}
.blog-platform-card dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 16px;
  margin: 0 0 14px;
  align-items: baseline;
}
.blog-platform-card dt {
  font-size: 13px;
  font-weight: 700;
  color: #6b6b75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.blog-platform-card dd {
  margin: 0;
  font-size: 15px;
  color: #3a3a42;
  line-height: 1.5;
}
.blog-platform-card p {
  margin: 12px 0 0;
  font-size: 15.5px;
  color: #3a3a42;
  line-height: 1.6;
}
.blog-platform-card .blog-platform-verdict {
  background: #fbf9fa;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 14.5px;
  color: #3a3a42;
  line-height: 1.55;
}
.blog-platform-card .blog-platform-verdict strong {
  color: #0f0f12;
}

.blog-decision-block {
  background: #f7f9fc;
  border-left: 4px solid #fc739c;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.blog-decision-block p {
  margin: 0 0 10px;
  font-size: 15.5px;
  color: #3a3a42;
}
.blog-decision-block ul {
  margin: 0;
  padding-left: 20px;
}
.blog-decision-block ul li {
  margin: 8px 0;
  font-size: 15.5px;
  color: #3a3a42;
  line-height: 1.55;
}

.blog-compare-table td.cell-yes {
  color: #0a7d2c;
  font-weight: 600;
}
.blog-compare-table td.cell-no {
  color: #b91c1c;
}
.blog-compare-table td.cell-part {
  color: #b45309;
}

.blog-cta-block {
  margin: 48px 0 40px;
  padding: 40px 0;
  border-top: 1px solid #e8e6ea;
}
.blog-cta-block h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0f0f12;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
@media screen and (max-width: 768px) {
  .blog-cta-block h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 468px) {
  .blog-cta-block h2 {
    font-size: 1.4rem;
  }
}
.blog-cta-block p {
  font-size: 18px;
  color: #3a3a42;
  margin: 0 0 20px;
  line-height: 1.6;
}
@media screen and (max-width: 468px) {
  .blog-cta-block p {
    font-size: 16px;
  }
}
.blog-cta-block .blog-cta-link {
  font-size: 16px;
  font-weight: 700;
  color: #fc739c !important;
  text-decoration: none !important;
}
.blog-cta-block .blog-cta-link:hover {
  color: #fa608e !important;
  text-decoration: underline;
}
