/* Multi-step offerte. Scoped so Konta header/nav/footer stay untouched. */

#hsf-calculator {
  scroll-margin-top: 96px;
}

.hsf-quote-shell [hidden],
.hsf-calc [hidden] {
  display: none !important;
}

/* Variabelen op shell ÉN kaart: op desktop verhuist .hsf-calc naar de
   herokolom en staat dan buiten de shell. */
.hsf-quote-shell,
.hsf-calc {
  --hsf-orange: var(--theme-color, #ff5e14);
  --hsf-ink: #262a36;
  --hsf-mute: #5c666d;
  --hsf-line: #e6e8ec;
  --hsf-bg: #f5f6f8;
  --hsf-r: 8px;
  color: var(--hsf-ink);
}

.hsf-quote-shell {
  background: var(--hsf-bg);
  padding: 28px 0 40px;
}

.hsf-quote-shell *,
.hsf-quote-shell *::before,
.hsf-quote-shell *::after,
.hsf-calc *,
.hsf-calc *::before,
.hsf-calc *::after {
  box-sizing: border-box;
}

.hsf-quote-shell__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.hsf-trust {
  background: #fff;
  border-radius: var(--hsf-r);
  padding: 18px 16px;
  box-shadow: 0 8px 28px rgba(38, 42, 54, 0.06);
}

.hsf-trust__kicker {
  margin: 0 0 8px;
  color: var(--hsf-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hsf-trust__title {
  margin: 0 0 10px;
  font-family: var(--title-font, inherit);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--hsf-ink);
  text-transform: none;
}

.hsf-trust__lead {
  margin: 0 0 12px;
  color: var(--hsf-mute);
  font-size: 14px;
  line-height: 1.45;
}

.hsf-trust__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hsf-trust__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hsf-ink);
}

.hsf-trust__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--hsf-orange);
}

.hsf-calc {
  background: #fff;
  border-radius: var(--hsf-r);
  padding: 18px 18px 16px;
  box-shadow: 0 8px 28px rgba(38, 42, 54, 0.06);
  min-width: 0;
}

.hsf-calc__progress {
  margin-bottom: 12px;
}

.hsf-calc__step-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hsf-orange);
}

.hsf-calc__bar {
  height: 4px;
  background: #eceef1;
  border-radius: 99px;
  overflow: hidden;
}

.hsf-calc__bar i {
  display: block;
  height: 100%;
  width: 16.66%;
  background: var(--hsf-orange);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.hsf-calc__title {
  margin: 0 0 6px;
  font-family: var(--title-font, inherit);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
  color: var(--hsf-ink);
}

.hsf-calc__lead {
  margin: 0 0 12px;
  color: var(--hsf-mute);
  font-size: 14px;
  line-height: 1.4;
}

.hsf-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hsf-grid {
  display: grid;
  gap: 10px 12px;
}

.hsf-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.hsf-field--full {
  grid-column: 1 / -1;
}

.hsf-field,
.hsf-fieldset {
  display: grid;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.hsf-field span,
.hsf-field legend,
.hsf-fieldset legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--hsf-ink);
}

.hsf-field input,
.hsf-field select,
.hsf-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--hsf-line);
  border-radius: var(--hsf-r);
  background: #fff;
  color: var(--hsf-ink);
  font: inherit;
  font-size: 16px;
  box-shadow: none;
  appearance: none;
}

.hsf-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--hsf-mute) 50%),
    linear-gradient(135deg, var(--hsf-mute) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.hsf-field textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.45;
}

.hsf-field input:hover,
.hsf-field select:hover,
.hsf-field textarea:hover {
  border-color: #cfd3d9;
}

.hsf-field input:focus,
.hsf-field select:focus,
.hsf-field textarea:focus,
.hsf-card:focus-within {
  outline: none;
  border-color: var(--hsf-orange);
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.15);
}

