/* =========================================================
   Akkordeon Grundstruktur
========================================================= */

.sust-accordion {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.sust-accordion[open] {
  margin-bottom: 24px;
  overflow: visible;
}

.sust-accordion > summary {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  list-style: none;
  box-sizing: border-box;
}

.sust-accordion > summary::-webkit-details-marker,
.sust-accordion > summary::marker {
  display: none;
}

.sust-accordion > summary:focus {
  outline: none;
}

/* =========================================================
   Titelzeile
========================================================= */

.sust-accordion__title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  font-weight: 600;
  width: 100%;
}

.sust-accordion[open] .sust-accordion__title {
  background: #f5f7f9;
}

/* Punkt */
.sust-accordion__dot {
  width: 8px;
  height: 8px;
  background-color: #ff7733;
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
   Akkordeon Inhalt (Höhenstabil!)
========================================================= */

.sust-accordion__content {
  display: block;
  width: 100%;
  padding: 10px 0 30px;
  overflow: hidden;
  box-sizing: border-box;
}

/* =========================================================
   Botschafter Layout – Desktop
========================================================= */

.sust-botschafter {
  display: grid !important;
  grid-template-columns: 40% 60%;
  gap: 40px;
  width: 100%;
}

/* Media */
.sust-botschafter__media img,
.sust-botschafter__media iframe {
  width: 100%;
  display: block;
  border: 0;
}

.sust-botschafter__media iframe {
  aspect-ratio: 16 / 9;
}

/* =========================================================
   Typografie – FINAL
========================================================= */

/* Text / Zitat */
.sust-botschafter__text {
  font-size: 1rem;        /* = 16px */
  line-height: 1.6;
  margin: 12px 0 24px;
}

/* Name */
.sust-botschafter__name {
  font-size: 1rem;        /* = 16px */
  line-height: 1.4;
  margin: 0;              /* KEIN Abstand nach unten */
  font-weight: 600;
}

/* Titel – direkt unter Name */
.sust-botschafter__titel {
  font-size: 1rem;        /* = 16px */
  line-height: 1.4;
  margin: 0;              /* WICHTIG: kein Gap */
  opacity: 0.8;
}

/* =========================================================
   Mobile – kein Overlap, saubere Reihenfolge
========================================================= */

@media (max-width: 768px) {

  .sust-botschafter {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  .sust-botschafter__media {
    order: 1;
  }

  .sust-botschafter__name {
    order: 2;
    margin-top: 8px;
  }

  .sust-botschafter__titel {
    order: 3;
  }

  .sust-botschafter__text {
    order: 4;
  }

  .sust-botschafter__content {
    display: block;
    width: 100%;
    padding-bottom: 24px;
  }
}
