.fhb {
  width: 100%;
  padding: var(--fhb-pad-top, 28px) 20px var(--fhb-pad-bottom, 28px);
  background: var(--fhb-section-bg, #ffffff);
  box-sizing: border-box;
}

.fhb__inner {
  width: 100%;
  max-width: var(--fhb-max-width, 1440px);
  margin: 0 auto;
}

.fhb__title {
  margin: 0 0 16px;
  color: var(--fhb-title, #1f2a24);
  font-size: var(--fhb-title-size, 28px);
  font-weight: 700;
  line-height: 1.2;
}

.fhb__row {
  display: grid;
  grid-template-columns: repeat(var(--fhb-cols, 6), minmax(0, 1fr));
  gap: var(--fhb-gap, 14px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.fhb__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 18px 14px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  background: var(--fhb-card-bg, #ffffff);
  border: 1px solid var(--fhb-card-border, #e6e2dc);
  border-radius: var(--fhb-radius, 14px);
  box-sizing: border-box;
}

.fhb__icon {
  display: block;
  margin-bottom: 8px;
  font-size: var(--fhb-icon-size, 22px);
  line-height: 1;
}

.fhb__card-title {
  margin: 0;
  color: var(--fhb-card-title, #1f2a24);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.fhb__card-desc {
  margin: 6px 0 0;
  color: var(--fhb-card-desc, #7a847c);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 1199.98px) {
  .fhb__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .fhb {
    padding-inline: 16px;
  }

  .fhb__title {
    font-size: 24px;
  }

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