/** Theme name: Frangipane */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&family=Source+Serif+Pro:wght@300;400;600&display=swap");
@media screen and (min-width: 1px) {
  .container, .topbar {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .container, .topbar {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1440px) {
  .container, .topbar {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1980px) {
  .container, .topbar {
    max-width: 1440px;
  }
}

html {
  font-size: 18px;
}

* {
  font-family: "Quicksand", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Serif Pro", serif;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: 300;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

body {
  margin: 0;
}

.page {
  width: 100%;
  overflow: auto;
}

* {
  box-sizing: border-box;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card__title {
  text-align: center;
}
.card__img {
  max-width: 100%;
}

@media screen and (min-width: 1px) {
  .topbar {
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .topbar .menu {
    display: flex;
    padding: 0;
  }
  .topbar .menu .menu-item {
    display: block;
  }
  .topbar .menu .menu-item + .menu-item {
    margin-left: 1rem;
  }
  .topbar .menu .menu-item a {
    color: inherit;
    text-decoration: none;
  }
  .topbar .menu--bold a {
    font-weight: bold;
  }
}
@media screen and (min-width: 1024px) {
  .topbar {
    flex-direction: row;
  }
  .topbar .menu .menu-item + .menu-item {
    margin-left: 2rem;
  }
}

.header {
  margin-bottom: 3rem;
}
.header__thmb {
  width: 100%;
}

.sidebar h3 {
  font-size: 22px;
  font-weight: 400;
}
.sidebar h3:first-child {
  margin-top: 0;
}
.sidebar ul {
  margin-top: 0;
  padding-left: 0.7rem;
  line-height: 1.5;
}
.sidebar ul li {
  padding-left: 3px;
}
.sidebar ul li::marker {
  font-family: "Material Symbols Outlined";
  font-size: 14px;
}
.sidebar ul li a {
  color: inherit;
  text-decoration: none;
}
.sidebar ul li a:hover {
  text-decoration: underline;
}
.sidebar__locations li::marker {
  content: "location_on";
}
.sidebar__categories li::marker {
  content: "label";
}

.icon {
  font-size: inherit;
  vertical-align: baseline;
  display: inline-block;
  transform: translateY(10%);
}
.icon--location_on {
  margin-left: -0.2em;
  font-size: 88%;
}
.icon--label {
  transform: translateY(20%);
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 80%;
}
.footer .widget {
  display: block;
}

.home .locations {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 1px) {
  .home .locations {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .home .locations {
    grid-template-columns: 1fr 1fr;
  }
}
.home__hero img {
  width: 100%;
}

@media screen and (min-width: 1px) {
  .post-archive__title > :not(.icon) {
    font-family: inherit;
  }
  .post-archive__item:first-child .post-archive__item-title {
    margin-top: 0;
  }
  .post-archive__item a {
    color: inherit;
    text-decoration: none;
  }
  .post-archive__item a:hover {
    text-decoration: underline;
  }
  .post-archive__item + * {
    margin-top: 2rem;
  }
  .post-archive__item-title {
    margin-bottom: 0.25em;
    font-weight: 400;
  }
  .post-archive__item-content > p:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .post-archive {
    display: grid;
    grid-template-areas: "t t t t t" "c c c c s";
    column-gap: 3rem;
  }
  .post-archive__title {
    grid-area: t;
    margin-top: 0;
  }
  .post-archive__items {
    grid-area: c;
  }
  .post-archive__sidebar {
    grid-area: s;
  }
}
.post-content__title {
  margin-bottom: 1rem;
}
.post-content__subtitle {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5em;
}
.post-content__subtitle a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid;
  padding-bottom: 2px;
  white-space: nowrap;
}
.post-content__location {
  margin-right: 1em;
}
.post-content__location .material-symbols-outlined {
  vertical-align: bottom;
  margin-left: -3px;
}
.post-content__category {
  margin-right: 1em;
}
.post-content__category .material-symbols-outlined {
  vertical-align: bottom;
}