.lhf {
  background: #fed700; 
  padding: 22px 15px;
  min-height: 130px;
  box-sizing: border-box;

  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.lhf__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lhf__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.lhf__link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-width: 0;
}
.lhf__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.lhf__title {
  font-weight: 500;
  color: #222;
}

.lhf__desc {
  font-size: 14px;
  color: #666666;
  margin-top: 2px;
}

.lhf__item:not(:first-child) {
  border-left: 1px solid rgba(0,0,0,0.2);
  padding-left: 18px;
}

/* адаптив */
@media (max-width: 992px) {
  .lhf__row { grid-template-columns: repeat(2, 1fr); }
  .lhf__item:not(:first-child) { border-left: none; padding-left: 0; }
}

@media (max-width: 576px) {
  .lhf__row { grid-template-columns: 1fr; }
}
