.finr-expertpage{
  margin: 18px 0 22px;
}

.finr-expertpage__card{
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.finr-expertpage__photo{
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(92,134,254,.10);
  border: 1px solid rgba(40,54,94,.10);
}

.finr-expertpage__photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 999px;
}

.finr-expertpage__ph{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(92,134,254,.10);
}

.finr-expertpage__meta{
  min-width: 0;
  padding-top: 2px;
}

.finr-expertpage__h1{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.finr-expertpage__role{
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--txt, #28365e);
}

.finr-expertpage__bio{
  margin-top: 10px;
  color: var(--muted, #6d7a8c);
  font-size: 15px;
  line-height: 1.65;
}

.finr-expertpage__bio p{
  margin: 0 0 10px;
}

.finr-expertpage__bio p:last-child{
  margin-bottom: 0;
}

@media (max-width: 820px){
.finr-expertpage__card{
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
  }

.finr-expertpage__photo{
    width: 72px;
    height: 72px;
  }

.finr-expertpage__h1{
    font-size: 28px;
  }

.finr-expertpage__role{
    font-size: 15px;
  }

.finr-expertpage__bio{
    font-size: 15px;
  }
}

@media (max-width: 520px){
.finr-expertpage__card{
    flex-direction: column;
    align-items: flex-start;
  }
}

.finr-experts__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 860px){
.finr-experts__grid{
    grid-template-columns: 1fr;
  }
}

.finr-expertcard{
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(40,54,94,.12);
  box-shadow: 0 14px 30px rgba(40,54,94,.08);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

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

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

.finr-expertcard__photo{
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(92,134,254,.10);
  border: 1px solid rgba(40,54,94,.10);
}

.finr-expertcard__photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 999px;
}

.finr-expertcard__body{
  min-width: 0;
}

.finr-expertcard__name{
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--txt, #28365e);
}

.finr-expertcard__role{
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted, #6d7a8c);
}

@media (max-width: 820px){
.finr-expertcard{
    padding: 14px;
    gap: 14px;
    border-radius: 16px;
  }

.finr-expertcard__photo{
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

.finr-expertcard__name{
    font-size: 18px;
  }

.finr-expertcard__role{
    margin-top: 6px;
    font-size: 14px;
  }
}
