.yellow-acc__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 20px;
}

.yellow-acc__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.yellow-acc::part(base) {
  border: none;
  background: #FFFCF2;
  border-radius: 16px;
}

.yellow-acc::part(header) {
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 16px;
  background: #FDB00B;
  color: #181818 !important;
  font-family: Mulish;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.96px;
}

.yellow-acc::part(content) {
  padding: 16px;
  align-items: center;
  color: #181818 !important;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  border-radius: 0 0 16px 16px;
  background: #FFFCF2;
  margin-top; -16px !important
}

sl-details.yellow-acc::part(summary-icon) {
  transform: rotate(-90deg); /* de derecha → arriba */
  transition: transform .2s ease;
}

/* Apunta ABAJO cuando está abierto */
sl-details.yellow-acc[open]::part(summary-icon) {
  transform: rotate(0deg); /* arriba → abajo */
}

/* En móvil se mantiene una sola columna */
@media (max-width: 767px) {
  .yellow-acc__wrapper {
    grid-template-columns: 1fr;
  }
}