@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --vs-navy: #061033;
  --vs-green: #20c200;
  --vs-ice: #f7fbff;
  --vs-slate: #596b89;
  --vs-card-text: #61738f;
  --vs-border-blue: #d8e8f5;
  --vs-border-green: #d7efd4;
  --vs-pale-blue: #f2faff;
  --vs-pale-green: #f3fff1;
  --vs-footer: #00070c;
  --vs-container: 1300px;
  --vs-hero-container: 1400px;
  --vs-gutter: 20px;
  --vs-shadow: 0 18px 36px rgb(5 20 46 / 12%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--vs-ice);
  color: var(--vs-navy);
  font-family: "Archivo", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #66e34f;
  outline-offset: 3px;
}

.vs-home {
  margin-top: -96px;
}

.vs-eyebrow {
  margin: 0;
  color: var(--vs-green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
}

.vs-muted {
  color: var(--vs-slate);
}

.vs-section {
  padding-inline: var(--vs-gutter);
}

.vs-section > .alignwide,
.vs-consultation .alignwide,
.vs-footer > .alignwide {
  width: min(var(--vs-container), 100%);
  max-width: var(--vs-container);
  margin-inline: auto;
}

/* Header */
.vs-header {
  position: relative;
  z-index: 20;
  height: 96px;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.vs-header__inner {
  position: relative;
  width: min(var(--vs-hero-container), calc(100% - 40px));
  max-width: var(--vs-hero-container);
  height: 96px;
  margin-inline: auto;
}

.vs-header__logo {
  position: absolute;
  top: 8px;
  left: 0;
  width: 157px;
  height: 72px;
  margin: 0;
}

.vs-header__logo img {
  display: block;
  width: 157px;
  height: 72px;
  object-fit: contain;
}

.vs-header .vs-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  transform: translate(-50%, -50%);
}

.vs-header .wp-block-navigation__container {
  flex-wrap: nowrap;
  gap: 58px;
}

.vs-header .wp-block-navigation-item__content {
  padding: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.vs-header .wp-block-navigation-item__content:hover {
  color: var(--vs-green);
}

.vs-header__inner > .wp-block-buttons {
  position: absolute;
  top: 17px;
  right: 0;
  margin: 0;
}

.vs-header .wp-block-button__link {
  display: grid;
  width: 111px;
  height: 42px;
  padding: 0;
  place-items: center;
  border-radius: 21px;
  background: #fff;
  color: var(--vs-navy);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.vs-header .wp-block-button__link:hover {
  background: var(--vs-green);
  color: var(--vs-navy);
}

/* Hero */
.vs-hero {
  min-height: 820px;
}

.vs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgb(3 8 23 / 94%), rgb(3 8 23 / 72%) 42%, rgb(3 8 23 / 18%));
}

.vs-hero .wp-block-cover__inner-container {
  z-index: 1;
}

.vs-hero__content {
  width: min(var(--vs-hero-container), calc(100% - 40px));
  max-width: var(--vs-hero-container);
  margin-inline: auto;
  padding-top: 168px;
}

.vs-hero__title {
  max-width: 1040px;
  margin: 33px 0 0;
  font-size: 86px;
  font-weight: 700;
  line-height: 84px;
  letter-spacing: -3.2px;
}

.vs-hero__lead {
  max-width: 827px;
  margin: 30px 0 0;
  color: #d7e5f5;
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
}

.vs-hero__actions {
  gap: 24px;
  margin-top: 67px;
}

.vs-button .wp-block-button__link {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 31px;
  border-radius: 29px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition:
    color .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}

.vs-button--primary {
  width: 196px;
}

.vs-button--primary .wp-block-button__link {
  width: 196px;
  box-shadow: 0 14px 30px rgb(5 20 46 / 18%);
  font-weight: 700;
}

.vs-button--secondary {
  width: 214px;
}

.vs-button--secondary .wp-block-button__link {
  width: 214px;
  border: 1px solid rgb(255 255 255 / 32%);
  background: rgb(255 255 255 / 8%);
  color: #fff;
  font-weight: 500;
}

.vs-button__icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--vs-green);
  color: var(--vs-navy);
  font-size: 16px;
  font-weight: 700;
  transition: transform .22s ease, background-color .22s ease, color .22s ease;
}

