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

/* -------- Base -------- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

/* -------- Layout -------- */
.container {
  max-width: 1100px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  padding: 0 24px;
}

/* -------- Sidebar -------- */
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* ← vertical centering */
  min-height: 50vh;       /* ← fills viewport height */
  text-align: center;
}

.profile-image {
  width: 220px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 24px;
}

.divider-line {
  width: 120px;
  height: 1px;
  border: none;
  background-color: #028137; /* green */
  margin: 16px auto 24px auto;
}

.name {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

/* -------- Buttons -------- */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  padding: 6px 12px;
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.button:hover {
  background: #000;
  color: #fff;
}

/* -------- Content -------- */
.content {
  border-left: 2px solid rgba(11, 99, 37, 0.466);
  padding-left: 48px; /* space between line and text */
}

.content section {
  margin-bottom: 48px;
}

h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
}

p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin-bottom: 16px;
}

.entry {
  margin-bottom: 7px;
}

/* -------- Links -------- */
a {
  color: green;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .sidebar {
    align-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
