/* see-candidates.css */
/* =============================================================================
   See Candidates page (section-level)
   ============================================================================= */

.sc-hero,
.sc-sec,
.trust-strip {
  --sc-ink: #111;
  --sc-muted: #555;
  --sc-purple: #7B48FE;
}

/* Hero */
.sc-hero {
  padding: 72px 0 80px;
  background: #fff;
}

.sc-h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--sc-ink);
  margin-bottom: 20px;
}

.sc-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--sc-muted);
  margin-bottom: 32px;
  max-width: 52ch;
}

.sc-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sc-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--sc-ink);
  font-weight: 500;
}

.sc-benefits .bic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ECFDF3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-benefits .bic svg {
  width: 15px;
  height: 15px;
  color: #22A861;
}

.sc-security {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.sc-security svg {
  width: 14px;
  height: 14px;
  color: #888;
  flex-shrink: 0;
}

.sc-form-wrap {
  position: sticky;
  top: 96px;
}

/* Form — production SCH classes restyled for new hero */
.sc-hero .SCH-form-area {
  position: relative;
  min-height: 0;
  display: block;
}

.sc-hero .SCH-form-area::before {
  display: none;
}

.sc-hero .SCH-form-card {
  width: 100%;
  max-width: 100%;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #FF8DB3 0%, #7B48FE 100%) border-box;
  box-shadow: 0 0 0 4px rgba(123, 72, 254, .07), 0 8px 40px rgba(0, 0, 0, .10);
}

.sc-hero .SCH-form-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.4px;
  color: var(--sc-ink);
  margin: 0 0 8px;
}

.sc-hero .SCH-form-sub {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.45;
  margin: 0 0 24px;
}

.sc-hero .SCH-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.sc-hero .SCH-field {
  margin-bottom: 16px;
}

.sc-hero .SCH-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.sc-hero .SCH-required {
  margin-left: 1px;
}

.sc-hero .SCH-input,
.sc-hero .SCH-select {
  width: 100%;
  height: auto;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  font-size: 15px;
  color: var(--sc-ink);
  transition: border-color .2s, box-shadow .2s;
}

.sc-hero .SCH-input:focus {
  border-color: var(--sc-purple);
  box-shadow: 0 0 0 3px rgba(123, 72, 254, .1);
  outline: none;
}

.sc-hero .SCH-input::placeholder {
  color: #bbb;
  font-size: 14px;
}

.sc-hero .SCH-textarea {
  min-height: 80px;
  resize: vertical;
}

.sc-hero .SCH-phone-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}

.sc-hero .SCH-captcha-wrap {
  margin: 10px 0;
}

.sc-hero .SCH-captcha-error {
  font-size: 12px;
  color: #c00;
  display: none;
  margin-top: 6px;
}

.sc-hero .SCH-button-wrap {
  margin: 20px 0 16px;
}

.sc-hero .SCH-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 15px 27px;
  border-radius: 54px;
  border: 2.25px solid transparent;
  background:
    linear-gradient(#1E1006, #1E1006) padding-box,
    linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  box-shadow:
    0 2.25px 5.625px 2.25px rgba(254, 140, 178, 0.20),
    0 0 14px rgba(123, 72, 254, 0.22);
  transition: box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.sc-hero .SCH-submit-btn:hover {
  color: #fff;
  background:
    linear-gradient(#2c190b, #2c190b) padding-box,
    linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box;
  box-shadow:
    0 0 12px rgba(123, 72, 254, 0.35),
    0 0 12px rgba(254, 140, 178, 0.35);
  transform: translateY(-2px);
}

.sc-hero .SCH-submit-btn span {
  font-size: 20px;
  line-height: 1;
}

.sc-hero .SCH-submit-btn span img {
  display: block;
}

.sc-hero .SCH-disclaimer {
  font-size: 11px;
  color: #888;
  line-height: 1.45;
  text-align: center;
}

.sc-hero .input-error {
  border-color: #c00 !important;
}

/* Logo strip */
.logo-strip-section {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
}

.logo-strip-section .strip-label {
  font-size: 14px;
  font-weight: 400;
  color: #111;
  text-align: center;
  margin-bottom: 28px;
}

.sc-logo-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
}

.sc-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: 100px;
}

.sc-logo-grid img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.sc-logo-grid img.sc-logo-monster {
  height: 100px;
}

.sc-logo-grid img.sc-logo-nestle {
  height: 48px;
}

.sc-logo-grid img.sc-logo-sallie {
  height: 35px;
}

/* Section headers */
.sc-sec {
  padding: 80px 0;
}

.sc-sec.alt {
  background: #F9F9FB;
}

.sc-sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.sc-sec-head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--sc-ink);
  margin-bottom: 12px;
}

.sc-sec-head p {
  font-size: 18px;
  color: var(--sc-muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* Receive cards */
.rcv-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EBEBEB;
  padding: 28px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: box-shadow .22s, transform .22s;
}

.rcv-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}

.rcv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.rcv-icon svg {
  width: 24px;
  height: 24px;
}

