.finr-country{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(1200px 280px at 30% -20%, rgba(92,134,254,.35) 0%, rgba(92,134,254,0) 55%),
    linear-gradient(180deg, rgba(40,54,94,.92) 0%, rgba(24,36,72,.96) 100%);
  box-shadow: 0 18px 40px rgba(40,54,94,.14);
  min-height: 220px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, filter .16s ease;
}

.finr-country.is-active{
  cursor: pointer;
}

.finr-country.is-active:hover{
  transform: translateY(-2px);
  border-color: rgba(92,134,254,.35);
  box-shadow: 0 22px 56px rgba(40,54,94,.18);
}

.finr-country.is-inactive{
  cursor: default;
  filter: saturate(.70);
  background: linear-gradient(180deg, rgba(40,54,94,.72) 0%, rgba(24,36,72,.78) 100%);
}

.finr-country__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
}

.finr-country__head-left{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.finr-country__flag{
  width: 40px;
  height: 28px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  flex: 0 0 auto;
}

.finr-country.is-inactive .finr-country__flag{
  filter: grayscale(1) contrast(.95) brightness(.95);
  opacity: .85;
}

.finr-country__name{
  font-weight: 800;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.finr-country__status{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
}

.finr-country__status .dot{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.finr-country__status.is-active{
  color: rgba(97,240,230,.95);
}

.finr-country__status.is-active .dot{
  color: rgba(97,240,230,.95);
}

.finr-country__status.is-inactive{
  color: rgba(255,255,255,.45);
}

.finr-country__status.is-inactive .dot{
  color: rgba(255,255,255,.35);
}

.finr-country__body{
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
  min-height: 0;
}

.finr-country__subtitle{
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  max-width: 36ch;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.finr-country.is-inactive .finr-country__subtitle{
  color: rgba(255,255,255,.55);
}

.finr-country__footer{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.finr-country__cta{
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  line-height: 1.35;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  max-width: 100%;
}

.finr-country.is-active .finr-country__cta{
  text-decoration: none;
}

.finr-country.is-active:hover .finr-country__cta{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.finr-country__cta.is-disabled{
  color: rgba(255,255,255,.45);
  text-decoration: none;
}

@media (max-width: 640px){
.finr-country{
    min-height: 200px;
    padding: 16px;
    border-radius: 16px;
  }

.finr-country__subtitle{
    max-width: none;
  }
}
