/* ESSENTIRA — Ver más / Ver menos */
.collapse{position:relative}
.collapse__body{position:relative;overflow:hidden;transition:max-height .32s cubic-bezier(.2,.7,.2,1)}
.collapse.is-collapsed .collapse__body::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:90px;pointer-events:none;
  background:linear-gradient(to bottom, rgba(255,255,255,0), var(--bg,#fff) 90%)
}
.collapse__toggle{
  margin-top:16px;padding:0;background:none;border:none;border-bottom:1px solid var(--ink,#141414);
  font-family:inherit;font-size:14px;font-weight:600;color:var(--ink,#141414);cursor:pointer;line-height:1.6
}
.collapse__toggle:hover{color:var(--rose,#C68C85);border-bottom-color:var(--rose,#C68C85)}
.collapse__toggle[hidden]{display:none}