.hsf-field.is-bad input,
.hsf-field.is-bad select,
.hsf-field.is-bad textarea,
.hsf-fieldset.is-bad .hsf-cards {
  border-color: #b42318;
}

.hsf-field__error {
  color: #b42318;
  font-size: 13px;
  font-weight: 600;
}

.hsf-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hsf-choice,
.hsf-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--hsf-line);
  border-radius: 99px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.hsf-choice:has(input:checked),
.hsf-check:has(input:checked) {
  border-color: var(--hsf-orange);
  background: #fff6f1;
  color: var(--hsf-ink);
}

.hsf-check--block {
  width: 100%;
  margin-top: 10px;
  border-radius: var(--hsf-r);
  padding: 8px 12px;
}

.hsf-choice input,
.hsf-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--hsf-orange);
}

.hsf-subhead {
  margin: 14px 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hsf-ink);
}

.hsf-hint {
  margin: -2px 0 8px;
  color: var(--hsf-mute);
  font-size: 13px;
  line-height: 1.4;
}

.hsf-other-address {
  margin-top: 14px;
  padding: 16px;
  background: #f8f9fb;
  border-radius: var(--hsf-r);
}

.hsf-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 8px;
}

.hsf-cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.hsf-cards--big {
  grid-template-columns: 1fr 1fr;
}

.hsf-cards--big .hsf-card {
  min-height: 64px;
  padding: 12px 14px;
}

.hsf-cards--chips {
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 6px;
}

.hsf-cards--chips .hsf-card {
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 6px;
  align-items: center;
  text-align: center;
}

.hsf-cards--chips .hsf-card span {
  font-size: 13px;
}

.hsf-cards--chips .hsf-card:has(input:checked)::after {
  content: none;
}

/* =========================================================
 * Compacte keuzevelden (click-to-open) — [data-select]
 * ======================================================= */
.hsf-select {
  position: relative;
  min-width: 0;
}

.hsf-select__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--hsf-line);
  border-radius: var(--hsf-r);
  background: #fff;
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hsf-mute);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hsf-select__btn.has-value {
  color: var(--hsf-ink);
  font-weight: 700;
}

.hsf-select__btn:hover {
  border-color: #cfd3d9;
}

.hsf-select.is-open .hsf-select__btn,
.hsf-select__btn:focus-visible {
  outline: none;
  border-color: var(--hsf-orange);
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.15);
}

.hsf-fieldset.is-bad .hsf-select__btn {
  border-color: #b42318;
}

.hsf-select__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hsf-select__chev {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: -4px;
  border-right: 2px solid #8a8f96;
  border-bottom: 2px solid #8a8f96;
  transform: rotate(45deg);
  transition: transform 0.2s ease, margin 0.2s ease;
}

.hsf-select.is-open .hsf-select__chev {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.hsf-select__panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--hsf-line);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(20, 24, 34, 0.16);
  max-height: 300px;
  overflow: auto;
  animation: hsf-pop 0.16s ease;
}

@keyframes hsf-pop {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hsf-select__panel {
    animation: none;
  }
}

/* Opties in het paneel: rustige rijen i.p.v. losse cards */
.hsf-select__panel .hsf-cards,
.hsf-select__panel .hsf-cards--chips,
.hsf-select__panel .hsf-cards--big {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 2px;
}

.hsf-select__panel .hsf-card {
  min-height: 40px;
  padding: 8px 34px 8px 12px !important;
  border: 0 !important;
  border-radius: 6px;
  box-shadow: none !important;
  background: #fff;
  align-items: flex-start;
  text-align: left;
}

.hsf-select__panel .hsf-card:hover {
  background: #f5f6f8;
}

.hsf-select__panel .hsf-card:has(input:checked) {
  background: #fff6f1;
}

.hsf-select__panel .hsf-card:has(input:checked)::after,
.hsf-select__panel .hsf-cards--chips .hsf-card:has(input:checked)::after {
  content: "" !important;
  top: 50%;
  right: 10px;
  margin-top: -7px;
}

