/* ===============================
   Basis
   =============================== */

:root {
  --text-main: #1f2933;
  --text-muted: #4b5563;
  --accent: #1e3a8a;
  --bg-light: #f9fafb;
  --border-soft: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
  background: #ffffff;
}

/* ===============================
   Container
   =============================== */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

/* ===============================
   Profil-Sektionen
   =============================== */

.profile-section {
  margin-bottom: 4.5rem;
}

.profile-section:last-child {
  margin-bottom: 0;
}

/* ===============================
   Überschriften
   =============================== */

.profile-section h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  position: relative;
}

.profile-section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.5rem;
}

/* ===============================
   Text
   =============================== */

.profile-section p {
  margin-bottom: 1.2rem;
  color: var(--text-main);
  max-width: 70ch;
}

.profile-section p:last-child {
  margin-bottom: 0;
}

/* ===============================
   Links
   =============================== */

.profile-section a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.profile-section a:hover {
  border-bottom-color: var(--accent);
}

/* ===============================
   Dezente Hervorhebung (optional)
   =============================== */

.profile-highlight {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.4rem;
  margin: 2rem 0;
  color: var(--text-muted);
}

/* ===============================
   Responsive
   =============================== */

@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

  .profile-section h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 2rem 1rem;
  }

}

