.customer-kv-section {
  position: relative;
  max-width: 1400px;
  min-height: 320px;
  margin: 0 auto 40px;
  overflow: hidden;
}

.customer-kv-section__media,
.customer-kv-section__media img {
  display: block;
  width: 100%;
  height: auto;
}

.customer-kv-section__content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 24px;
  transform: translateY(-50%);
  text-align: center;
}

.customer-kv-section__title {
  margin: 0;
  color: #353535;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
}

.customer-kv-section__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.customer-kv-section__link {
  padding: 6px 14px;
  border: 0;
  border-radius: 50px;
  background: rgba(55, 55, 55, 0.5);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.customer-kv-section__link:hover,
.customer-kv-section__link:focus-visible {
  background: #fff;
  color: #353535;
}

.customer-kv-section__link:focus-visible {
  outline: 2px solid #256fff;
  outline-offset: 2px;
}

@media screen and (max-width: 839px) {
  .customer-kv-section {
    min-height: 220px;
    margin-bottom: 20px;
  }

  .customer-kv-section__content {
    padding: 16px;
  }

  .customer-kv-section__title {
    font-size: 26px;
  }

  .customer-kv-section__links {
    gap: 0 3px;
    margin-top: 10px;
  }

  .customer-kv-section__link {
    margin-bottom: 10px;
    padding: 4px 8px;
    font-size: 10px;
  }
}