.hsf-select__panel .hsf-card span {
  font-size: 14px;
}

.hsf-select__panel .hsf-card small {
  font-size: 12px;
}

.hsf-linklike {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 10px 0 0;
  color: var(--hsf-orange);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hsf-m2-detail {
  margin-top: 12px;
  padding: 12px;
  background: #f8f9fb;
  border-radius: var(--hsf-r);
}

.hsf-finish-lead {
  margin: 0 0 10px;
  color: var(--hsf-mute);
  font-size: 14px;
}

.hsf-response-promise {
  margin: 10px 0 0;
  padding: 9px 12px;
  background: #fff6f1;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hsf-ink);
}

.hsf-upload__btn {
  position: relative;
}

.hsf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid var(--hsf-line);
  border-radius: var(--hsf-r);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.hsf-card:hover {
  border-color: #cfd3d9;
}

.hsf-card:has(input:checked) {
  border-color: var(--hsf-orange);
  background: #fff6f1;
  box-shadow: inset 0 0 0 1px var(--hsf-orange);
}

.hsf-card:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: var(--hsf-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
}

.hsf-card:active {
  transform: scale(0.99);
}

.hsf-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

.hsf-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--hsf-ink);
  pointer-events: none;
}

.hsf-card small {
  color: var(--hsf-mute);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  pointer-events: none;
}

.hsf-card--check {
  min-height: 72px;
}

.hsf-m2-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}

.hsf-m2-row input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.hsf-m2-unit {
  display: grid;
  place-items: center;
  min-width: 52px;
  padding: 0 12px;
  background: #f4f5f7;
  border: 1px solid var(--hsf-line);
  border-left: 0;
  border-radius: 0 var(--hsf-r) var(--hsf-r) 0;
  font-weight: 700;
  color: var(--hsf-mute);
}

.hsf-floor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.hsf-floor--custom {
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: end;
  background: #f8f9fb;
  padding: 12px;
  border-radius: var(--hsf-r);
}

.hsf-add-floor,
.hsf-floor-remove,
.hsf-edit,
.hsf-upload__btn {
  appearance: none;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.hsf-add-floor {
  margin: 4px 0 14px;
  color: var(--hsf-orange);
  font-weight: 700;
  font-size: 14px;
  padding: 0;
}

.hsf-add-floor:hover,
.hsf-edit:hover {
  text-decoration: underline;
}

.hsf-floor-remove {
  min-height: 48px;
  padding: 0 10px;
  color: var(--hsf-mute);
  font-size: 13px;
  font-weight: 600;
}

.hsf-total {
  margin: 0;
  padding: 12px 14px;
  background: #fff6f1;
  border-radius: var(--hsf-r);
  font-weight: 700;
}

.hsf-finish-intro {
  margin-bottom: 10px;
}

.hsf-finish-intro h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.hsf-finish-intro p {
  margin: 0;
  color: var(--hsf-mute);
  font-size: 13px;
  line-height: 1.45;
}

.hsf-upload {
  margin: 8px 0 20px;
}

.hsf-upload__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px dashed var(--hsf-line);
  border-radius: var(--hsf-r);
  background: #f8f9fb;
  font-size: 14px;
  font-weight: 700;
  color: var(--hsf-ink);
}

.hsf-upload__btn input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hsf-upload__btn:hover,
.hsf-upload__btn:focus-within {
  border-color: var(--hsf-orange);
  color: var(--hsf-orange);
}

.hsf-upload__list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hsf-upload__list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: #f8f9fb;
  border-radius: 6px;
  font-size: 13px;
}

.hsf-upload__list img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.hsf-upload__list button {
  border: 0;
  background: none;
  color: var(--hsf-mute);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.hsf-summary {
  margin: 0 0 12px;
}

.hsf-summary__card {
  background: #f8f9fb;
  border-radius: var(--hsf-r);
  padding: 12px 14px;
}

.hsf-summary__title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hsf-ink);
}

