
/* Tabs */

.feature-tabs {
  background: #fff7f4;
  padding: 100px 0;
  text-align: center;
}
.feature-tabs.uxhub {
  padding-bottom: 0;
}
.feature-tabs .container {
  max-width: 1352px;
  margin: 0 auto;
  padding: 0 30px;
}

.feature-tabs__heading {
  font-size: 64px;
  line-height: 68px;
  font-weight: 500;
  color: #2C180D;
  margin-bottom: 60px;
}

.feature-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #e5dcd5;
  margin-bottom: 60px;
}

.feature-tabs__nav .tab {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #A0857B;
  padding: 12px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.feature-tabs__nav .tab.active {
  color: #EA580C;
}

.feature-tabs__nav .tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #f05a28;
}

/* Content */
.feature-tabs__content {
  text-align: left;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.tab-panel__text {
  flex: 0 0 50%;
}

.tab-panel__text h3 {
  font-size: 36px;
  line-height: 1.3;
  color: #2C180D;
  font-weight: 500;
  margin-bottom: 20px;
}

.tab-panel__text p {
  font-size: 18px;
  color: #715D53;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}

.tab-panel__text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab-panel__text ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #715D53;
  line-height: 1.6;
}

.tab-panel__image {
  flex: 0 0 50%;
}

.tab-panel__image img {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .tab-panel__inner {
    flex-direction: column;
    text-align: center;
  }

  .tab-panel__text,
  .tab-panel__image {
    flex: 1 1 100%;
  }

  .tab-panel__text {
    text-align: center;
  }
}
