/* /assets/css/about-fix.css */

/* Intro Grid */
body.page-about .about-grid--intro{
  display:grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 14px;
  align-items: start;
}

/* RIGHT panel: slightly higher */
body.page-about .about-grid--intro .about-profile{
  margin-top: 28px;             /* <- fein: -12 / -16 / -20 */
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,255,0.12);
  background: rgba(11,16,24,0.40);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35), 0 0 24px rgba(0,255,255,0.08);
}

@media (max-width: 980px){
  body.page-about .about-grid--intro{
    grid-template-columns: 1fr;
  }
  body.page-about .about-grid--intro .about-profile{
    margin-top: 0;
  }
}

/* Avatar + caption overlay */
body.page-about .about-avatarBox{
  width: 100%;
  height: 280px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,255,0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55), 0 0 26px rgba(0,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55)),
    url("/assets/img/profile.webp") center 38% / cover no-repeat;
  margin: 0 0 12px 0;
  overflow: hidden;
  position: relative;
}

body.page-about .about-avatarCaption{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,255,255,0.16);
  background: rgba(11,16,24,0.72);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 18px rgba(0,255,255,0.12);
  color: rgba(230,241,255,0.92);
  font-size: 13px;
  letter-spacing: .04em;
}

/* IMG only for A11y */
body.page-about img.about-avatar{
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

/* Card */
body.page-about .about-card{
  border-radius: 18px;
  padding: 14px;
  background: rgba(11,16,24,0.60);
  border: 1px solid rgba(0,255,255,0.12);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}
body.page-about .about-card-title{
  color: #00ffff;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
body.page-about .about-card-sub{
  color: rgba(230,241,255,0.80);
  font-size: .95rem;
}
body.page-about .about-badges{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 10px;
}
body.page-about .about-badges .badge{
  border: 1px solid rgba(0,255,255,0.16);
  background: rgba(0,255,255,0.06);
  color: rgba(230,241,255,0.86);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .04em;
}
body.page-about .about-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}

/* Mini card */
body.page-about .about-miniCard{
  margin-top: 12px;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(11,16,24,0.60);
  border: 1px solid rgba(0,255,255,0.12);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}
body.page-about .about-miniRow{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
body.page-about .about-miniRow:first-child{ border-top: 0; }
body.page-about .about-miniRow .k{
  opacity: .7;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
}
body.page-about .about-miniRow .v{
  color: rgba(230,241,255,0.90);
  text-align: right;
}

/* LEFT filler (Kurzfokus) */
body.page-about .about-leftFill{
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(11,16,24,0.50);
  border: 1px solid rgba(0,255,255,0.12);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}
body.page-about .about-leftFillTitle{
  color: #00ffff;
  font-weight: 900;
  letter-spacing: .04em;
  margin: 0 0 10px 0;
}
body.page-about .about-leftFillList{
  margin: 0;
  padding-left: 18px;
  color: rgba(230,241,255,0.86);
  line-height: 1.55;
}
body.page-about .about-leftFillList li{ margin: 6px 0; }

/* BELOW spacing so nothing overlaps */
body.page-about .about-below{
  margin-top: 22px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,255,255,0.10);
}

/* Highlights */
body.page-about .about-highlights{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 980px){
  body.page-about .about-highlights{ grid-template-columns: 1fr; }
}
body.page-about .about-highlights .hl{
  padding: 14px;
  border-radius: 18px;
  background: rgba(11,16,24,0.60);
  border: 1px solid rgba(0,255,255,0.12);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}
body.page-about .about-highlights .hl-title{
  color: #00ffff;
  font-weight: 900;
  letter-spacing: .04em;
  margin: 0 0 6px 0;
}
body.page-about .about-highlights .hl-text{
  color: rgba(230,241,255,0.82);
  margin: 0;
}

/* Metrics */
body.page-about .about-metrics{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,255,.16);
  background: rgba(6,10,16,.62);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  overflow: hidden;
}
body.page-about .about-metrics .m-row{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
body.page-about .about-metrics .m-row:first-child{ border-top: 0; }
body.page-about .about-metrics .k{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(230,241,255,.62);
}
body.page-about .about-metrics .v{ color: rgba(230,241,255,.90); }
@media (max-width: 820px){
  body.page-about .about-metrics .m-row{ grid-template-columns: 1fr; gap: 6px; }
}