/* Choice Section Module */
.sj-choice { font-family: 'Inter', sans-serif; }
.sj-choice * { box-sizing: border-box; }

.sj-choice__inner { width: 100%; margin: 0 auto; }

.sj-choice__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.sj-choice__heading {
  font-family: 'Macan', sans-serif !important;
  font-weight: 800;
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  max-width: 800px;
  text-wrap: balance;
}
[style*="text-align:center"] .sj-choice__heading,
[style*="text-align: center"] .sj-choice__heading {
  margin-left: auto;
  margin-right: auto;
}

.sj-choice__lead {
  font-size: 18px;
  line-height: 1.65;
  max-width: 62ch;
  margin-bottom: 48px;
}
[style*="text-align:center"] .sj-choice__lead,
[style*="text-align: center"] .sj-choice__lead {
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.sj-choice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 48px auto 0;
  text-align: left;
}

/* Cards */
.sj-choice__card {
  border-radius: 0 0 20px 20px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.sj-choice__card:hover {
  transform: translateY(-4px);
}

/* Light cards (on dark bg) */
.sj-choice--light-cards .sj-choice__card {
  background: #ffffff;
  border: 1px solid #E2E4E8;
}
.sj-choice--light-cards .sj-choice__card:hover {
  background: #F4F6FA;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.sj-choice--light-cards .sj-choice__card-label { color: #373C41; }
.sj-choice--light-cards .sj-choice__card-title { color: #12161A; }
.sj-choice--light-cards .sj-choice__card-desc { color: #3E3D37; }
.sj-choice--light-cards .sj-choice__card-audience { color: #373C41; }
.sj-choice--light-cards .sj-choice__card-footer { border-top-color: #E2E4E8; }

/* Dark cards (on light bg) */
.sj-choice--dark-cards .sj-choice__card {
  background: #201F27;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sj-choice--dark-cards .sj-choice__card:hover {
  background: #2a2930;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.sj-choice--dark-cards .sj-choice__card-label { color: rgba(255, 255, 255, 0.5); }
.sj-choice--dark-cards .sj-choice__card-title { color: #ffffff; }
.sj-choice--dark-cards .sj-choice__card-desc { color: rgba(255, 255, 255, 0.65); }
.sj-choice--dark-cards .sj-choice__card-audience { color: rgba(255, 255, 255, 0.35); }
.sj-choice--dark-cards .sj-choice__card-footer { border-top-color: rgba(255, 255, 255, 0.08); }

/* Card elements */
.sj-choice__card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.sj-choice__card-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.sj-choice__card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sj-choice__card-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sj-choice__card-title {
  font-family: 'Macan', sans-serif !important;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 16px;
}
.sj-choice__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 20px;
}
.sj-choice__card-audience {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.sj-choice__card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid;
}
.sj-choice__card-icons {
  display: flex;
  gap: 8px;
}
.sj-choice__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sj-choice__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff !important;
  height: 45px;
  padding: 0 24px;
  border-radius: 45px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-left: auto;
}
.sj-choice__card-btn:hover {
  opacity: 0.9;
}

/* Text scheme — light text (dark bg) */
.sj-choice--text-light .sj-choice__heading { color: #ffffff; }
.sj-choice--text-light .sj-choice__lead { color: rgba(255, 255, 255, 0.65); }
/* Text scheme — dark text (light bg) */
.sj-choice--text-dark .sj-choice__heading { color: #12161A; }
.sj-choice--text-dark .sj-choice__lead { color: #3E3D37; }

/* Containers */
.container { max-width: 1240px; }
.container-fluid { max-width: 100%; }
.container-narrow { max-width: 960px; }

/* Responsive */
@media (max-width: 768px) {
  .sj-choice__grid {
    grid-template-columns: 1fr;
  }
  .sj-choice__card {
    padding: 36px 28px;
  }
  .sj-choice__card-title {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Section spacing */
  .sj-choice {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Header */
  .sj-choice__heading {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .sj-choice__lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  /* Stack cards */
  .sj-choice__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  /* Card spacing */
  .sj-choice__card {
    padding: 28px 24px;
  }

  .sj-choice__card-title {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .sj-choice__card-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .sj-choice__card-audience {
    margin-bottom: 20px;
  }

  /* Footer layout */
  .sj-choice__card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .sj-choice__card-icons {
    justify-content: center;
  }

  /* Full-width CTA */
  .sj-choice__card-btn {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  /* Prevent long words/URLs from breaking layout */
  .sj-choice__card-title,
  .sj-choice__card-desc,
  .sj-choice__lead {
    overflow-wrap: break-word;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet: 769px – 1024px --- */
@media (max-width: 1024px) and (min-width: 769px) {
  .sj-choice__grid {
    gap: 20px;
    max-width: 100%;
  }
  .sj-choice__card {
    padding: 36px 32px;
  }
  .sj-choice__card-footer {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* --- Mobile: ≤768px --- */
@media (max-width: 768px) {

  /* Section spacing */
  .sj-choice {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Header */
  .sj-choice__eyebrow {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .sj-choice__heading {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.15;
    letter-spacing: -.01em;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .sj-choice__lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 100%;
  }

  /* Stack cards */
  .sj-choice__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    max-width: 100%;
  }

  /* Cards */
  .sj-choice__card {
    padding: 28px 24px;
    border-radius: 0 0 16px 16px;
  }
  .sj-choice__card-title {
    font-size: clamp(24px, 6.5vw, 28px);
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .sj-choice__card-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .sj-choice__card-audience {
    margin-bottom: 20px;
  }

  /* Footer stacks, CTA goes full width */
  .sj-choice__card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 20px;
  }
  .sj-choice__card-icons {
    justify-content: center;
  }
  .sj-choice__card-btn {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    height: 48px; /* 44px+ touch target */
  }

  /* Prevent long words/URLs from breaking layout */
  .sj-choice__heading,
  .sj-choice__lead,
  .sj-choice__card-title,
  .sj-choice__card-desc {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* --- Small phones: ≤480px --- */
@media (max-width: 480px) {
  .sj-choice {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sj-choice__card {
    padding: 24px 20px;
  }
  .sj-choice__card-title {
    font-size: 22px;
  }
  .sj-choice__card-desc {
    font-size: 14.5px;
  }
  .sj-choice__card-icon {
    width: 32px;
    height: 32px;
  }
  .sj-choice__card-icons {
    flex-wrap: wrap;
  }
}

/* --- Kill hover-lift on touch devices --- */
@media (hover: none) {
  .sj-choice__card:hover {
    transform: none;
    box-shadow: none;
  }
  .sj-choice--light-cards .sj-choice__card:hover { background: #ffffff; }
  .sj-choice--dark-cards .sj-choice__card:hover  { background: #201F27; }
}

/* --- Respect reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .sj-choice__card,
  .sj-choice__card-btn {
    transition: none;
  }
  .sj-choice__card:hover { transform: none; }
}
Two small fixes worth making outside the media queries too:

css

/* Let the grid shrink inside HubSpot's column wrappers */
.sj-choice__grid {
  max-width: 1040px;
  width: 100%;
}
.sj-choice__card {
  min-width: 0; /* stops grid blowout from long unbreakable strings */
}