/* GLOBAL ------------------------------------------------------------ */

body {
  margin: 0;
  font-family: "Figtree", sans-serif, sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.55;
}


.layout {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR ----------------------------------------------------------- */

.sidebar {
  width: 240px;
  background: #ffffff;
  border-right: 1px solid #e2e2e2;
  padding: 32px 24px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
}

.sidebar h3 {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  color: #777;
  text-transform: uppercase;
}

.sidebar a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: #222;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sidebar a:hover {
  opacity: 0.6;
}

/* MAIN CONTENT ------------------------------------------------------ */

.content {
  flex: 1;
  padding: 50px 60px;
  max-width: 900px;
}

.content h1 {
  font-size: 36px;
  margin: 0 0 10px;
  font-weight: 700;
}

.content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444;
}

.content p,
.content li {
  font-size: 15px;
}

.content ul {
  padding-left: 20px;
}

img {
  border-radius: 4px;
  border: 1px solid #e2e2e2;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
