.cbts-lp{
  --cbts-lp-grad-1:#7c1f96;
  --cbts-lp-grad-2:#a834c4;
  font-family: 'Outfit', sans-serif;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
}
.cbts-lp,
.cbts-lp *{ box-sizing: border-box; }
.cbts-lp *{ font-family: 'Outfit', sans-serif; }

.cbts-lp__card{
  position: relative;
  display: block;
  min-height: 150px;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #1a1420;
  text-decoration: none;
  margin-bottom: 6px;
  transition: transform .3s ease;
}
.cbts-lp__card:last-child{ margin-bottom: 0; }
.cbts-lp__card:hover{ transform: translateX(-4px); }

.cbts-lp__overlay{
  position: absolute;
  inset: 0;
  background: rgba(20,16,24,.62);
  transition: background .35s ease, opacity .35s ease;
  z-index: 1;
}
.cbts-lp__card:hover .cbts-lp__overlay{
  background: linear-gradient(120deg, var(--cbts-lp-grad-1), var(--cbts-lp-grad-2));
  opacity: .92;
}
.cbts-lp__card.is-highlighted .cbts-lp__overlay{
  background: linear-gradient(120deg, var(--cbts-lp-grad-1), var(--cbts-lp-grad-2));
  opacity: .92;
}

.cbts-lp__card-inner{
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 30px;
}

.cbts-lp__title{
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  transition: color .3s ease;
}
.cbts-lp__card:hover .cbts-lp__title{
  color: #e3b023;
}
.cbts-lp__card.is-highlighted .cbts-lp__title{
  color: #e3b023;
}

.cbts-lp__arrow{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background .3s ease, transform .3s ease;
}
.cbts-lp__card:hover .cbts-lp__arrow,
.cbts-lp__card.is-highlighted .cbts-lp__arrow{
  background: rgba(0,0,0,.35);
  transform: rotate(45deg);
}
.cbts-lp__arrow svg{ width: 18px; height: 18px; }

.cbts-lp__empty{
  font-family: 'Outfit', sans-serif;
  color: #54525c;
  font-size: 15px;
}

@media (max-width: 767px){
  .cbts-lp{ max-width: 100%; }
  .cbts-lp__card-inner{ padding: 20px 20px; }
  .cbts-lp__title{ font-size: 18px; }
  .cbts-lp__arrow{ width: 34px; height: 34px; }
}
