.premium-athlete-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:24px;
}

.athlete-premium-card{
  position:relative;
  overflow:hidden;
  min-height:100%;
  border-radius:34px;
  background:linear-gradient(145deg,var(--card-accent,#1b5da0), #0f2746 64%, #081321);
  color:#fff;
  box-shadow:0 26px 70px rgba(15,39,70,.24);
  transform-style:preserve-3d;
  transition:transform .24s ease, box-shadow .24s ease;
}

.athlete-premium-card:hover{
  transform:translateY(-6px) rotateX(4deg) rotateY(-4deg);
  box-shadow:0 34px 90px rgba(8,19,33,.32);
}

.athlete-premium-card__hero{
  position:relative;
  min-height:260px;
  padding:24px;
  background:
    linear-gradient(180deg, rgba(8,19,33,.1), rgba(8,19,33,.4)),
    var(--card-cover),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.02));
  background-size:cover;
  background-position:center;
}

.athlete-premium-card__hero:before{
  content:"";
  position:absolute;
  inset:auto -20px -80px;
  height:180px;
  background:radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
}

.athlete-premium-card__row{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.athlete-premium-card__number,
.athlete-premium-card__rating{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:68px;
  min-height:68px;
  border-radius:22px;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  font-size:28px;
  font-weight:900;
}

.athlete-premium-card__photo{
  position:absolute;
  right:20px;
  bottom:-18px;
  width:148px;
  height:184px;
  border-radius:26px;
  object-fit:cover;
  border:3px solid rgba(255,255,255,.18);
  box-shadow:0 16px 32px rgba(0,0,0,.24);
}

.athlete-premium-card__body{
  padding:24px;
}

.athlete-premium-card__eyebrow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.athlete-premium-card__eyebrow span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  font-size:12px;
  font-weight:800;
}

.athlete-premium-card h3{
  margin:0 0 8px;
  font-size:30px;
  line-height:1;
}

.athlete-premium-card p{
  margin:0 0 16px;
  color:rgba(255,255,255,.78);
  line-height:1.6;
}

.athlete-power-grid{
  display:grid;
  gap:10px;
}

.athlete-power{
  display:grid;
  grid-template-columns:104px 1fr 40px;
  gap:10px;
  align-items:center;
  font-size:12px;
  color:rgba(255,255,255,.78);
}

.athlete-power__bar{
  height:10px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.12);
}

.athlete-power__bar span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(145deg,#49b8e8,#f6c755);
}

.athlete-premium-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.athlete-premium-card__mini-chart{
  margin-top:18px;
}

.athlete-premium-card__mini-chart svg{
  display:block;
  width:100%;
  height:auto;
  border-radius:22px;
  background:rgba(255,255,255,.08);
}

html.theme-dark .athlete-premium-card{
  box-shadow:0 32px 90px rgba(0,0,0,.36);
}
