.post-list.grid {
  --padding-vertical: 6rem;
}
.post-list h2 {
  grid-column: var(--twelfth)/span var(--quarter);
  margin: 1rem 0 0;
  color: var(--custom-bg);
}
.post-list h3 {
  grid-column: var(--twelfth)/span calc(var(--columns) - var(--twelfth));
}
.post-list__filters {
  grid-column: var(--third)/span calc(var(--half) + var(--sixth));
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1em 0;
}
.post-list__filters:first-child {
  grid-column: 1/span var(--columns);
}
.post-list__filters sl-dropdown {
  --sl-input-border-radius-small: 0px;
  --sl-input-border-radius-medium: 0px;
  --sl-border-radius-medium: 0px;
  --sl-shadow-large: none;
  --sl-shadow-medium: none;
  --sl-shadow-small: none;
  --sl-shadow-x-large: none;
  --sl-shadow-x-small: none;
  --width: 25ch;
  flex: 1 0 var(--width);
  max-width: var(--width);
  margin: 0.5rem 0.5rem;
  position: relative;
}
.post-list__filters sl-dropdown:nth-child(1) {
  z-index: calc(10 - 1);
}
.post-list__filters sl-dropdown:nth-child(2) {
  z-index: calc(10 - 2);
}
.post-list__filters sl-dropdown:nth-child(3) {
  z-index: calc(10 - 3);
}
.post-list__filters sl-dropdown:nth-child(4) {
  z-index: calc(10 - 4);
}
.post-list__filters sl-dropdown:nth-child(5) {
  z-index: calc(10 - 5);
}
.post-list__filters sl-dropdown:nth-child(6) {
  z-index: calc(10 - 6);
}
.post-list__filters sl-dropdown:nth-child(7) {
  z-index: calc(10 - 7);
}
.post-list__filters sl-dropdown:nth-child(8) {
  z-index: calc(10 - 8);
}
.post-list__filters sl-dropdown:nth-child(9) {
  z-index: calc(10 - 9);
}
.post-list__filters sl-dropdown:nth-child(10) {
  z-index: calc(10 - 10);
}
.post-list__filters sl-dropdown::part(panel) {
  border: none;
}
.post-list__filters sl-dropdown sl-button.border {
  --sl-color-gray-80: var(--custom-bg);
  --sl-input-border-width: 2px;
  --sl-color-primary-80: var(--custom-bg);
  --sl-color-primary-70: var(--custom-bg);
  --sl-color-primary-50: var(--custom-bg);
  --sl-color-primary-30: var(--custom-bg);
}
.post-list__filters sl-button {
  width: 100%;
}
.post-list__filters sl-button::part(caret) {
  margin-left: auto;
  font-size: 2em;
}
.post-list__filters sl-menu {
  width: calc(var(--width) - 2em);
  background-color: var(--custom-bg);
}
.post-list__filters sl-menu::part(base) {
  width: 100%;
}
.post-list__filters sl-menu-item {
  width: 100%;
}
.post-list__filters sl-menu-item a {
  opacity: 0.5;
}
.post-list__filters sl-menu-item::part(base) {
  background-color: var(--custom-bg);
  white-space: normal;
  padding: 0.5rem var(--sl-spacing-x-large);
}
.post-list__filters sl-menu-item::part(label) {
  line-height: 1.4;
}
@media (hover: hover) {
  .post-list__filters sl-menu-item:hover a {
    opacity: 1;
  }
}
.post-list__filters a {
  color: var(--custom-color);
  text-decoration: none;
  font-size: 0.9em;
  transition: opacity var(--ease);
}
.post-list ul {
  grid-column: var(--twelfth)/span calc(var(--columns) - var(--twelfth));
  list-style: none;
  padding: 3rem 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.post-list__link {
  grid-column: 1/span var(--columns);
  text-align: center;
}
.post-list .post--tease {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.post-list .post--tease figure {
  margin: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.post-list .post--tease img {
  --duration: 1.5s;
  max-width: 100%;
  width: 100%;
  height: auto;
  transition: transform var(--ease);
  display: block;
  transform-origin: center;
}
.post-list .post--tease h3 {
  margin: 1em 0;
  color: var(--tease-color, var(--body-text-color--faded));
  padding-left: 1rem;
  transition: color var(--ease);
  line-height: 1.4;
}
.post-list .post--tease p {
  margin: 0 0 0 0.5em;
  border-top: 1px solid var(--body-text-color);
  color: var(--body-text-color);
  padding: 0.8rem 0 0 0;
}
.post-list .post--tease a {
  display: contents;
  text-decoration: none;
}
@media (hover: hover) {
  .post-list .post--tease:hover img {
    transform: scale(1.2);
  }
  .post-list .post--tease:hover h3 {
    color: var(--secondary-color);
  }
}
@media screen and (max-width: 1024px) {
  .post-list__filters, .post-list h2 {
    grid-column: var(--twelfth)/span calc(var(--columns) - var(--twelfth));
  }
  .post-list ul {
    grid-column: var(--twelfth)/span var(--columns);
  }
}
@media screen and (min-width: 769px) {
  .post-list__dots {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .post-list ul li {
    --width: 300px;
  }
  @supports (width: calc(clamp(300px, 27vw, 340px) - 1rem)) {
    .post-list ul li {
      --width: calc(clamp(300px, 27vw, 340px) - 1rem);
    }
  }
  .post-list__filters, .post-list h2 {
    grid-column: var(--twelfth)/span var(--columns);
  }
  .post-list__filters sl-menu {
    width: calc(var(--width));
  }
}
@media screen and (max-width: 540px) {
  .post-list__filters sl-dropdown {
    --width: 100%;
    margin: 0.5rem 0;
  }
}
@media screen and (max-width: 500px) {
  .post-list ul {
    grid-template-columns: 100%;
  }
}

.post--tease {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.post--tease figure {
  margin: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.post--tease img {
  --duration: 1.5s;
  max-width: 100%;
  width: 100%;
  height: auto;
  transition: transform var(--ease);
  display: block;
  transform-origin: center;
}
.post--tease h3 {
  margin: 1em 0;
  color: var(--tease-color, var(--body-text-color--faded));
  padding-left: 1rem;
  transition: color var(--ease);
  line-height: 1.4;
}
.post--tease p {
  margin: 0 0 0 0.5em;
  border-top: 1px solid var(--body-text-color);
  color: var(--body-text-color);
  padding: 0.8rem 0 0 0;
}
.post--tease a {
  display: contents;
  text-decoration: none;
}
@media (hover: hover) {
  .post--tease:hover img {
    transform: scale(1.2);
  }
  .post--tease:hover h3 {
    color: var(--secondary-color);
  }
}

.pagination {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.pagination a {
  text-decoration: none;
  color: inherit;
}
.pagination span {
  color: var(--body-text-color);
}
.pagination__pages {
  margin: 0 3rem;
  padding: 1em 0;
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.pagination__pages li {
  padding: 1em;
}

:root {
  --max-vw: 1280px;
  --max-width: 1139px;
  --max-padding: 140px;
  --sl-input-height-large: 80px !important;
}

.post--single > .wp-guten-core {
  --max-width: 75ch;
  max-width: calc(var(--max-width) * 0.833);
  margin: 3em auto;
}
.post--single > .wp-guten-core .wp-block-image {
  margin: 0;
}
.post--single > .wp-guten-core .wp-block-image img {
  width: 100%;
  height: auto;
}
.post--single > .wp-guten-core.coreparagraph {
  margin: 0 auto;
}
@media screen and (max-width: 780px) {
  .post--single > .wp-guten-core {
    padding: 0 2rem;
  }
}
.post--single > h2, .post--single > h3, .post--single > h4 {
  margin: 1em auto;
}
.post--single .small-header.grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
}
.post--single .small-header.grid p {
  border-top: 1px solid var(--primary-color);
}
.post--single .small-header.grid img {
  max-width: 340px;
}
@media screen and (max-width: 400px) {
  .post--single .small-header.grid img {
    max-width: 100%;
  }
}
.post--single .small-header.grid figure {
  margin: 0;
}