.section {
  box-sizing: border-box;
  width: 650px;
}

.section-title {
  margin-top: 0.7rem;
  margin-bottom: 1rem;

  font-family: helvetica; /* TODO: Fallbacks. */
  font-size: 2rem;
  font-weight: 600;
}

.section ~ .section {
  margin-top: 1.5rem;
}

.about {
  font-family: "Source Serif Pro";
  line-height: 1.7;
  font-size: 1rem;
}

.about strong {
  font-family: helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.015em;

  /* font-weight: 400;
  background-color: #eb996e32;
  border-top: 1px solid #eb996e;
  border-bottom: 1px solid #eb996e;
  padding: 0 0.2rem; */
}

p, .section li {
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
}

.about p ~ p {
  margin-top: 1rem;
}

.section a {
  color: var(--fg-color);
  text-decoration: none;

  /* Underline-like but with wider gap. */
  border-bottom: 1px solid var(--fg-color);
}

.section a:hover {
  box-sizing: border-box;

  color: var(--fg-color);
  text-decoration: none;
  border-bottom: 0;
}

.section a:active {
  color: var(--fg-color);
  text-decoration: none;
}

.section ul {
  list-style-type: none;
}

.section ul.projects > li ~ li {
  margin-top: 1rem;
}

.section li a.title {
  font-family: helvetica;
  font-size: 1.2rem;
  font-weight: 600;

  color: var(--fg-color);
  text-decoration: none;
  border-bottom: none;
}

.section li a.title:hover {
  box-sizing: border-box;

  /* Underline-like but with wider gap. */
  border-bottom: 1px solid var(--fg-color);

  color: var(--fg-color);
  text-decoration: none;
}

.section li a.title:active {
  color: var(--fg-color);
  text-decoration: none;
}

.section li span {
  font-family: "Source Serif Pro";
  line-height: 1.7;
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  .section {
    width: initial;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
