.wbso-short {
  padding: 80px 20px;
  background: #ffffff;
}

.wbso-short__container {
  max-width: 1000px;
  margin: 0 auto;
}

.wbso-short__title {
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
}

.wbso-short__title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #008c8c;
  position: absolute;
  left: 0;
  bottom: -12px;
}

.wbso-short__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.wbso-item__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #008c8c;
}

.wbso-item__icon svg {
  width: 100%;
  height: 100%;
}

.wbso-item__heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #2c3e50;
  font-family: inherit;
}

.wbso-item__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 992px) {
  .wbso-short__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wbso-short__grid {
    grid-template-columns: 1fr;
  }
}


