/* ---------- General ---------- */

body {
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #222222;
}

/* ---------- Navbar ---------- */

.navbar-brand {
  font-weight: 500;
  color: #222222 !important;
}

.navbar-nav .nav-link {
  color: #444444 !important;
  text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #003262 !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Homepage ---------- */

.home-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 620px);
  gap: 55px;
  max-width: 900px;
  margin: 15px auto 60px auto;
  align-items: start;
}

.home-content {
  padding: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-content h1 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 2.1rem;
  font-weight: 600;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

  .home-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 25px auto;
    padding: 0 18px;
  }

  .home-sidebar {
    position: static;
  }

  .profile-image {
    width: 180px;
    margin: 0 auto;
  }

  .home-content {
    padding: 28px 24px;
  }
}