*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1c1a18;
  background: #f8f5f2;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

a {
  color: #b55a3a;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem;
}

.entry__content,
.prose {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  border-bottom: 1px solid #d4ccc6;
  padding: 1.25rem 0;
}

.site-header__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-header__brand {
  flex-shrink: 0;
}

.site-title {
  font-size: 1.125rem;
  font-weight: 400;
  color: #1c1a18;
}
.site-title:hover {
  color: #b55a3a;
  text-decoration: none;
}

.site-description {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #5c5650;
}

.nav-primary {
  flex: 1;
  margin: 0;
}

.nav-primary__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.nav-primary__list > li {
  position: relative;
}

.nav-primary a {
  color: #5c5650;
  font-size: 0.9375rem;
}
.nav-primary a:hover, .current-menu-item > .nav-primary a {
  color: #b55a3a;
}

.nav-primary__list > li.pll-parent-menu-item a,
.nav-primary__list > li.lang-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.nav-primary__list > li.pll-parent-menu-item a img,
.nav-primary__list > li.lang-item a img {
  vertical-align: middle;
  display: block;
}

.nav-primary .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: #f8f5f2;
  border: 1px solid #d4ccc6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}

.nav-primary .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-primary .sub-menu a {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
}
.nav-primary .sub-menu a:hover {
  background: #efe9e4;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #1c1a18;
  line-height: 1;
}

.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }
  .nav-primary {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f5f2;
    z-index: 999;
    padding: 4rem 1.5rem 1.5rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }
  .nav-open .nav-primary {
    opacity: 1;
    visibility: visible;
  }
  .nav-primary__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-primary__list > li {
    border-bottom: 1px solid #d4ccc6;
  }
  .nav-primary__list > li > a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }
  .nav-primary .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 1rem;
    margin: 0 0 0.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-primary .menu-item-has-children.is-open .sub-menu {
    max-height: 30rem;
  }
  .nav-primary .menu-item-has-children > a {
    position: relative;
    padding-right: 2rem;
  }
  .nav-primary .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transform: translateY(-50%);
    transition: transform 0.2s;
  }
  .nav-primary .menu-item-has-children.is-open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .nav-primary .sub-menu a {
    padding: 0.6rem 0;
  }
  body.nav-open {
    overflow: hidden;
  }
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  margin-top: auto;
  padding: 1.25rem 0;
  border-top: 1px solid #d4ccc6;
  font-size: 0.875rem;
  color: #5c5650;
}

.site-footer__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-footer__copy {
  margin: 0;
}

.page-header {
  margin-bottom: 1.25rem;
}

.page-header__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
}

.posts {
  padding: 1.25rem 0;
}

.post-card {
  padding: 1.25rem 0;
  border-bottom: 1px solid #d4ccc6;
}
.post-card:first-child {
  padding-top: 0;
}

.post-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
}
.post-card__title a:hover {
  text-decoration: none;
}

.post-card__meta {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #5c5650;
}

.post-card__excerpt {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
}

.entry {
  padding: 1.25rem 0;
}

.entry__header {
  margin-bottom: 1.25rem;
}

.entry__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}

.entry__meta {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #5c5650;
}

