@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
}

.container {
  display: block;
  margin: 0 auto;
  max-width: 1100px;
  padding: 1em;
  width: 100%;
}

body {
  color: #000;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: "Ubuntu", sans-serif;
}

h1 {
  font-size: 2em;
  font-weight: 800;
}

h2 {
  font-size: 1.75em;
  font-weight: 700;
}

h3 {
  font-size: 1.5em;
  font-weight: 700;
}

h4 {
  font-size: 1.25em;
  font-weight: 600;
}

p {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.25em;
}

ul {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.25em;
}

a {
  color: #0426d0;
  font-family: "Ubuntu", sans-serif;
  text-decoration: none;
}

blockquote {
  border-left: 5px solid #05a05a;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.5em;
  font-style: italic;
  font-weight: 600;
  margin: 0;
  padding-left: 1em;
  word-break: normal;
}

footer {
  background: #7f2a00;
  margin-top: 1em;
  width: 100%;
}
footer h4 {
  color: #fff;
  margin: 0.25em 0;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
footer .footer__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 2em 2em;
  width: 100%;
}
footer .footer__copyright {
  margin: 0.5em 0;
  padding: 1em 0;
}
footer .footer__copyright p {
  color: #fff;
  font-size: 1em;
  text-align: center;
}

.hero__wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: overlay;
  height: 18vh;
  width: 100%;
}
.hero__wrapper .hero__text {
  padding: 6vh 1em;
  margin: 0 auto;
}
.hero__wrapper h1, .hero__wrapper p {
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.hero__wrapper h1 {
  font-size: 2.25em;
}
.hero__wrapper a {
  color: #000;
}
.hero__wrapper a:hover {
  text-decoration: underline;
}

.content__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 800px) {
  .content__row {
    flex-direction: column;
  }
}
.content__row .content__text {
  flex: 5;
}
@media (max-width: 800px) {
  .content__row .content__text {
    margin-bottom: 1em;
  }
}

.pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pagination a {
  color: #000;
  font-size: 1.25em;
  font-weight: 700;
  text-decoration: none;
}
.pagination a:hover {
  text-decoration: underline;
}
@media (max-width: 800px) {
  .pagination a {
    margin: 0.5em 0;
    width: 100%;
  }
}

.post-snippet {
  background-color: #fff;
  border-bottom: 1px solid #000;
  margin: 2em 0;
}
.post-snippet a {
  color: #000;
}
.post-snippet .post-snippet__header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 0.5em;
}
.post-snippet .post-snippet__header h2 {
  flex: 3;
  margin: 0;
}
@media (max-width: 800px) {
  .post-snippet .post-snippet__header h2 {
    flex: 100%;
  }
}
.post-snippet .post-snippet__header h2 a {
  font-family: "Ubuntu", sans-serif;
}
.post-snippet .post-snippet__header h2 a:hover {
  text-decoration: underline;
}
.post-snippet .post-snippet__header .post-snippet__date {
  height: 100%;
}
.post-snippet .post-snippet__header .post-snippet__categories {
  height: 100%;
  margin-left: 1.5em;
}

.post .post__meta {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.post .post__meta .post__date,
.post .post__meta .post__categories {
  margin: 0.25em 1em 0.25em 0;
}
.post .post__meta .post__date a,
.post .post__meta .post__categories a {
  margin-right: 0.5em;
}
.post ul {
  font-size: 1.25em;
}

/*# sourceMappingURL=base.css.map */