.finr-blogtabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
  padding: 6px 0 2px;
}

.finr-blogtabs__a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(41,97,250,.12);
  color: var(--finr-primary-2);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(40,54,94,.06);
}

.finr-blogtabs__a:hover{
  background: rgba(213,220,246,.55);
  border-color: rgba(41,97,250,.18);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.finr-blogtabs__a.is-active{
  color: var(--muted);
  border-color: rgba(40,54,94,.12);
  background: rgba(255,255,255,.70);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}

@media (max-width: 640px){
.finr-blogtabs{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 8px;
    margin-bottom: 12px;
  }

.finr-blogtabs__a{
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

.finr-blogtabs::-webkit-scrollbar{
    height: 0;
  }
}
