/* Only index page styling */

.features-section .mobile-tab-wrapper .tab-button .icon {
  transition: transform 0.2s ease;
}

.features-section .mobile-tab-wrapper .tab-button.active .icon {
  transform: rotate(-180deg);
}

.features-section .mobile-tab-wrapper .tab-button.active {
  font-weight: 500;
  border-bottom-color: rgb(217 70 239);
}

.features-section
  :where(.mobile-tab-wrapper, .desktop-tab-wrapper)
  .tab-content {
  display: none;
}

.features-section .desktop-tab-wrapper .tab-content.active {
  display: flex;
}

.features-section .mobile-tab-wrapper .tab-content.active {
  display: block;
}

@media (min-width: 1024px) {
  .features-section .mobile-tab-wrapper li .tab-content {
    display: none !important;
  }
}
