
.tab-section-simple {
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}

.tab-section-tabs {
  width: 100%;
  display: flex;
  gap: 24px;
  margin: 24px 0 !important;
}

.tab-section-simple .tab-section-tab-item {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.tab-section-simple .tab-section-tab-label {
  color: rgba(255, 255, 255, 0.9);
  font-family: "PingFang SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.tab-section-simple .tab-section-tab-underline {
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.tab-section-simple .tab-section-tab-item--active .tab-section-tab-label {
  color: #3E7DFF;
}

.tab-section-simple .tab-section-tab-item--active .tab-section-tab-underline {
  background-color: #3E7DFF;
}

.tab-section-simple .tab-section-tab-item:hover .tab-section-tab-label {
  color: rgba(255, 255, 255, 1);
}

.tab-section-simple .tab-section-tab-item:hover .tab-section-tab-underline {
  background-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 824px) {
  .tab-section-simple {
    padding: 0px;
  }
  .home-sections{
    padding: 0px 16px;
  }
  .tab-section-tab-underline{
    display: none;
  }
    .tab-section-simple .tab-section-tabs {
    margin: 0 0 16px 0;
    padding: 12px 16px !important;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #1c1c1c;
  }

  .tab-section-simple .tab-section-tab-item {
    flex-shrink: 0;
  }

  .tab-section-simple .tab-section-tab-label {
    font-size: 14px;
  }

  .tab-section-simple .tab-section-tab-item--active .tab-section-tab-label {
    color: var(---500, var(---500, #3E7DFF));
    font-weight: 600;
  }
}
