.finr-maincat{
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100px;
  padding: 0 12px;
  gap: 0;
  text-decoration: none;
  color: var(--txt);
  background: #fff;
  border: 1px solid rgba(40,54,94,.12);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(40,54,94,.08);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  aspect-ratio: auto;
}

.finr-maincat:hover{
  transform: translateY(-1px);
  border-color: rgba(92,134,254,.35);
  box-shadow: 0 18px 44px rgba(40,54,94,.12);
}

.finr-maincat:focus-visible{
  outline: 2px solid rgba(92,134,254,.55);
  outline-offset: 3px;
}

.finr-maincat__name{
  margin: 0;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.finr-maincat__desc{
  display: none !important;
}

@media (max-width: 640px){
.finr-maincat{
    height: 80px;
    border-radius: 12px;
    padding: 0 10px;
  }

.finr-maincat__name{
    font-size: 14px;
  }
}

.finr-maincat{
  display:flex;
  align-items:stretch;
  gap:16px;
}

.finr-maincat__icon{
  flex:0 0 72px;
  width:72px;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
}

.finr-maincat__icon svg{
  width:100%;
  height:100%;
  display:block;
}

.finr-maincat__body{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
