.cw-sh {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  padding: 56px 20px;
  min-height: 591px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.cw-sh__inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.cw-sh__profile {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cw-sh__avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
}

.cw-sh__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cw-sh__toprow {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cw-sh__handle {
  font-size: 18px;
  font-weight: 600;
  color: #292929;
  line-height: 1.2;
}

.cw-sh__follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0095f6;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  white-space: nowrap;
}

.cw-sh__follow:hover {
  background: #0081d6;
  color: #fff;
}

.cw-sh__stats {
  display: flex;
  gap: 20px;
  font-size: 15px;
  color: #292929;
  flex-wrap: wrap;
}

.cw-sh__stats strong {
  font-weight: 600;
}

.cw-sh__highlights {
  display: flex;
  gap: 63px;
  justify-content: center;
  flex-wrap: wrap;
}

.cw-sh__hl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.cw-sh__ring {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  box-sizing: border-box;
  overflow: hidden;
  display: block;
}

.cw-sh__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.cw-sh__label {
  font-size: 15px;
  font-weight: 500;
  color: #292929;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 749px) {
  .cw-sh {
    padding: 36px 16px;
    min-height: 0;
    border-radius: 0;
  }
  .cw-sh__inner {
    gap: 36px;
  }
  .cw-sh__profile {
    gap: 16px;
  }
  .cw-sh__highlights {
    gap: 20px;
  }
  .cw-sh__ring {
    width: 92px;
    height: 92px;
  }
  .cw-sh__label {
    font-size: 13px;
  }
}
