/* =====================================================================
   Über mich — angelehnt an frühes Facebook (2008).
   Hellgrauer Hintergrund, blaue Boxen-Header, Tahoma/Lucida-Anmutung.
   ===================================================================== */

:root {
  --fb-blue:        #3b5998;
  --fb-blue-dark:   #2e4778;
  --fb-bg:          #ebeef5;
  --fb-box-bg:      #ffffff;
  --fb-line:        #b6bdcd;
  --fb-line-soft:   #dfe3ee;
  --fb-link:        #3b5998;
  --fb-ink:         #1d2129;
  --fb-muted:       #6a7280;
}

.page-about {
  background: var(--fb-bg);
  color: var(--fb-ink);
}
.page-about main#main { padding: 0; }

.fb-shell {
  max-width: 1000px;
  font-family: 'Tahoma', 'Lucida Grande', 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* Profil-Kopf */
.fb-profile {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  background: var(--fb-box-bg);
  border: 1px solid var(--fb-line);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.fb-profile__photo img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border: 1px solid var(--fb-line);
  background: #fff;
  display: block;
}
.fb-profile__head { padding-top: .25rem; }
.fb-profile__name {
  font-family: 'Tahoma', 'Lucida Grande', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--fb-blue-dark);
  margin: 0 0 .25rem;
  line-height: 1.15;
}
.fb-profile__headline {
  font-size: 14px;
  color: var(--fb-muted);
  margin: 0 0 1rem;
  font-style: italic;
}
.fb-btn {
  display: inline-block;
  background: linear-gradient(180deg, #6d84b4 0%, #3b5998 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: .35rem .75rem;
  border: 1px solid var(--fb-blue-dark);
  border-radius: 3px;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
}
.fb-btn:hover { filter: brightness(1.05); color: #fff; }

/* 2-Spalten-Layout darunter */
.fb-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
}
@media (max-width: 760px) {
  .fb-grid { grid-template-columns: 1fr; }
  .fb-profile { grid-template-columns: 1fr; text-align: center; }
  .fb-profile__photo img { margin: 0 auto; }
}

/* Boxen */
.fb-box {
  background: var(--fb-box-bg);
  border: 1px solid var(--fb-line);
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.fb-box__title {
  margin: 0;
  padding: .5rem .75rem;
  background: linear-gradient(180deg, #6d84b4 0%, #3b5998 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--fb-blue-dark);
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  border-radius: 3px 3px 0 0;
}

/* Info-Tabelle */
.fb-info {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.fb-info th, .fb-info td {
  padding: .35rem .75rem;
  vertical-align: top;
  border-bottom: 1px solid var(--fb-line-soft);
}
.fb-info th {
  width: 38%;
  text-align: left;
  color: var(--fb-muted);
  font-weight: normal;
}
.fb-info tr:last-child th, .fb-info tr:last-child td { border-bottom: 0; }

/* Über-mich-Text */
.fb-about-text {
  padding: .65rem .85rem;
  font-size: 14px;
  line-height: 1.55;
}
.fb-about-text p { margin: 0 0 .5rem; }
.fb-about-text p:last-child { margin-bottom: 0; }

/* Pinnwand */
.fb-empty {
  padding: 1rem;
  color: var(--fb-muted);
  font-style: italic;
  margin: 0;
}
.fb-wall { list-style: none; margin: 0; padding: 0; }
.fb-wall__item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: .65rem;
  padding: .75rem .85rem;
  border-bottom: 1px solid var(--fb-line-soft);
}
.fb-wall__item:last-child { border-bottom: 0; }
.fb-wall__avatar img {
  width: 50px; height: 50px;
  object-fit: cover;
  border: 1px solid var(--fb-line);
}
.fb-wall__head {
  margin-bottom: .15rem;
  font-size: 12px;
}
.fb-wall__author { color: var(--fb-blue-dark); font-weight: 700; font-size: 13px; }
.fb-wall__date   { color: var(--fb-muted); margin-left: .5rem; }
.fb-wall__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

a { color: var(--fb-link); }