@media (hover: hover) {
  .vs-button .wp-block-button__link:hover {
    transform: translateY(-2px);
  }

  .vs-button--primary .wp-block-button__link:hover {
    background: var(--vs-green);
    box-shadow: 0 18px 34px rgb(5 20 46 / 28%);
  }

  .vs-button--secondary .wp-block-button__link:hover {
    border-color: #fff;
    background: #fff;
    color: var(--vs-navy);
    box-shadow: 0 18px 34px rgb(5 20 46 / 24%);
  }

  .vs-button .wp-block-button__link:hover .vs-button__icon {
    transform: translate(2px, -2px);
    background-color: #000;
    color: #fff;
  }
}

.vs-button .wp-block-button__link:focus-visible {
  transform: translateY(-2px);
}

.vs-button .wp-block-button__link:focus-visible .vs-button__icon {
  background-color: #000;
  color: #fff;
}

.vs-button .wp-block-button__link:focus-visible .vs-button__icon {
  transform: translate(2px, -2px);
}

/* Enterprise impact */
.vs-impact {
  min-height: 733px;
  padding-top: 78px;
  padding-bottom: 27px;
}

.vs-impact__columns {
  display: grid;
  grid-template-columns: 504px 1fr;
  gap: 60px;
  margin-bottom: 74px;
}

.vs-impact__columns > .wp-block-column {
  margin: 0;
}

.vs-impact__intro .vs-eyebrow {
  margin-bottom: 23px;
}

.vs-impact__intro h2 {
  margin: 0;
  font-size: 43px;
  line-height: 50px;
  letter-spacing: -1.5px;
}

.vs-impact__intro > .vs-muted {
  max-width: 510px;
  margin: 15px 0 0;
  font-size: 17px;
  line-height: 26px;
}

.vs-partner-card {
  position: relative;
  width: 504px;
  min-height: 170px;
  margin-top: 39px;
  padding: 32px 36px 26px;
  border-radius: 30px;
  background: var(--vs-navy);
  color: #c9d8ea;
  box-shadow: var(--vs-shadow);
}

.vs-partner-card h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 28px;
}

.vs-partner-card > p:not(.vs-partner-card__icon) {
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 22px;
}

.vs-partner-card__icon {
  position: absolute;
  right: 34px;
  bottom: 35px;
  display: none;
  width: 52px;
  height: 52px;
  margin: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--vs-green);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.vs-impact__content > h3 {
  margin: 3px 0 0;
  font-size: 32px;
  line-height: 36px;
}

.vs-impact__content > .vs-muted {
  width: 520px;
  max-width: 100%;
  margin: 11px 0 0;
  font-size: 16px;
  line-height: 24px;
}

.vs-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 360px);
  gap: 30px 23px;
  margin-top: 38px;
}

.vs-impact-card {
  width: 360px;
  min-height: 78px;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid;
  border-radius: 18px;
}

.vs-impact-card--green {
  border-color: var(--vs-border-green);
  background: var(--vs-pale-green);
}

.vs-impact-card--blue {
  border-color: var(--vs-border-blue);
  background: var(--vs-pale-blue);
}

.vs-impact-card__icon {
  width: 48px;
  flex: 0 0 48px;
  margin: 0;
}

.vs-impact-card__copy {
  margin: 0;
}

.vs-impact-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
}

.vs-impact-card p {
  margin: 5px 0 0;
  color: var(--vs-card-text);
  font-size: 11px;
  line-height: 14px;
  white-space: nowrap;
}

.vs-engagement {
  display: grid;
  grid-template-columns: 255px 1fr;
  min-height: 92px;
  align-items: center;
  gap: 0;
  padding-top: 13px;
  border-top: 1px solid var(--vs-border-blue);
}