.hsf-summary__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.hsf-summary__list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 8px;
  align-items: baseline;
  font-size: 13px;
}

.hsf-summary__list span {
  color: var(--hsf-mute);
  font-weight: 600;
}

.hsf-summary__list b {
  font-weight: 700;
}

.hsf-edit {
  color: var(--hsf-orange);
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  white-space: nowrap;
}

.hsf-consent {
  margin: 0 0 8px;
  color: var(--hsf-mute);
  font-size: 13px;
}

.hsf-consent a {
  color: var(--hsf-orange);
}

.hsf-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  background: #fdecec;
  color: #b42318;
  border-radius: var(--hsf-r);
  font-size: 14px;
  font-weight: 600;
}

.hsf-nav {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.hsf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: var(--hsf-r);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.hsf-btn--primary {
  flex: 1;
  background: var(--hsf-orange);
  color: #fff;
}

.hsf-btn--primary:hover {
  filter: brightness(0.96);
}

.hsf-btn--ghost {
  background: #fff;
  color: var(--hsf-ink);
  border-color: var(--hsf-line);
}

.hsf-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.hsf-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--hsf-mute);
  font-size: 12px;
}

.hsf-trust-inline li {
  position: relative;
  padding-left: 12px;
}

.hsf-trust-inline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--hsf-orange);
}

.hsf-thanks {
  text-align: left;
  padding: 4px 0 8px;
  animation: hsf-fade 0.35s ease;
}

.hsf-thanks__badge {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  margin-bottom: 12px;
  background: var(--hsf-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 22px 22px;
  background-position: center;
  background-repeat: no-repeat;
}

.hsf-thanks h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.hsf-thanks p {
  margin: 0 0 10px;
  color: var(--hsf-mute);
  font-size: 14px;
  line-height: 1.5;
}

.hsf-thanks strong {
  color: var(--hsf-ink);
}

.hsf-thanks__steps {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.hsf-thanks__steps li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 600;
}

.hsf-thanks__steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: var(--hsf-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
}

.hsf-thanks__alt {
  font-size: 13px;
}

.hsf-thanks a {
  color: var(--hsf-orange);
  font-weight: 700;
}

@keyframes hsf-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hsf-step.is-active {
  animation: hsf-fade 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  .hsf-step.is-active,
  .hsf-thanks {
    animation: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hsf-calc-replace {
  margin: 12px 0 24px;
}

@media (max-width: 991px) {
  .hsf-quote-shell {
    padding: 12px 0 16px;
  }

  .hsf-quote-shell__inner {
    display: flex;
    flex-direction: column;
    width: min(1120px, calc(100% - 20px));
    gap: 12px;
  }

  .hsf-calc {
    order: -1;
    padding: 16px 14px;
  }

  .hsf-trust {
    padding: 14px;
  }

  .hsf-trust__title {
    font-size: 17px;
  }

  .hsf-cards--3 {
    grid-template-columns: 1fr 1fr;
  }

  .hsf-grid--2 {
    grid-template-columns: 1fr;
  }

  .hsf-floor--custom {
    grid-template-columns: 1fr;
  }

  .hsf-summary__list li {
    grid-template-columns: 1fr auto;
  }

  .hsf-summary__list span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .hsf-calc__title {
    font-size: 19px;
  }

  .hsf-nav {
    flex-direction: column-reverse;
  }

  .hsf-btn {
    width: 100%;
  }

  .hsf-cards,
  .hsf-cards--big {
    grid-template-columns: 1fr;
  }

  .hsf-cards--chips {
    grid-template-columns: 1fr 1fr;
  }

  .hsf-cards--3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hsf-cards--3 {
    grid-template-columns: 1fr 1fr;
  }
}
