/* ================================================
   SAIL THE SEAS – Neues Profil-Layout
   Passend zu global.css (member_profile.html)
   ================================================ */

.charsheet-name {
  text-align: center;
  margin: 20px 0 10px;
}

.charsheet-name strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.charsheet-name .charsheet-title {
  display: block;
  font-size: .85rem;
  color: var(--mist);
  margin-top: 4px;
}

/* ── LINKE SPALTE: USERSTATISTIKEN ── */
.charsheet-userstats {
  background: var(--surface);
  border: 1px solid var(--rim);
  padding: 16px 18px;
  margin-top: 14px;
}

.charsheet-userstats-title {
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rim);
}

.charsheet-userstats-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.charsheet-userstats-item:last-child {
  margin-bottom: 0;
}

.charsheet-userstats-item .charsheet-label {
  font-size: .65rem;
}

.charsheet-userstats-item .charsheet-value {
  font-size: .88rem;
}

/* ── VERBUNDENE CHARAKTERE (unten, volle Breite) ── */
.charsheet-linked {
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 16px;
}

.charsheet-linked-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--panel);
  border: 1px solid var(--rim);
  padding: 12px 18px;
  margin-bottom: 0;
}

.charsheet-linked-body {
  background: var(--surface);
  border: 1px solid var(--rim);
  border-top: none;
  padding: 16px 18px;
}

.charsheet-linked-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.charsheet-linked-body li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--rim);
  color: var(--salt);
}

.charsheet-linked-body li:last-child {
  border-bottom: none;
}

.charsheet-linked-body a {
  color: var(--gold);
}

.charsheet-linked-body a:hover {
  color: var(--salt);
}

/* Falls "as_profile" eine eigene Tabelle mitbringt, an den Rest angleichen */
.charsheet-linked-body table {
  width: 100%;
  border-collapse: collapse;
}

.charsheet-linked-body .thead {
  display: none;
}

.charsheet-linked-body td {
  color: var(--salt);
  padding: 6px 0;
  border-bottom: 1px dashed var(--rim);
}