.acordeon-wrapper {
  min-width: 0;
}

.acordeon {
  background: var(--color-white);
  border: 1px solid var(--color-border-divider);
  border-radius: var(--radius-medium);
  padding: var(--spacing-md);
  cursor: pointer;
}

.acordeon__distintivo {
  background: var(--color-tertiary-1);
  color: var(--color-primary-2);
  border-radius: var(--radius-small);
  padding: var(--spacing-xxs) var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.acordeon__disparador {
  background: none;
  outline: none !important;
  cursor: pointer;
  font: inherit;
}

.acordeon__pregunta {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-text-heading);
  outline: none;
  box-shadow: none;
}

.acordeon__icono {
  font-size: 16px;
  color: var(--color-text-heading);
  margin-top: 6px;
  transition: transform 0.2s ease;
}

.acordeon--abierto .acordeon__icono {
  transform: rotate(180deg);
}

.acordeon__panel {
  cursor: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acordeon--abierto .acordeon__panel {
  max-height: 2000px;
}

.acordeon__contenido {
  color: var(--color-text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
}

.acordeon__contenido a {
  display: inline-block;
  color: var(--color-link-default);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.acordeon__contenido a:hover {
  color: var(--color-link-hover);
}

.acordeon__contenido a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-left: var(--spacing-xs);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.31754 7.31754L1.06754 13.5675C1.00947 13.6256 0.940528 13.6717 0.864658 13.7031C0.788787 13.7345 0.707469 13.7507 0.625347 13.7507C0.543226 13.7507 0.461908 13.7345 0.386037 13.7031C0.310167 13.6717 0.241229 13.6256 0.18316 13.5675C0.125091 13.5095 0.0790281 13.4405 0.0476015 13.3647C0.0161748 13.2888 0 13.2075 0 13.1253C0 13.0432 0.0161748 12.9619 0.0476015 12.886C0.0790281 12.8102 0.125091 12.7412 0.18316 12.6832L5.99175 6.87535L0.18316 1.06753C0.0658843 0.95026 -1.2357e-09 0.7912 0 0.625347C1.2357e-09 0.459495 0.0658843 0.300435 0.18316 0.18316C0.300435 0.0658846 0.459495 1.2357e-09 0.625347 0C0.7912 -1.2357e-09 0.95026 0.0658846 1.06754 0.18316L7.31754 6.43316C7.37565 6.49121 7.42175 6.56014 7.4532 6.63601C7.48465 6.71188 7.50084 6.79321 7.50084 6.87535C7.50084 6.95748 7.48465 7.03881 7.4532 7.11469C7.42175 7.19056 7.37565 7.25949 7.31754 7.31754Z' fill='%231356E1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.acordeon__fuente {
  color: var(--color-text-body-secondary);
  font-size: 14px;
}

@media (max-width: 768px) {
  .acordeon__pregunta {
    font-size: 18px;
  }
}
