body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 17px;
  background-color: #fff;
  color: #111;
  margin: 0;
  padding: 0;
  line-height: 1.75;
  overflow-x: hidden;
}

.layout {
  display: flex;
  max-width: 960px;
  margin: 4vh auto;
  padding: 2rem 1rem;
  gap: 2rem;
  align-items: flex-start;
  min-height: 92vh;
}

/* Sidebar (Left column) */
.sidebar {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding-top: 3.2rem;
}

.profile-pic {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}


.name {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.title {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}


/* Content (Right column) */
.content {
  flex: 3;
  max-width: 700px;
}

h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #000;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #0645ad;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  font-size: 0.85rem;
  color: #888;
  margin-top: 2rem;
}

/* Mobile layout */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
    align-items: center; /* Center the sidebar horizontally */
    padding: 1.5rem 1rem;
  }

  .sidebar {
    max-width: none;
    padding-top: 0;
    margin-bottom: 1.5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile-pic {
    margin-bottom: 0.75rem; /* No need for auto if using flex centering */
  }

  .name {
    text-align: center;
    margin-bottom: 0.2rem;
  }

  .title {
    text-align: center;
    margin-bottom: 0.6rem;
  }

  .content {
    max-width: 100%;
  }
}