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

.rwfaq__qtext{
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.rwfaq__col{
  display:flex;
  flex-direction:column;
}

.rwfaq__item{
  position:relative;
  padding:20px 0;
  border:0 !important;
}

.rwfaq__col > .rwfaq__item:first-child::before{
  display:none;
}

.rwfaq__col > .rwfaq__item + .rwfaq__item::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:#eaeaea;
}

.rwfaq__q{
  width:100%;
  text-align:left;
  cursor:pointer;
  user-select:none;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  padding:9px 0 !important;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  transition-duration:200ms;
  transition-property:color;
}

.rwfaq__qtext{
  font-size:16px;
  line-height:1.25;
  font-weight:600;
  text-transform:none;
  letter-spacing:0;
  color:#2c2c2c;
}

.rwfaq__q:hover .rwfaq__qtext{
  color:#2074a4;
}

.rwfaq__icon{
  width:18px;
  height:18px;
  flex:0 0 18px;
  position:relative;
}

.rwfaq__icon::before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:8px;
  height:8px;
  border-right:2px solid #2c2c2c;
  border-bottom:2px solid #2c2c2c;
  transform:rotate(45deg);
  transition:transform 180ms ease,border-color 200ms ease;
}

.rwfaq__q:hover .rwfaq__icon::before{
  border-right-color:#2074a4;
  border-bottom-color:#2074a4;
}

.rwfaq__q[aria-expanded="true"] .rwfaq__icon::before{
  transform:rotate(-135deg);
}

.rwfaq__a{
  max-height:0;
  overflow:hidden;
  transition:max-height 260ms ease;
}

.rwfaq__ainner{
  padding-top:12px;
  padding-bottom:12px;
  font-size:16px;
  line-height:1.5;
  color:#565656;
}

@media (max-width:860px){
  .rwfaq{
    grid-template-columns:1fr;
    gap:0;
  }
}