/*-----------------------------------
	Custom Tabs (Startseite)
  -----------------------------------*/
.custom-tabs {
  width: 100%;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.tab-buttons button {
  flex: 1;
  padding: 10px 14px;
  background: #EEE7FA;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  color: #333333;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab-buttons button.active {
  background: #9be7e0;
  color: #333333;
}

.tab-content {
  display: none;
  padding: 20px 0;
  color: #333333;
}

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

.soft-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.soft-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #333333;
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #333333;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
    gap: 6px;
  }

  .tab-buttons button {
    width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.responsive-text {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  line-height: 1.4;
}