
.rvfaqe{
  max-width: var(--rvfaqe-max, 900px);
  margin-left:auto;
  margin-right:auto;
}
.rvfaqe__title{
  margin: 0 0 18px 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}
.rvfaqe__items{display:block;}
.rvfaqe__item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(17,20,26, var(--rvfaqe-surface-alpha, .55));
  backdrop-filter: blur(14px);
  border-radius: var(--rvfaqe-radius, 18px);
  padding: 14px 16px;
  margin: 12px 0;
}
.rvfaqe__summary{
  cursor: pointer;
  list-style: none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  font-weight: 600;
}
.rvfaqe__summary::-webkit-details-marker{display:none;}
.rvfaqe__q{font-size: 16px;}
.rvfaqe__a{
  margin-top: 10px;
  opacity: .92;
  line-height: 1.6;
}
.rvfaqe__a p{margin: 0 0 10px 0;}
.rvfaqe__a p:last-child{margin-bottom:0;}

.rvfaqe__chev{
  width: 18px;
  height: 18px;
  display:inline-block;
  opacity:.8;
  transition: transform .18s ease;
  background:
    linear-gradient(transparent, transparent),
    linear-gradient(transparent, transparent);
  position: relative;
}
.rvfaqe__chev::before,
.rvfaqe__chev::after{
  content:"";
  position:absolute;
  top: 8px;
  width: 10px;
  height: 2px;
  background: currentColor;
  opacity: .9;
}
.rvfaqe__chev::before{left: 2px; transform: rotate(45deg);}
.rvfaqe__chev::after{right: 2px; transform: rotate(-45deg);}
.rvfaqe__item[open] .rvfaqe__chev{transform: rotate(180deg);}

.rvfaqe__item:focus-within{
  outline: 2px solid color-mix(in srgb, var(--rvfaqe-accent, #EF3646) 55%, transparent);
  outline-offset: 2px;
  border-color: color-mix(in srgb, var(--rvfaqe-accent, #EF3646) 55%, rgba(255,255,255,.10));
}
