.hero-internal {
  position: relative;
}
.hero-internal picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-internal picture img {
  width: 100%;
  height: 100%;
  -o-object-position: center top;
     object-position: center top;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-internal picture::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.hero-internal .inner {
  position: relative;
  padding: 100px 10px 30px;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 30px;
}
.hero-internal .inner .title {
  color: #ffffff;
  margin: 0;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  font-size: 2.2em;
}
.hero-internal .inner a {
  display: block;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--color-tertiary);
  font-weight: 500;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
}
@media (min-width: 800px) {
  .hero-internal .inner {
    padding: 150px 30px 80px;
  }
  .hero-internal .inner .title {
    font-size: 4em;
  }
  .hero-internal .inner a {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

.page-container {
  max-width: 860px;
  margin-inline: auto;
  padding: 30px 10px;
}
.page-container .page-sidebar {
  display: none;
}
.page-container.with-sidebar {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
.page-container.with-sidebar .page-sidebar {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
@media (min-width: 800px) {
  .page-container {
    padding: 50px 30px;
  }
  .page-container.with-sidebar {
    max-width: 1100px;
    flex-flow: row;
    gap: 80px;
    align-items: flex-start;
  }
  .page-container.with-sidebar .page-content {
    flex: 1;
  }
  .page-container.with-sidebar .page-sidebar {
    flex: 0 0 30%;
  }
}

.posts {
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.post:not(:last-child) {
  border-bottom: solid 1px #e1e1e1;
  padding-bottom: 30px;
}
.post .post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.post .post-title {
  font-size: 1.4em;
  color: var(--color-primary);
}
@media (min-width: 800px) {
  .post .post-title {
    font-size: 2em;
  }
}

.widget {
  padding: 0 10px;
  background-color: var(--color-background);
}
.widget .widget-title {
  font-weight: 500;
  font-size: 1.4em;
  color: var(--color-primary);
}
.widget p,
.widget li {
  font-size: 1em;
}
.widget ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--color-secondary);
}
.widget ul li {
  line-height: 1.2;
}
.widget ul li a {
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 400;
}
.widget.widget_tag_cloud {
  font-size: 1.2em;
}
.widget.widget_tag_cloud a {
  color: var(--color-secondary);
}
@media (min-width: 800px) {
  .widget {
    padding: 10px 30px;
  }
  .widget .widget-title {
    font-size: 1.4em;
  }
}/*# sourceMappingURL=page-default.css.map */