.imow-ft-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.imow-ft-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.imow-ft-item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.imow-ft-item.is-active {
  border-color: #C9F02C;
  background-color: rgba(201, 240, 44, 0.05);
}

.imow-ft-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.imow-ft-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C9F02C;
  flex: 0 0 auto;
}

.imow-ft-title {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.imow-ft-desc {
  opacity: 0.7;
  font-size: 0.875rem;
}