.rcv-icon--purple { background: #EDE9FE; }
.rcv-icon--green { background: #ECFDF3; }
.rcv-icon--orange { background: #FFF7ED; }

.rcv-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.3px;
  color: var(--sc-ink);
  margin-bottom: 10px;
}

.rcv-body {
  font-size: 15px;
  color: var(--sc-muted);
  line-height: 1.65;
  margin: 0;
}

/* Candidate snapshot cards */
.cand-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #22A861;
  background: #ECFDF3;
  border: 1px solid #A7F3D0;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.cand-badge svg {
  width: 10px;
  height: 10px;
}

.cand-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EBEBEB;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.cand-role {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.3px;
  color: var(--sc-ink);
  margin-bottom: 22px;
}

.cand-loc {
  font-size: 15px;
  color: #666;
  font-weight: 400;
}

.cand-section {
  margin-bottom: 16px;
}

.cand-section-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

.cand-section-body {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.cand-divider {
  border: none;
  border-top: 1px solid #EFEFEF;
  margin: 14px 0;
}

.cand-note {
  background: #F5F4FF;
  border-radius: 12px;
  padding: 14px;
  margin-top: auto;
}

.cand-note-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sc-purple);
  margin-bottom: 6px;
}

.cand-note-body {
  font-size: 13px;
  color: #444;
  line-height: 1.55;
  margin: 0;
}

.cand-disclaimer {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 32px;
  font-style: italic;
}

/* How it works */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EBEBEB;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  text-align: left;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EDE9FE, #FCE4EC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--sc-purple);
  margin-bottom: 18px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.2px;
  color: var(--sc-ink);
  margin-bottom: 8px;
}

.step-body {
  font-size: 14px;
  color: var(--sc-muted);
  line-height: 1.6;
  margin: 0;
}

/* Trust strip */
.trust-strip {
  background: #fff;
  padding: 52px 0;
  border-top: 1px solid #EFEFEF;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-stat {
  text-align: center;
  padding: 22px 16px;
  background: #F9F9FB;
  border-radius: 16px;
  border: 1px solid #EFEFEF;
}

.trust-stat-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.trust-stat-link:hover {
  text-decoration: none;
  color: inherit;
}

.trust-stat-n {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #7B48FE 0%, #C4899A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.trust-stat-l {
  font-size: 13px;
  color: var(--sc-muted);
  line-height: 1.4;
}

/* Final CTA variant */
.sc-final-cta .cta-pill-btn {
  cursor: pointer;
}

.sc-final-cta h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
}



/* testimonials reused from homepage */
/* Testimonials */
/* Testimonials â€” Quo-inspired */
.test-section-wrap {
  background: linear-gradient(160deg, #F0F4FF 0%, #F7F5FF 60%, #FDF0F5 100%);
  padding: 88px 0;
}

.t2-card {
  background: #fff;
  border-radius: 24px;
  border: none;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 16px rgba(80, 60, 180, .07), 0 1px 3px rgba(0, 0, 0, .04);
  transition: box-shadow .25s, transform .25s;
}

.t2-card:hover {
  box-shadow: 0 12px 40px rgba(80, 60, 180, .14);
  transform: translateY(-4px);
}

/* attribution row at top */
.t2-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.t2-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.t2-ph {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4B5FD, #93C5FD);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.t2-name {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

.t2-title {
  font-size: 12px;
  color: #777;
  margin-top: 3px;
  line-height: 1.4;
}

.t2-divider {
  border: none;
  border-top: 1px solid #EBEBEB;
  margin: 0 0 18px;
}

.t2-stars {
  color: #FBBC04;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.t2-headline {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin: 0 0 10px;
}

.t2-quote {
  font-size: 17px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.65;
  flex: 1;
}

.g-review-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 36px 0 28px;
}

.g-mini {
  background: #fff;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 14px;
  color: #444;
  font-style: italic;
  max-width: 320px;
  text-align: left;
}

.g-mini .g-stars {
  color: #FBBC04;
  font-size: 12px;
  margin-bottom: 4px;
}

.g-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 48px;
  background: #F5FAFF;
  border: 1px solid #CBE5FF;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #2B2B2B;
}

.g-badge-pill:hover {
  background: #EBF4FF;
  color: #2B2B2B;
}


.test-section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #111;
}

.t2-person-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.home-section-pad {
  padding: 80px 0;
  background: #fff;
}

.sec-head--narrow p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}



/* bottom CTA reused */
/* Bottom CTA */
.bottom-cta-section {
  position: relative;
  background: #0A0A0A;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.bottom-cta-section::before {
  content: "";
  position: absolute;
  left: -180px;
  top: 40px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 60, 160, .45), transparent 68%);
  pointer-events: none;
}

.bottom-cta-section::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 40px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 60, 160, .35), transparent 68%);
  pointer-events: none;
}

