* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 680px;
  margin: 60px auto;
  padding: 0 24px;
}

h1 {
  font-family: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 0.15em;
}

h2 {
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 0.6em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #eee;
}

p {
  margin: 0.7em 0;
}

a {
  color: #0366d6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: disc;
  padding-left: 1.4em;
}

li {
  margin-bottom: 0.35em;
}

em {
  font-style: italic;
  color: #555;
}

.post-meta {
  font-size: 0.85em;
  color: #888;
  margin: 0.3em 0 2em 0;
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.5em;
  padding: 16px 24px;
  font-size: 0.9em;
}

.top-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.top-nav a:hover {
  text-decoration: underline;
}

.profile {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 1.5em;
}

.profile-text h1 {
  margin-bottom: 0.15em;
}

.profile-text p {
  margin: 0.3em 0 0.6em 0;
  color: #555;
  font-style: italic;
}

.avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin: 1em 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.social-icons a:hover {
  background: #555;
  text-decoration: none;
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
