:root {
  --main-bg-color: #fff;
  --alt-text-color: #fff;
  --accent-text-color: #745840;
  --accent-bg-color: #413021;
  --light-bg-color: #f0ebe6;
  --text-color: black;
  --beige-background: #f5f1ea;
}

body {
  font-family: "Montserrat";
  box-sizing: border-box;
  background-color: var(--main-bg-color);
  color: var(--text-color);
  margin: 0;
}

a {
  color: var(--accent-text-color);
  text-decoration: none;
  font-weight: 700;
}
a:hover, a:focus {
  text-decoration: underline;
}

.header {
  margin: 0;
}
.header .homepage {
  display: flex;
  justify-content: center;
  background-color: var(--accent-bg-color);
  padding: 1rem;
}
.header .local {
  display: flex;
  justify-content: center;
  background-color: #d7d0a5;
}

.content {
  display: flex;
}
@media screen and (max-width: 500px) {
  .content {
    flex-direction: column;
  }
}

.main {
  flex: 80%;
  padding: 1rem;
  line-height: 2;
}

.nav {
  flex: 20%;
  padding: 0 0.5rem;
  min-height: 100vh;
  background-color: var(--light-bg-color);
}
.nav ul {
  padding-inline-start: 0;
}
.nav li {
  padding: 1rem;
  list-style-type: none;
}
.nav li img {
  display: block;
  object-fit: cover;
  width: 100%;
  max-height: 200px;
}
@media screen and (max-width: 500px) {
  .nav {
    min-height: 0;
  }
}

details > summary {
  color: var(--text-color);
}

details.parent[open] > summary {
  color: var(--alt-text-color);
  background-color: var(--accent-bg-color);
}
details.parent[open] > summary span.title, details.parent[open] > summary span.description {
  color: var(--alt-text-color);
}

details.parent > summary {
  padding: 1rem;
}

span.title {
  color: var(--accent-text-color);
  font-weight: bold;
  display: block;
  margin-top: -1.5rem;
  margin-left: 1.5rem;
}

span.description {
  display: block;
  margin-left: 1.5rem;
}

span.date-col, span.date-obj {
  display: inline-block;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--accent-text-color);
}

span.date-col {
  font-weight: bold;
  width: 25%;
}

span.date-obj {
  width: 70%;
  max-width: 75%;
}

details details, details .essay {
  margin: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  background-color: var(--beige-background);
  border-radius: 5px;
}
details details summary, details .essay summary {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
details details div, details .essay div {
  margin-left: 3.5rem;
  font-weight: 400;
}
details details div p, details .essay div p {
  margin-top: 0;
}

/*# sourceMappingURL=siege-custom.css.map */