.entry__content {
  margin-bottom: 1.25rem;
}
.entry__content p {
  margin: 0 0 1rem;
}
.entry__content h1, .entry__content h2, .entry__content h3, .entry__content h4 {
  margin: 1.25rem 0 0.5rem;
  font-weight: 300;
  line-height: 1.3;
}
.entry__content h1 {
  text-align: center;
}
.entry__content ul, .entry__content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.entry__content--front {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.entry__content--front .wp-block-group {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.has-background,
.wp-block-group[style*=background-color] {
  padding: 1.25rem;
}

.has-bg-background-color {
  background-color: #f8f5f2 !important;
}

.has-bg-alt-background-color {
  background-color: #efe9e4 !important;
}

.has-text-background-color {
  background-color: #1c1a18 !important;
}

.has-text-muted-background-color {
  background-color: #5c5650 !important;
}

.has-accent-background-color {
  background-color: #b55a3a !important;
}

.has-accent-dark-background-color {
  background-color: #8e4a2e !important;
}

.has-accent-light-background-color {
  background-color: #e8d5cf !important;
}

.has-border-background-color {
  background-color: #d4ccc6 !important;
}

.has-white-background-color {
  background-color: #ffffff !important;
}

.has-accent-secondary-background-color {
  background-color: #3d6b6b !important;
}

.has-accent-secondary-dark-background-color {
  background-color: #2a4d4d !important;
}

.has-bg-border-color {
  border-color: #f8f5f2 !important;
}

.has-bg-alt-border-color {
  border-color: #efe9e4 !important;
}

.has-text-border-color {
  border-color: #1c1a18 !important;
}

.has-text-muted-border-color {
  border-color: #5c5650 !important;
}

.has-accent-border-color {
  border-color: #b55a3a !important;
}

.has-accent-dark-border-color {
  border-color: #8e4a2e !important;
}

.has-accent-light-border-color {
  border-color: #e8d5cf !important;
}

.has-border-border-color {
  border-color: #d4ccc6 !important;
}

.has-white-border-color {
  border-color: #ffffff !important;
}

.has-accent-secondary-border-color {
  border-color: #3d6b6b !important;
}

.has-accent-secondary-dark-border-color {
  border-color: #2a4d4d !important;
}

.entry__content .wp-block-cover,
.entry__content--front .wp-block-cover {
  margin-bottom: 0;
}

.wp-block-button__link.has-accent-background-color {
  background-color: #b55a3a !important;
}
.wp-block-button__link.has-accent-background-color:hover {
  background-color: #8e4a2e !important;
}

.wp-block-button__link.has-accent-secondary-background-color {
  background-color: #3d6b6b !important;
}
.wp-block-button__link.has-accent-secondary-background-color:hover {
  background-color: #2a4d4d !important;
}

.entry__content .wp-block-image img,
.post-card__excerpt .wp-block-image img {
  display: block;
}
.entry__content .alignwide,
.post-card__excerpt .alignwide {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.entry__content .alignfull,
.post-card__excerpt .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.no-results {
  padding: 1.25rem 0;
}

.nav-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d4ccc6;
}

.wp-block-matt-rubenstein-playlist {
  margin: 1.5rem 0;
}

.wp-block-matt-rubenstein-playlist .wp-playlist {
  border: none;
  padding: 0;
  margin: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(28, 26, 24, 0.06);
  overflow: hidden;
}

.wp-block-matt-rubenstein-playlist .wp-playlist-current-item {
  padding: 1rem 1.25rem 0.5rem;
  font-size: 0.9375rem;
  color: #1c1a18;
  border-bottom: 1px solid #d4ccc6;
  min-height: 2.5rem;
}

.wp-block-matt-rubenstein-playlist .wp-playlist-item-title {
  font-weight: 500;
}

.wp-block-matt-rubenstein-playlist .wp-playlist-item-meta {
  color: #5c5650;
}

.wp-block-matt-rubenstein-playlist .wp-playlist > audio,
.wp-block-matt-rubenstein-playlist .mejs-container {
  width: 100% !important;
  max-width: 100%;
}

.wp-block-matt-rubenstein-playlist .mejs-controls {
  background: #efe9e4 !important;
  height: 48px !important;
}

.wp-block-matt-rubenstein-playlist .mejs-controls .mejs-time-rail .mejs-time-loaded,
.wp-block-matt-rubenstein-playlist .mejs-controls .mejs-time-rail .mejs-time-current {
  background: #b55a3a !important;
}

.wp-block-matt-rubenstein-playlist .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background: #b55a3a !important;
}

.wp-block-matt-rubenstein-playlist .mejs-controls .mejs-button button:hover,
.wp-block-matt-rubenstein-playlist .mejs-controls .mejs-button button:focus {
  color: #b55a3a !important;
}

.wp-block-matt-rubenstein-playlist .wp-playlist-tracks {
  margin-top: 0;
  border-top: 1px solid #d4ccc6;
}

.wp-block-matt-rubenstein-playlist .wp-playlist-item {
  padding: 0.75rem 1.25rem !important;
  border-bottom: 1px solid #d4ccc6;
  transition: background 0.15s ease;
}
.wp-block-matt-rubenstein-playlist .wp-playlist-item:last-child {
  border-bottom: none;
}
.wp-block-matt-rubenstein-playlist .wp-playlist-item:hover {
  background: #f8f5f2;
}

.wp-block-matt-rubenstein-playlist .wp-playlist-item a {
  color: #1c1a18;
  text-decoration: none;
  font-size: 0.9375rem;
}
.wp-block-matt-rubenstein-playlist .wp-playlist-item a:hover {
  color: #b55a3a;
}

.wp-block-matt-rubenstein-playlist .wp-playlist-item-length {
  color: #5c5650;
  font-size: 0.8125rem;
}

.wp-block-matt-rubenstein-playlist .wp-playlist-next,
.wp-block-matt-rubenstein-playlist .wp-playlist-prev {
  display: none;
}

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