.vs-engagement h3 {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.vs-engagement__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-engagement__steps::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--vs-border-blue);
}

.vs-engagement__steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.vs-engagement__steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #cbd5df;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.vs-engagement__steps .is-active span {
  border-color: var(--vs-green);
  background: var(--vs-green);
  color: #fff;
}

.vs-engagement__steps strong {
  font-size: 11px;
  font-weight: 500;
}

/* Transformation */
.vs-transformation-wrap {
  padding-top: 72px;
  padding-bottom: 80px;
}

.vs-transformation {
  min-height: 440px;
  padding: 60px 78px;
  border-radius: 30px;
  background: var(--vs-navy);
  color: #c9d8ea;
  box-shadow: var(--vs-shadow);
}

.vs-transformation .wp-block-columns {
  gap: 60px;
}

.vs-transformation h2 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 43px;
  line-height: 47px;
  letter-spacing: -1.4px;
}

.vs-transformation p:not(.vs-eyebrow) {
  max-width: 480px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
}

.vs-transformation .wp-block-button__link {
  margin-top: 18px;
  padding: 13px 24px;
}

.vs-transformation figure {
  margin: 0;
}

.vs-transformation img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  object-fit: cover;
}

/* Technology orbit */
.vs-tech {
  min-height: 690px;
  padding-top: 92px;
  padding-bottom: 88px;
}

.vs-tech .wp-block-columns {
  gap: 90px;
}

.vs-tech h2,
.vs-consultation h2,
.vs-insights h2 {
  margin: 20px 0 0;
  font-size: 43px;
  line-height: 50px;
  letter-spacing: -1.5px;
}

.vs-tech .vs-muted {
  max-width: 530px;
  font-size: 16px;
  line-height: 25px;
}

.vs-service-list {
  max-width: 560px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.vs-service-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--vs-border-blue);
  font-size: 13px;
}

.vs-service-list span {
  color: var(--vs-card-text);
}

.vs-orbit {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #fff 0 21%, #eef8ff 22% 34%, transparent 35% 43%, #dcecf7 44% 44.4%, transparent 44.6%);
}

.vs-orbit__core {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  background: var(--vs-navy);
  box-shadow: 0 0 0 20px #fff, 0 16px 40px rgb(5 20 46 / 15%);
}

.vs-orbit__core figure {
  margin: 0;
}

