.profile-page{
  min-height:calc(100vh - 90px);
  padding:36px 18px 72px;
  background:var(--site-bg);
}

.profile-card{
  width:min(950px,100%);
  margin:0 auto;
  border:1px solid var(--site-line);
  border-radius:32px;
  padding:38px;
  display:grid;
  grid-template-columns:150px minmax(0, 1fr);
  gap:34px;
  background:var(--site-hero-bg);
  box-shadow:var(--site-shadow);
  backdrop-filter:blur(18px);
}

.profile-avatar{
  width:150px;
  height:150px;
  border-radius:34px;
  background:linear-gradient(145deg, var(--site-text-strong) 0%, var(--site-red) 100%);
  color:#ffffff;
  display:grid;
  place-items:center;
  font-size:54px;
  font-weight:900;
  overflow:hidden;
}

.profile-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.profile-info{
  min-width:0;
}

.profile-info h1{
  margin:0;
  color:var(--site-text-strong);
  font-size:46px;
  letter-spacing:-.06em;
  word-break:break-word;
}

.verified-badge{
  display:inline-flex;
  vertical-align:middle;
  margin-left:10px;
  background:var(--site-red);
  color:#ffffff;
  font-size:13px;
  padding:7px 10px;
  border-radius:999px;
}

.profile-category{
  color:var(--site-muted);
  margin:8px 0 22px;
  font-size:18px;
}

.profile-bio{
  color:var(--site-text);
  font-size:17px;
  line-height:1.65;
  max-width:720px;
}

.profile-tags{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin:24px 0;
}

.profile-tags span{
  background:var(--site-surface-muted);
  color:var(--site-text-strong);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
}

.profile-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.profile-links a{
  background:var(--site-text-strong);
  color:var(--site-surface);
  border-radius:999px;
  padding:11px 16px;
  font-size:14px;
  text-decoration:none;
}

.profile-links a:hover{
  background:var(--site-red);
}

@media(max-width:760px){
  .profile-page{
    padding:24px 12px 48px;
  }

  .profile-card{
    grid-template-columns:1fr;
    padding:26px;
    border-radius:24px;
  }

  .profile-avatar{
    width:110px;
    height:110px;
    border-radius:26px;
    font-size:42px;
  }

  .profile-info h1{
    font-size:36px;
  }
}

@media(max-width:540px){
  .profile-card{
    padding:20px;
  }

  .profile-info h1{
    font-size:30px;
  }

  .verified-badge{
    display:inline-flex;
    margin:10px 0 0;
  }

  .profile-category,
  .profile-bio{
    font-size:16px;
  }

  .profile-links a{
    width:100%;
    justify-content:center;
  }
}
