.solopro-descripcion-expandible .solopro-contenido-plegable {
  max-height: var(--altura-maxima, 220px);
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
  column-count: 2;
  column-gap: 40px;
}

.solopro-descripcion-expandible .solopro-contenido-plegable.expandido {
  max-height: 9999px;
}

.solopro-btn-leer-mas {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  background-color: #073f61;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 768px) {
  .solopro-descripcion-expandible .solopro-contenido-plegable {
    column-count: 1;
  }
}