.vs-orbit__labels {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-orbit__labels li {
  position: absolute;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgb(5 20 46 / 10%);
  font-size: 12px;
}

.vs-orbit__labels li:nth-child(1) { top: 5%; left: 45%; }
.vs-orbit__labels li:nth-child(2) { top: 25%; right: 8%; }
.vs-orbit__labels li:nth-child(3) { right: 8%; bottom: 24%; }
.vs-orbit__labels li:nth-child(4) { bottom: 5%; left: 42%; }
.vs-orbit__labels li:nth-child(5) { bottom: 24%; left: 8%; }
.vs-orbit__labels li:nth-child(6) { top: 25%; left: 8%; }

/* Consultation */
.vs-consultation {
  min-height: 650px;
  padding: 72px var(--vs-gutter);
}

.vs-consultation .wp-block-cover__background {
  background: linear-gradient(90deg, rgb(3 8 23 / 96%), rgb(3 8 23 / 78%) 48%, rgb(3 8 23 / 50%)) !important;
}

.vs-consultation .wp-block-columns {
  gap: 90px;
}

.vs-consultation p {
  max-width: 520px;
  color: #d7e5f5;
  font-size: 16px;
  line-height: 25px;
}

.vs-contact-list {
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.vs-contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
  font-size: 14px;
}

.vs-contact-list strong {
  color: var(--vs-green);
}

.vs-contact-list a,
.vs-contact-list span {
  color: #fff;
  text-decoration: none;
}

.vs-form-card {
  padding: 34px 40px 38px;
  border: 1px solid rgb(221 232 245 / 75%);
  border-radius: 28px;
  background: rgb(6 16 51 / 74%);
  backdrop-filter: blur(10px);
}

.vs-form-card h3 {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 31px;
}

.vs-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

.vs-form label {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.vs-form input,
.vs-form select,
.vs-form textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 11px 13px;
  border: 1px solid var(--vs-border-blue);
  border-radius: 8px;
  background: var(--vs-ice);
  color: var(--vs-navy);
}

.vs-form textarea {
  min-height: 82px;
  resize: vertical;
}

.vs-form__wide {
  grid-column: 1 / -1;
}

.vs-form__submit {
  text-align: center;
}

.vs-form button {
  min-width: 178px;
  min-height: 48px;
  border: 0;
  border-radius: 24px;
  background: var(--vs-green);
  color: var(--vs-navy);
  font-weight: 700;
  cursor: pointer;
}

.vs-honeypot {
  position: absolute;
  left: -10000px;
}

.vs-form-notice {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #eaffea;
  color: #075b00;
}

.vs-form-notice--error {
  background: #fff0f0;
  color: #8b0000;
}

/* Insights */
.vs-insights {
  min-height: 780px;
  padding-top: 86px;
  padding-bottom: 90px;
}

.vs-insights__layout {
  gap: 70px;
}

.vs-insights h2 {
  margin-bottom: 20px;
}

.vs-insights .vs-muted {
  max-width: 430px;
  font-size: 16px;
  line-height: 25px;
}

.vs-insights .wp-block-button__link {
  padding: 13px 24px;
}

.vs-posts .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vs-post-card {
  overflow: hidden;
  min-height: 180px;
  border: 1px solid var(--vs-border-blue);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgb(5 20 46 / 6%);
}

.vs-post-card .wp-block-post-featured-image {
  margin: 0;
}

.vs-post-card .wp-block-group {
  padding: 16px;
}

.vs-post-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 21px;
}

.vs-post-card p {
  font-size: 12px;
  line-height: 18px;
}

/* Footer */
.vs-footer {
  padding: 72px 20px 36px;
  background: var(--vs-footer);
  color: #aab0c0;
}

.vs-footer .wp-block-columns {
  gap: 58px;
}

.vs-footer h2,
.vs-footer h3 {
  color: #fff;
}

.vs-footer h2 {
  font-size: 42px;
  line-height: 47px;
}

.vs-footer h3 {
  font-size: 21px;
  line-height: 26px;
}

.vs-footer p,
.vs-footer .wp-block-navigation-item__content {
  color: #aab0c0;
  font-size: 15px;
  line-height: 24px;
}

.vs-footer .wp-block-navigation__container {
  align-items: flex-start;
  gap: 10px;
}

.vs-footer .wp-block-separator {
  margin-top: 58px;
  border-color: #28313c;
}

