.angebote-section .angebote-box {
  background: var(--color-rosa);
  border-radius: 16px;
  padding: 60px;
}

.angebote-section .angebote-headline {
  margin-bottom: 20px;
}

.angebote-section .angebote-text {
  max-width: 420px;
}

.angebote-section .angebote-accordion {
  margin-top: 10px;
}

.angebote-section .angebote-item {
  border-top: 1px solid var(--color-black);
}

.angebote-section .angebote-item:last-child {
  border-bottom: 1px solid var(--color-black);
}

.angebote-section .angebote-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.angebote-section .angebote-title {
  font-size: 28px;
  color: var(--color-green);
  margin: 0;
}

.angebote-section .angebote-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.angebote-section .angebote-icon::before,
.angebote-section .angebote-icon::after {
  content: "";
  position: absolute;
  background: var(--color-black);
}

.angebote-section .angebote-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.angebote-section .angebote-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}

.angebote-section .angebote-item.is-open .angebote-icon::after {
  opacity: 0;
}

.angebote-section .angebote-content {
  overflow: hidden;
}

.angebote-section .angebote-inner {
  padding-bottom: 25px;
}

.angebote-section .angebote-desc {
  margin-bottom: 20px;
  max-width: 480px;
}

.angebote-section .angebote-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.angebote-section .angebote-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-black);
}

/* MOBILE */
@media (max-width: 991px) {
  .angebote-section .angebote-box {
    padding: 30px 20px;
  }

  .angebote-section .angebote-title {
    font-size: 22px;
  }

  .angebote-section .angebote-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .angebote-section .angebote-trigger {
    align-items: flex-start;
  }
}
