/* ================================
   TALENT PROFILE (tp- namespace)
================================ */
:root {
  --tp-bg: #0e0e0f;
  --tp-bg-2: #1a1a1a;
  --tp-text: #fff;
  --tp-text-dim: rgba(255,255,255,.7);
  --tp-accent: #D90404;
  --tp-accent-2: #D90404;
  --tp-radius: 14px;
  --tp-shadow: 0 8px 25px rgba(0,0,0,.4);
}

.tp-body {
  background: var(--tp-bg);
  color: var(--tp-text);
  font-family: 'Inter', sans-serif;
}

/* ---------- COVER ---------- */
.tp-cover {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  margin-top: 0; /* header'a yapışık */
}

.tp-cover__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.9));
}

.tp-cover__center {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ---------- AVATAR ---------- */
.tp-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: var(--tp-shadow);
  margin-bottom: 18px;
}

/* ---------- NAME & USERNAME ---------- */
.tp-name {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.tp-username {
  margin-top: 6px;
  font-size: 1rem;
  color: var(--tp-text-dim);
}

/* ---------- SECTION ---------- */
.tp-section {
  padding: 40px 0 60px;
}

.tp-card {
  background: var(--tp-bg-2);
  padding: 24px;
  border-radius: var(--tp-radius);
  box-shadow: var(--tp-shadow);
  border: 1px solid rgba(255,255,255,.08);
}

.tp-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tp-accent-2);
  margin-bottom: 16px;
}

/* ---------- META LIST ---------- */
.tp-meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-meta__item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.tp-meta__item:last-child { border-bottom: none; }

.tp-meta__key {
  font-weight: 600;
  color: var(--tp-text-dim);
}

.tp-meta__val {
  color: var(--tp-text);
  text-align: right;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .tp-avatar { width: 120px; height: 120px; }
  .tp-name { font-size: 1.4rem; }
}


.tp-meta__val .fi {
  margin-right: 6px;
  vertical-align: middle;
}
