.profile45-back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border:1px solid rgba(0,234,212,.35);
  border-radius:9px;
  background:rgba(0,234,212,.08);
  color:var(--accent);
  font-weight:900;
  text-decoration:none;
}

.profile45-tabs{
  display:flex;
  gap:8px;
  margin:14px 0;
  padding:9px;
  overflow:auto;
  border:1px solid var(--line);
  border-radius:11px;
  background:#06111a;
}

.profile45-tabs a{
  padding:9px 12px;
  border-radius:8px;
  color:var(--muted);
  text-decoration:none;
  white-space:nowrap;
}

.profile45-tabs a:hover{
  color:#fff;
  background:rgba(0,234,212,.08);
}

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

.profile45-grid>.card{
  margin-top:0;
}

.profile45-team{
  grid-column:1/-1;
}

.profile45-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:15px;
}

.profile45-header small{
  color:var(--accent);
  font-size:9px;
  font-weight:950;
  letter-spacing:.13em;
}

.profile45-header h2{
  margin:4px 0 0;
}

.profile45-header>a{
  padding:8px 11px;
  border:1px solid var(--line);
  border-radius:8px;
  color:#dce9ee;
  text-decoration:none;
}

.profile45-team-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#06151f;
}

.profile45-team-logo{
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  border-radius:15px;
  background:linear-gradient(135deg,#00a99a,#7251e8);
  overflow:hidden;
}

.profile45-team-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.profile45-team-logo span{
  font-size:24px;
  font-weight:950;
}

.profile45-team-card h3{
  margin:4px 0;
}

.profile45-team-card p{
  margin:0;
  color:var(--muted);
}

.profile45-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
  margin-top:10px;
}

.profile45-stat-grid>div{
  padding:12px;
  border:1px solid var(--line);
  border-radius:9px;
  background:#06151f;
  text-align:center;
}

.profile45-stat-grid strong,
.profile45-stat-grid span{
  display:block;
}

.profile45-stat-grid strong{
  font-size:18px;
}

.profile45-stat-grid span{
  margin-top:3px;
  color:var(--muted);
  font-size:10px;
}

.profile45-list{
  display:grid;
  gap:8px;
}

.profile45-list>a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:11px;
  border:1px solid var(--line);
  border-radius:9px;
  background:#06151f;
  text-decoration:none;
}

.profile45-list strong,
.profile45-list small{
  display:block;
}

.profile45-list small{
  margin-top:3px;
  color:var(--muted);
}

.profile45-status{
  display:inline-flex;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(109,92,255,.14);
  color:#a493ff;
  font-size:9px;
  font-weight:900;
  white-space:nowrap;
}

.profile45-status.status-accepted,
.profile45-status.status-open{
  background:rgba(72,225,155,.12);
  color:#73edb5;
}

.profile45-status.status-rejected,
.profile45-status.status-urgent{
  background:rgba(255,95,120,.12);
  color:#ff8297;
}

.profile45-status.status-draft,
.profile45-status.status-waiting_user,
.profile45-status.status-waiting_staff{
  background:rgba(255,190,80,.12);
  color:#ffd080;
}

.profile45-status.status-closed,
.profile45-status.status-archived{
  background:rgba(130,145,155,.14);
  color:#b5c0c5;
}

.profile45-empty{
  padding:18px;
  border:1px dashed var(--line);
  border-radius:9px;
  color:var(--muted);
  text-align:center;
}

@media(max-width:900px){
  .profile45-grid{
    grid-template-columns:1fr;
  }

  .profile45-team{
    grid-column:auto;
  }
}

@media(max-width:650px){
  .profile45-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .profile45-stat-grid{
    grid-template-columns:1fr;
  }

  .profile45-list>a{
    align-items:flex-start;
    flex-direction:column;
  }
}
