.cms-block {
  display: contents;
}
.dfy #ins-main.seo-page {
  padding-top: 88px;
}
.cms-block.cms-designed {
  display: block;
  width: 100%;
}
.cms-block.cms-layout-grid > :first-child {
  display: grid;
  grid-template-columns: repeat(var(--cms-columns), minmax(0, 1fr));
  gap: var(--cms-gap);
}
.cms-block[class*="cms-columns-"] > .cms-builder-row {
  display: block;
}
.cms-builder-row {
  padding: 64px max(24px, calc((100vw - var(--cms-content-width, 1180px)) / 2));
}
.cms-builder-row-inner {
  display: grid;
  grid-template-columns: repeat(var(--cms-columns, 2), minmax(0, 1fr));
  gap: var(--cms-gap, 24px);
}
.cms-builder-column {
  min-width: 0;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid #e4dce9;
  border-radius: 20px;
  background: #fffdfb;
}
.cms-builder-column h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 38px);
}
.cms-builder-column p {
  line-height: 1.65;
}
.cms-builder-link {
  display: inline-block;
  margin-top: 22px;
  font-weight: 700;
  color: var(--cms-accent, #8051d5);
}
.cms-columns-1 .cms-builder-column:nth-child(n+2),
.cms-columns-2 .cms-builder-column:nth-child(n+3),
.cms-columns-3 .cms-builder-column:nth-child(n+4) {
  display: none;
}
.cms-image-link {
  display: inline-block;
  max-width: 100%;
}
.cms-page-break {
  break-before: page;
}
.cms-wrap {
  width: min(var(--cms-content-width, 1100px), calc(100% - 48px));
  margin-inline: auto;
}
.cms-section {
  padding: 88px 0;
  background: #fff8f0;
  color: #29163f;
}
.cms-section h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 32px;
}
.cms-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #8051d5;
  font-weight: 800;
}
.cms-disclosure {
  padding: 24px 0;
  border-bottom: 1px solid #dcd1e0;
}
.cms-disclosure summary {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  cursor: pointer;
}
.cms-disclosure p,
.cms-disclosure li {
  margin-top: 16px;
  line-height: 1.8;
}
.cms-disclosure h3 {
  margin-top: 20px;
  font-weight: 700;
}
.cms-disclosure ul,
.cms-disclosure ol {
  padding-left: 24px;
}
.cms-disclosure ul {
  list-style: disc;
}
.cms-disclosure ol {
  list-style: decimal;
}
.cms-stat-grid {
  display: flex;
  gap: 48px;
}
.cms-stat-grid strong {
  font-size: 42px;
  color: #8051d5;
}
.cms-element {
  padding-block: 22px;
  color: #29163f;
  line-height: 1.7;
}
.cms-element h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
}
.cms-element img {
  max-width: 100%;
  max-height: 650px;
  object-fit: contain;
  border-radius: 24px;
  margin: auto;
}
.cms-element figcaption {
  font-size: 13px;
  text-align: center;
  opacity: 0.75;
  margin-top: 16px;
}
.cms-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px !important;
  border-radius: 999px;
  background: #803ae7;
  color: #fff;
  font-weight: 800;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cms-color-purple {
  background: #803ae7 !important;
  color: #fff !important;
}
.cms-color-dark {
  background: #29163f !important;
  color: #fff !important;
}
.cms-color-cream {
  background: #fff8f0 !important;
  color: #29163f !important;
}
.cms-color-outline {
  background: transparent !important;
  color: #803ae7 !important;
  border: 2px solid #803ae7 !important;
}
.cms-animate-lift:hover {
  transform: translateY(-4px);
}
.cms-animate-glow:hover {
  box-shadow: 0 0 25px #8051d580;
}
.cms-animate-pulse {
  animation: cms-pulse 2.4s ease-in-out infinite;
}
@keyframes cms-pulse {
  50% {
    box-shadow: 0 0 0 9px #8051d51a;
  }
}
.cms-video {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 22px;
  background: #29163f;
}
.cms-video-placeholder {
  padding: 90px 30px;
  border: 2px dashed #c4addf;
  background: #f6efff;
  text-align: center;
}
.cms-tool iframe {
  width: 100%;
  min-height: 850px;
  border: 0;
}
.cms-preview [data-cms-key]:hover,
.cms-preview [data-cms-section]:hover {
  outline: 1px dashed #8051d5;
  outline-offset: 4px;
  cursor: pointer;
}
.cms-preview .cms-selected {
  outline: 3px solid #803ae7 !important;
  outline-offset: 5px;
}
.cms-preview [data-cms-hidden],
.cms-preview .cms-block-hidden {
  opacity: 0.3;
}
.cms-preview iframe,
.cms-preview form {
  pointer-events: none;
}
.cms-preview .cms-block-hidden {
  display: block;
}
.cms-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #29163f88;
  display: grid;
  place-items: center;
  padding: 20px;
}
.cms-modal-card {
  background: #fff8f0;
  color: #29163f;
  border-radius: 25px;
  padding: 32px;
  max-width: 740px;
  max-height: 90vh;
  overflow: auto;
  width: 100%;
  box-shadow: 0 25px 80px #29163f44;
}
.cms-modal-card h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.cms-modal-card label {
  display: block;
  font-weight: 700;
  margin: 16px 0 8px;
}
.cms-modal-card input,
.cms-modal-card select,
.cms-modal-card textarea {
  padding: 14px;
  border: 1px solid #dfd1c9;
  border-radius: 18px;
  width: 100%;
  background: #fff;
}
.cms-modal-card input[type="checkbox"] {
  width: auto;
}
.cms-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.cms-modal-close {
  float: right;
  font-size: 28px;
}
.cms-form-status {
  margin: 18px 0;
  color: #a13737;
}
.cms-modal-card .cms-consent {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
.cms-modal-card small {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin: 12px 0;
}
.cms-modal [name="companyFax"] {
  position: absolute;
  left: -9999px;
}
.cms-form-success {
  padding: 35px 0;
}
.cms-form-success h2 {
  color: #6431a3;
}
@media (max-width: 600px) {
  .dfy #ins-main.seo-page {
    padding-top: 76px;
  }
  .cms-block.cms-layout-grid > :first-child {
    grid-template-columns: 1fr;
  }
  .cms-builder-row-inner {
    grid-template-columns: 1fr;
  }
  .cms-form-grid {
    grid-template-columns: 1fr;
  }
  .cms-modal-card {
    padding: 24px;
  }
  .cms-section {
    padding: 50px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cms-animate-pulse {
    animation: none;
  }
  .cms-animate-lift:hover {
    transform: none;
  }
}
.cms-blog-prose {
  max-width: 760px;
  width: calc(100% - 48px);
  margin: 0 auto;
}
.cms-blog-prose > h2,
.cms-blog-prose > h3 {
  margin-top: 40px;
}
.ins-main .cms-element {
  max-width: 760px;
}
.cms-list {
  list-style: disc;
  padding-left: 25px;
}
.cms-quote {
  border-left: 4px solid #8051d5;
  padding: 15px 28px;
  background: #f7f0ff;
  border-radius: 0 15px 15px 0;
}
.cms-quote p {
  font-size: 22px;
}
.cms-quote cite {
  display: block;
  font-size: 13px;
  margin-top: 15px;
}
.cms-native-disclosure summary {
  list-style: none;
  cursor: pointer;
}
.cms-native-disclosure summary::-webkit-details-marker {
  display: none;
}
#framework .cms-native-disclosure[open] {
  outline: 2px solid #803ae7;
  outline-offset: -2px;
}
.cms-toggle-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2eaf8;
  color: #803ae7;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.cms-native-disclosure[open] .cms-toggle-icon {
  transform: rotate(45deg);
}
[data-cms-case][hidden] {
  display: none !important;
}
[data-cms-case-button][aria-current="true"] {
  background: #29163f !important;
  color: #fff8f0 !important;
}
[data-cms-case-button][aria-current="false"] {
  background: transparent !important;
  color: #29163f !important;
}