/* Responsive */
@media (max-width: 1200px) {
  .vs-header .wp-block-navigation__container {
    gap: 36px;
  }

  .vs-hero__title {
    font-size: 72px;
    line-height: 72px;
  }

  .vs-impact__columns {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: 40px;
  }

  .vs-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-impact-card {
    width: 100%;
  }

  .vs-impact-card p {
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .vs-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .vs-header__logo {
    position: static;
    width: 145px;
    height: auto;
  }

  .vs-header__logo img {
    width: 145px;
    height: auto;
  }

  .vs-header .vs-nav {
    position: static;
    width: auto;
    transform: none;
  }

  .vs-header .wp-block-navigation__container {
    gap: 28px;
  }

  .vs-header__inner > .wp-block-buttons {
    position: static;
  }

  .vs-impact {
    min-height: auto;
    padding-block: 70px;
  }

  .vs-impact__columns {
    display: flex;
    gap: 50px;
    margin-bottom: 55px;
  }

  .vs-impact__intro,
  .vs-impact__content {
    flex-basis: auto !important;
  }

  .vs-partner-card {
    width: 100%;
  }

  .vs-engagement {
    grid-template-columns: 220px 1fr;
  }

  .vs-transformation,
  .vs-tech .wp-block-columns,
  .vs-consultation .wp-block-columns,
  .vs-insights__layout {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .vs-header__inner > .wp-block-buttons {
    display: none;
  }

  .vs-header .wp-block-navigation__responsive-container-open {
    display: flex;
    color: #fff;
  }

  .vs-hero__title {
    font-size: 64px;
    line-height: 64px;
  }

  .vs-transformation {
    padding: 48px;
  }

  .vs-footer .wp-block-columns {
    flex-wrap: wrap;
  }

  .vs-footer .wp-block-column {
    flex-basis: 44% !important;
  }
}

@media (max-width: 768px) {
  :root {
    --vs-gutter: 16px;
  }

  .vs-home {
    margin-top: -80px;
  }

  .vs-header,
  .vs-header__inner {
    height: 80px;
  }

  .vs-header__inner {
    width: calc(100% - 32px);
  }

  .vs-header__logo,
  .vs-header__logo img {
    width: 132px;
    height: 60px;
  }

  .vs-header__logo {
    top: 10px;
  }

  .vs-hero {
    min-height: 760px;
  }

  .vs-hero__content {
    width: calc(100% - 32px);
    padding-top: 150px;
  }

  .vs-hero__title {
    margin-top: 24px;
    font-size: clamp(46px, 9vw, 64px);
    line-height: .98;
    letter-spacing: -.04em;
  }

  .vs-hero__lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 27px;
  }

  .vs-hero__actions {
    margin-top: 40px;
  }

  .vs-impact__columns,
  .vs-transformation,
  .vs-tech .wp-block-columns,
  .vs-consultation .wp-block-columns,
  .vs-insights__layout {
    flex-direction: column;
    width: 100%;
  }

  .vs-impact__columns > .wp-block-column,
  .vs-tech .wp-block-column,
  .vs-consultation .wp-block-column,
  .vs-insights__layout > .wp-block-column {
    width: 100%;
    min-width: 0;
    flex-basis: auto !important;
  }

  .vs-impact-grid {
    grid-template-columns: 1fr;
  }

  .vs-impact__intro h2,
  .vs-transformation h2,
  .vs-tech h2,
  .vs-consultation h2,
  .vs-insights h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .vs-engagement {
    display: block;
    padding-top: 28px;
  }

  .vs-engagement__steps {
    margin-top: 24px;
  }

  .vs-transformation {
    padding: 42px 32px;
  }

  .vs-orbit {
    min-height: 430px;
  }

  .vs-posts .wp-block-post-template {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .vs-hero__title {
    font-size: clamp(40px, 12vw, 52px);
  }

  .vs-hero__actions {
    display: grid;
    gap: 16px;
  }

  .vs-button--primary,
  .vs-button--secondary,
  .vs-button--primary .wp-block-button__link,
  .vs-button--secondary .wp-block-button__link {
    width: 100%;
  }

  .vs-impact__intro h2,
  .vs-transformation h2,
  .vs-tech h2,
  .vs-consultation h2,
  .vs-insights h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .vs-partner-card {
    min-height: 210px;
  }

  .vs-partner-card h3 {
    font-size: 21px;
  }

  .vs-impact-card {
    align-items: center;
  }

  .vs-engagement__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vs-engagement__steps::before {
    display: none;
  }

  .vs-engagement__steps li {
    grid-template-columns: 48px 1fr;
    justify-items: start;
    align-items: center;
  }

  .vs-transformation-wrap {
    padding-inline: 0;
  }

  .vs-transformation {
    border-radius: 0;
  }

  .vs-orbit {
    min-height: 360px;
  }

  .vs-orbit__core {
    width: 110px;
    height: 110px;
  }

  .vs-orbit__labels li {
    font-size: 10px;
  }

  .vs-form {
    grid-template-columns: 1fr;
  }

  .vs-form__wide {
    grid-column: auto;
  }

  .vs-form-card {
    padding: 28px 22px;
  }

  .vs-footer .wp-block-column {
    flex-basis: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
