/* =========================================
   STA TABS
========================================= */

.sta-tabs{
  width:100%;
}

.sta-tabs__nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}

.sta-tabs__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border:1px solid rgba(31,42,32,.10);
  border-radius:999px;
  background:#fff;
  color:#1F2A20;
  font-size:14px;
  font-weight:600;
  line-height:1;
  cursor:pointer;
  transition:background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.sta-tabs__btn:hover,
.sta-tabs__btn.is-active{
  background:#C3A890;
  border-color:#C3A890;
  color:#1F2A20;
  transform:translateY(-1px);
}

.sta-tabs__panels{
  position:relative;
}

.sta-tabs__panel{
  display:none;
  padding:24px 22px;
  border:1px solid rgba(31,42,32,.08);
  border-radius:26px;
  background:#fff;
  box-shadow:0 14px 30px rgba(0,0,0,.06);
}

.sta-tabs__panel.is-active{
  display:block;
}

.sta-tabs__panel > *:first-child{
  margin-top:0;
}

.sta-tabs__panel > *:last-child{
  margin-bottom:0;
}

.sta-tabs__btn:focus-visible{
  outline:2px solid #C3A890;
  outline-offset:3px;
}

@media (max-width: 767px){
  .sta-tabs__nav{
    gap:8px;
    margin-bottom:18px;
  }

  .sta-tabs__panel{
    padding:20px 18px;
    border-radius:20px;
  }
}