.bottom-cta-section h2 {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -2.5px;
  line-height: 1.08;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.cta-br-mobile {
  display: none;
}

.cta-br-desktop {
  display: inline;
}

@media (max-width: 767px) {
  .cta-br-mobile {
    display: inline;
  }

  .cta-br-desktop {
    display: none;
  }
}

.bottom-cta-section .cta-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 1;
}

.cta-google-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: background .2s;
}

.cta-google-pill:hover {
  background: rgba(255, 255, 255, .13);
}

.cta-google-pill:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  background: rgba(255, 255, 255, .13);
}

.cta-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  border-radius: 999px;
  background: #fff;
  border: none;
  color: #111;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  color: #111 !important;
  transition: background .2s, box-shadow .2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}

.cta-pill-btn:hover {
  background: #F5F5F5;
  color: #111 !important;
  box-shadow: 0 6px 32px rgba(0, 0, 0, .28);
}

.cta-pill-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  background: #F5F5F5;
  color: #111 !important;
}

/* Contact page bottom CTA — Home chrome, Contact content (no .cta-sub) */
.contact-page-cta h2 {
  margin-bottom: 44px;
}

.contact-cta-deliver {
  margin-top: 12px;
}

.cta-pill-btn,
.cta-pill-btn *,
.cta-pill-btn span {
  color: #111 !important;
}

.bottom-cta-trust {
  font-size: 14px;
  color: rgba(255, 255, 255, .38);
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.bottom-cta-trust a {
  color: rgba(255, 255, 255, .55);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bottom-cta-trust a:hover {
  color: rgba(255, 255, 255, .8);
}

.Animation-strip-wrapper::before,
.Animation-strip-wrapper::after {
  display: none !important;
}



/* See Candidates RWD */
/* See Candidates page */
@media (max-width: 991px) {
.sc-form-wrap {
    position: static;
  }

.sc-hero {
    padding: 56px 0 64px;
  }

.sc-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 12px;
    justify-items: center;
    overflow-x: clip;
  }

.sc-logo-cell {
    flex: unset;
    width: 100%;
    height: 72px;
  }

.sc-logo-grid img {
    height: 40px;
  }

.sc-logo-grid img.sc-logo-monster {
    height: 58px;
  }

.sc-logo-grid img.sc-logo-nestle {
    height: 36px;
  }

.sc-logo-grid img.sc-logo-sallie {
    height: 26px;
  }
}

@media (max-width: 900px) {
.step-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
.trust-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
.hero-g-pill {
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    max-width: 100%;
  }

.hero-g-pill-text {
    white-space: nowrap;
  }

.hero-g-pill .g-stars-yellow {
    font-size: 12px;
    letter-spacing: -0.5px;
  }

.sc-h1 {
    font-size: clamp(36px, 4.4vw, 58px);
    letter-spacing: -1.5px;
  }

.step-grid {
    grid-template-columns: 1fr;
  }

.sc-hero .SCH-form-grid {
    grid-template-columns: 1fr;
  }

.sc-hero .SCH-form-card {
    padding: 24px 20px;
  }

.sc-hero .SCH-submit-btn {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 15px;
    box-shadow:
      0 2.25px 5.625px 2.25px rgba(254, 140, 178, 0.18),
      0 0 10px rgba(123, 72, 254, 0.18);
  }

.sc-hero .SCH-button-wrap {
    margin: 16px 0 14px;
  }

.sc-hero .SCH-captcha-wrap {
    overflow-x: auto;
    max-width: 100%;
  }

.sc-hero .SCH-captcha-wrap .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
  }

.sc-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 64px;
    justify-items: center;
    overflow-x: clip;
    padding-inline: 12px;
  }

.sc-logo-cell {
    flex: unset;
    min-width: 0;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.sc-logo-grid img,
.sc-logo-grid img.sc-logo-nestle {
    display: block;
    max-height: 80px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

.sc-logo-grid img.sc-logo-monster {
    max-height: 110px;
    height: 109px;
  }

.sc-logo-grid img.sc-logo-sallie {
    max-height: 35px;
  }

.sc-logo-grid img.sc-logo-scotts {
    max-height: 56px;
  }

.sc-sec {
    padding: 56px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
.rcv-card,
.rcv-card:hover,
.t2-card,
.t2-card:hover {
    transition: none !important;
    transform: none !important;
  }
}


@media (max-width: 991px) {
  .bottom-cta-section { padding: 80px 16px; }
}

/* moved from page <style> */
.sc-benefits .bic { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-benefits .bic svg { width: 15px; height: 15px; }
.sc-security svg { width: 14px; height: 14px; flex-shrink: 0; }
.sc-hero .SCH-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 16px; }
.sc-hero .SCH-phone-row { display: grid; grid-template-columns: 100px 1fr; gap: 12px; }
.sc-hero .SCH-label { display: block; }
.sc-hero .SCH-input, .sc-hero .SCH-textarea { width: 100%; min-height: 44px; box-sizing: border-box; }
.sc-hero .SCH-textarea { min-height: 80px; }
.SCH-textarea { height: 109px !important; }
@media (max-width: 520px) { .sc-hero .SCH-form-grid { grid-template-columns: 1fr; } }
