@charset "UTF-8";
@font-face {
  font-family: 'Playfair Display';
  src: url("PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Playfair Display';
  src: url("PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap; }

* {
  box-sizing: border-box; }

::selection {
  background: #4c7a41;
  color: #fff; }

html {
  background: #14110d;
  font-family: 'Playfair Display', Georgia, serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased; }

*:focus-visible {
  outline: 2px solid #4c7a41;
  outline-offset: 2px; }

body {
  margin: 1.1rem;
  padding: 0;
  background: #f7f2e6;
  color: #211e19;
  border-radius: 13px;
  box-shadow: 0 30px 60px -18px rgba(8, 7, 5, 0.4);
  font-size: 15px; }
  body > main {
    width: 70%;
    margin: auto;
    max-width: 1500px; }
  body.kind-home > main, body.kind-term > main {
    width: 50%;
    max-width: 1080px; }

p, a, h1, h2, h3, h4, h5, h6 {
  color: inherit; }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -.01em; }

a {
  text-decoration: none;
  transition: color .15s ease; }
  a:hover {
    color: #4c7a41; }

#nav-border {
  position: sticky;
  top: 0;
  z-index: 40;
  border-radius: 13px 13px 0 0;
  overflow: hidden; }

nav#nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background: rgba(247, 242, 230, 0.82);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  padding: .5rem 1.1rem;
  box-shadow: inset 0 -1px 0 #e3d9c0;
  border-radius: 13px 13px 0 0;
  overflow: hidden; }

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0; }
  .brand .logo {
    height: 3.2rem;
    width: 3.2rem;
    border-radius: 11px;
    -webkit-filter: drop-shadow(0 3px 8px rgba(20, 17, 12, 0.16));
    filter: drop-shadow(0 3px 8px rgba(20, 17, 12, 0.16));
    transition: transform .25s ease; }
  .brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15; }
  .brand .brand-name {
    font-size: 1.48rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #211e19; }
  .brand .brand-tag {
    font-size: .88rem;
    font-style: italic;
    color: #6d6858; }
  .brand:hover {
    color: inherit; }
    .brand:hover .logo {
      transform: rotate(-5deg) scale(1.05); }

.nav-search {
  position: relative;
  flex: 1;
  max-width: 24rem;
  margin: 0 auto;
  display: flex;
  align-items: center; }
  .nav-search .nav-search-icon {
    position: absolute;
    left: .85rem;
    color: #96907d;
    pointer-events: none;
    display: block; }
  .nav-search .nav-search-input {
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-size: .92rem;
    color: #211e19;
    background: #fffdf8;
    border: 1px solid #e3d9c0;
    border-radius: 999px;
    padding: .45rem 2.2rem .45rem 2.35rem;
    box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09);
    transition: border-color .15s ease, box-shadow .15s ease; }
    .nav-search .nav-search-input::placeholder {
      color: #96907d; }
    .nav-search .nav-search-input::-webkit-search-cancel-button {
      -webkit-appearance: none; }
    .nav-search .nav-search-input:focus {
      outline: none;
      border-color: #4c7a41;
      box-shadow: 0 0 0 3px #e6eede; }
  .nav-search .nav-search-kbd {
    position: absolute;
    right: .7rem;
    font-family: 'Cabin', sans-serif;
    font-size: .8rem;
    color: #96907d;
    background: #efe6d1;
    border: 1px solid #e3d9c0;
    border-radius: 6px;
    padding: .05rem .45rem;
    pointer-events: none; }
  .nav-search:focus-within .nav-search-kbd {
    display: none; }

.nav-search-results {
  display: none;
  position: fixed;
  background: #fffdf8;
  border: 1px solid #e3d9c0;
  border-radius: 9px;
  box-shadow: 0 30px 60px -18px rgba(8, 7, 5, 0.4);
  overflow: hidden;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 60; }
  .nav-search-results.is-open {
    display: block; }

.search-empty {
  padding: 1rem 1.1rem;
  color: #6d6858;
  font-style: italic;
  font-size: .95rem; }

.sr-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .6rem .8rem;
  border-bottom: 1px solid #ece3cd;
  color: #211e19; }
  .sr-item:last-child {
    border-bottom: none; }
  .sr-item .sr-thumb {
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09); }
  .sr-item .sr-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6eede;
    font-size: 1.2rem; }
  .sr-item .sr-body {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    min-width: 0; }
  .sr-item .sr-title {
    font-weight: 700;
    font-size: 1.02rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sr-item .sr-tags {
    display: flex;
    gap: .3rem;
    flex-wrap: wrap; }
  .sr-item .sr-tag {
    font-family: 'Cabin', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    color: #35592c;
    background: #e6eede;
    padding: .1rem .45rem;
    border-radius: 999px; }
  .sr-item:hover, .sr-item.is-active {
    background: #efe6d1;
    color: #211e19; }
    .sr-item:hover .sr-title, .sr-item.is-active .sr-title {
      color: #35592c; }

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .2rem;
  flex-shrink: 0; }
  .nav-menu .nav-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: .92rem;
    color: #6d6858;
    padding: .4rem .6rem;
    position: relative;
    transition: color .15s ease; }
    .nav-menu .nav-link::after {
      content: "";
      position: absolute;
      left: .6rem;
      right: .6rem;
      bottom: .18rem;
      height: 1.5px;
      background: #4c7a41;
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease; }
    .nav-menu .nav-link:hover {
      color: #211e19; }
      .nav-menu .nav-link:hover::after {
        transform: scaleX(1); }
    .nav-menu .nav-link.active {
      color: #35592c; }
      .nav-menu .nav-link.active::after {
        transform: scaleX(1); }

nav.pagination {
  margin: 2.6rem auto 1rem auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; }
  nav.pagination a.prev, nav.pagination a.next, nav.pagination p.prev, nav.pagination p.next {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.1rem;
    border: 1px solid #e3d9c0;
    background: #fffdf8;
    border-radius: 999px;
    margin: 0 .4rem;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .18s ease;
    box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09); }
  nav.pagination a.prev:hover, nav.pagination a.next:hover {
    background: #4c7a41;
    color: #fff;
    border-color: #4c7a41;
    box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28); }
  nav.pagination p.prev, nav.pagination p.next {
    color: #96907d;
    background: transparent;
    box-shadow: none;
    cursor: default; }
  nav.pagination ul.pages {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .35rem;
    margin: 0 .5rem;
    padding: 0; }
    nav.pagination ul.pages a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2.4rem;
      height: 2.4rem;
      font-size: 1.05rem;
      font-weight: 600;
      border-radius: 50%;
      cursor: pointer;
      transition: all .18s ease; }
      nav.pagination ul.pages a:hover {
        background: #efe6d1;
        color: #35592c; }
      nav.pagination ul.pages a.active {
        background: #4c7a41;
        color: #fff;
        box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09); }
        nav.pagination ul.pages a.active:hover {
          background: #4c7a41;
          color: #fff; }
    nav.pagination ul.pages a.disabled {
      color: #96907d;
      cursor: default;
      background: transparent;
      min-width: 1.4rem; }
      nav.pagination ul.pages a.disabled:hover {
        background: transparent;
        color: #96907d; }

.eyebrow {
  display: inline-block;
  font-family: 'Cabin', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 700;
  color: #35592c;
  background: #e6eede;
  padding: .28rem .7rem;
  border-radius: 999px; }

p.card-summary {
  margin: .35rem 0 0 0;
  font-size: .86rem;
  line-height: 1.45;
  color: #6d6858; }

.btn {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .4rem; }

.btn-primary {
  background: #4c7a41;
  color: #fff !important;
  box-shadow: 0 6px 16px -6px rgba(53, 89, 44, 0.5); }
  .btn-primary:hover {
    background: #35592c;
    box-shadow: 0 10px 22px -6px rgba(53, 89, 44, 0.55); }

.btn-ghost {
  background: #fffdf8;
  color: #211e19 !important;
  border: 1px solid #e3d9c0;
  box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09); }
  .btn-ghost:hover {
    border-color: #4c7a41;
    color: #35592c !important;
    box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28); }

@keyframes floaty {
  0% {
    transform: translateY(0) rotate(0deg); }
  50% {
    transform: translateY(-14px) rotate(2deg); }
  100% {
    transform: translateY(0) rotate(0deg); } }

@keyframes blobDrift {
  0% {
    transform: translate(0, 0) scale(1); }
  50% {
    transform: translate(20px, -18px) scale(1.08); }
  100% {
    transform: translate(0, 0) scale(1); } }

header.homepage-header {
  position: relative;
  width: 100%;
  padding: 2.2rem 0 2.4rem 0;
  overflow: hidden; }
  header.homepage-header .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: .5;
    animation: blobDrift 14s ease-in-out infinite; }
  header.homepage-header .hero-blob-a {
    width: 26rem;
    height: 26rem;
    background: #e6eede;
    top: -11rem;
    left: -5rem; }
  header.homepage-header .hero-blob-b {
    width: 22rem;
    height: 22rem;
    background: #f7e2cf;
    top: -6rem;
    right: -4rem;
    animation-delay: -6s; }
  header.homepage-header .hero-grid {
    position: relative;
    z-index: 1;
    width: 50%;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 1.6rem; }
  header.homepage-header .hero-copy .eyebrow {
    margin-bottom: 1rem; }
  header.homepage-header .hero-copy h1 {
    font-size: 2.85rem;
    line-height: 1.05;
    margin: 0;
    font-weight: 800;
    letter-spacing: -.025em; }
    header.homepage-header .hero-copy h1 em {
      color: #4c7a41;
      font-style: italic; }
  header.homepage-header .hero-subtitle {
    max-width: 32rem;
    margin: 1rem 0 0 0;
    font-size: 1.12rem;
    color: #6d6858;
    line-height: 1.55; }
  header.homepage-header .subtitle {
    display: block;
    margin-top: .7rem;
    color: #96907d;
    font-style: italic; }
  header.homepage-header .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.4rem; }
  header.homepage-header .hero-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.4rem;
    font-size: .88rem;
    color: #6d6858; }
    header.homepage-header .hero-stats strong {
      color: #211e19;
      font-size: 1.05rem; }
    header.homepage-header .hero-stats .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #96907d;
      display: inline-block; }
  header.homepage-header .hero-art {
    display: flex;
    justify-content: center;
    align-items: center; }
    header.homepage-header .hero-art img {
      width: 100%;
      max-width: 18rem;
      height: auto;
      filter: drop-shadow(0 20px 34px rgba(20, 17, 12, 0.2));
      animation: floaty 7s ease-in-out infinite; }

.spotlight {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 0;
  margin: 1.2rem 0 2.4rem 0;
  background: #fffdf8;
  border: 1px solid #e3d9c0;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28);
  cursor: pointer;
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease; }
  .spotlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28);
    border-color: #4c7a41; }
    .spotlight:hover .spotlight-img::after {
      opacity: 1; }
    .spotlight:hover .spotlight-cta {
      background: #35592c; }
  .spotlight .spotlight-media {
    position: relative;
    min-height: 9rem;
    overflow: hidden; }
  .spotlight .spotlight-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center; }
    .spotlight .spotlight-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(53, 89, 44, 0.16), rgba(53, 89, 44, 0) 60%);
      opacity: 0;
      transition: opacity .35s ease; }
  .spotlight .spotlight-ribbon {
    position: absolute;
    top: .8rem;
    left: .8rem;
    z-index: 1;
    background: rgba(15, 12, 8, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
    padding: .35rem .7rem;
    border-radius: 999px; }
  .spotlight .spotlight-body {
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .spotlight .spotlight-kicker {
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .68rem;
    font-weight: 700;
    color: #bd5f2e; }
    .spotlight .spotlight-kicker .card-time {
      color: #96907d;
      margin-left: .35rem; }
  .spotlight h2 {
    font-size: 1.65rem;
    line-height: 1.15;
    margin: .3rem 0 0 0;
    font-weight: 800; }
    .spotlight h2 a {
      color: #211e19; }
  .spotlight .spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .6rem; }
    .spotlight .spotlight-meta .mini-tag {
      font-family: 'Cabin', sans-serif;
      font-size: .74rem;
      font-weight: 600;
      color: #35592c;
      background: #e6eede;
      padding: .22rem .6rem;
      border-radius: 999px;
      transition: all .18s ease; }
      .spotlight .spotlight-meta .mini-tag:hover {
        background: #4c7a41;
        color: #fff; }
  .spotlight .spotlight-cta {
    align-self: flex-end;
    margin-top: .8rem; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin: 2rem .3rem .9rem .3rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid #e3d9c0; }
  .section-head h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1; }
    .section-head h2::before {
      display: none; }
  .section-head .section-count {
    font-family: 'Cabin', sans-serif;
    font-size: .8rem;
    color: #96907d;
    font-weight: 600; }
  .section-head .section-all {
    margin-left: auto;
    font-size: .88rem;
    font-weight: 700;
    color: #35592c; }
    .section-head .section-all:hover {
      color: #4c7a41; }

.taxonomy-head {
  margin: 1.6rem .3rem 1.2rem .3rem; }
  .taxonomy-head .eyebrow {
    margin-bottom: .8rem; }
  .taxonomy-head h1 {
    font-size: 2.9rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0; }
  .taxonomy-head .taxonomy-sub {
    color: #6d6858;
    margin: .55rem 0 0 0;
    font-size: 1.05rem; }

.browse-toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .8rem;
  margin: 0 .3rem 1rem .3rem;
  flex-wrap: wrap; }
  .browse-toolbar .browse-search-wrap {
    position: relative;
    flex: 1;
    min-width: 14rem;
    display: flex;
    align-items: center; }
    .browse-toolbar .browse-search-wrap .browse-search-icon {
      position: absolute;
      left: .9rem;
      color: #96907d;
      pointer-events: none;
      display: block; }
  .browse-toolbar .browse-search {
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #211e19;
    background: #fffdf8;
    border: 1px solid #e3d9c0;
    border-radius: 999px;
    padding: .75rem 1.1rem .75rem 2.7rem;
    box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09);
    transition: border-color .15s ease, box-shadow .15s ease; }
    .browse-toolbar .browse-search::placeholder {
      color: #96907d; }
    .browse-toolbar .browse-search:focus {
      outline: none;
      border-color: #4c7a41;
      box-shadow: 0 0 0 3px #e6eede; }
  .browse-toolbar .browse-sort-wrap {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: #6d6858;
    font-weight: 600; }
  .browse-toolbar .browse-sort {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #211e19;
    background: #fffdf8;
    border: 1px solid #e3d9c0;
    border-radius: 999px;
    padding: .7rem 2.2rem .7rem 1.1rem;
    box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236d6858' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color .15s ease; }
    .browse-toolbar .browse-sort:focus {
      outline: none;
      border-color: #4c7a41; }

.filter-bar {
  background: #fffdf8;
  border: 1px solid #e3d9c0;
  border-radius: 13px;
  padding: 1.1rem 1.25rem;
  margin: 0 .3rem 1.8rem .3rem;
  box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09); }
  .filter-bar .filter-toggle {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #211e19;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer; }
    .filter-bar .filter-toggle .filter-toggle-count {
      font-family: 'Cabin', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      color: #96907d;
      background: #efe6d1;
      padding: .12em .6em;
      border-radius: 999px;
      margin-left: auto;
      margin-right: .7rem; }
    .filter-bar .filter-toggle::after {
      content: "▾";
      color: #96907d;
      transition: transform .2s ease; }
  .filter-bar.tags-open .filter-toggle::after {
    transform: rotate(180deg); }
  .filter-bar .filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem; }
  .filter-bar .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    font-size: .95rem;
    color: #211e19;
    background: #f7f2e6;
    border: 1px solid #e3d9c0;
    padding: .4rem .85rem;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease, opacity .2s ease, transform .15s ease; }
    .filter-bar .filter-chip .chip-count {
      font-family: 'Cabin', sans-serif;
      font-size: .72em;
      font-weight: 700;
      color: #96907d;
      background: #efe6d1;
      padding: .14em .55em;
      border-radius: 999px;
      transition: all .15s ease; }
    .filter-bar .filter-chip:hover {
      border-color: #4c7a41;
      color: #35592c; }
    .filter-bar .filter-chip.active {
      background: #4c7a41;
      border-color: #4c7a41;
      color: #fff;
      box-shadow: 0 6px 14px -5px rgba(53, 89, 44, 0.5); }
      .filter-bar .filter-chip.active .chip-count {
        background: rgba(255, 255, 255, 0.24);
        color: #fff; }
    .filter-bar .filter-chip.disabled {
      opacity: .3;
      pointer-events: none;
      cursor: default; }
  .filter-bar .filter-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: .95rem;
    padding-top: .9rem;
    border-top: 1px dashed #e3d9c0; }
    .filter-bar .filter-status .filter-count {
      font-weight: 600;
      color: #6d6858;
      font-size: .95rem; }
    .filter-bar .filter-status .filter-clear {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: .9rem;
      color: #bd5f2e;
      background: #f7e2cf;
      border: none;
      padding: .38rem .9rem;
      border-radius: 999px;
      cursor: pointer;
      transition: all .15s ease; }
      .filter-bar .filter-status .filter-clear:hover {
        background: #bd5f2e;
        color: #fff; }

.no-results {
  text-align: center;
  color: #6d6858;
  font-size: 1.15rem;
  font-style: italic;
  padding: 2.5rem 1rem; }

#recipeGrid {
  scroll-margin-top: 6rem; }

.category_container {
  display: flex;
  flex-direction: column; }
  .category_container h1 {
    margin: .6rem 0 .4rem 5px; }
  .category_container div.category {
    display: grid;
    grid-gap: .9rem;
    grid-template-columns: 1fr 1fr 1fr; }
    .category_container div.category span.article {
      position: relative;
      text-align: left;
      border: 1px solid #e3d9c0;
      background: #fffdf8;
      border-radius: 9px;
      margin: 0;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09);
      transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease; }
      .category_container div.category span.article:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28);
        border-color: #4c7a41; }
        .category_container div.category span.article:hover div.cover_image::after {
          opacity: 1; }
      .category_container div.category span.article div.cover_image {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat; }
        .category_container div.category span.article div.cover_image::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(to top, rgba(53, 89, 44, 0.3), rgba(53, 89, 44, 0) 55%);
          opacity: 0;
          transition: opacity .3s ease; }
      .category_container div.category span.article div.card-body {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: .8rem 1rem 1rem 1rem; }
      .category_container div.category span.article span.card-kicker {
        font-family: 'Cabin', sans-serif;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .64rem;
        font-weight: 700;
        color: #bd5f2e; }
        .category_container div.category span.article span.card-kicker .card-time {
          color: #96907d;
          margin-left: .35rem; }
      .category_container div.category span.article h2 {
        font-size: 1.25rem;
        margin: .25rem 0 0 0;
        line-height: 1.2;
        color: #211e19; }
      .category_container div.category span.article div.card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem;
        margin-top: auto;
        padding-top: .8rem; }
        .category_container div.category span.article div.card-tags .mini-tag {
          font-family: 'Cabin', sans-serif;
          font-size: .76rem;
          font-weight: 600;
          color: #35592c;
          background: #e6eede;
          padding: .28rem .7rem;
          border-radius: 999px;
          transition: all .18s ease; }
          .category_container div.category span.article div.card-tags .mini-tag:hover {
            background: #4c7a41;
            color: #fff; }
      .category_container div.category span.article div.new {
        position: absolute;
        top: .7rem;
        right: .7rem;
        z-index: 1;
        background: #bd5f2e;
        color: white;
        padding: .2rem .55rem;
        border-radius: 999px;
        font-size: .66rem;
        letter-spacing: .04em;
        box-shadow: 0 4px 12px rgba(189, 95, 46, 0.4);
        font-weight: 700;
        text-transform: uppercase; }
      .category_container div.category span.article a.card-category {
        position: absolute;
        top: .7rem;
        left: .7rem;
        z-index: 1;
        background: rgba(15, 12, 8, 0.72);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        color: #fff;
        padding: .2rem .6rem;
        border-radius: 999px;
        font-family: 'Cabin', sans-serif;
        font-size: .66rem;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        transition: background .18s ease; }
        .category_container div.category span.article a.card-category:hover {
          background: #4c7a41;
          color: #fff; }

div.flex-left {
  display: flex;
  flex-direction: row;
  margin-top: .6rem; }
  div.flex-left div.flex-push {
    flex: 1; }
  div.flex-left h3 {
    font-weight: 600;
    font-size: .95rem;
    margin: 0;
    padding: .5rem 1rem;
    border-radius: 999px;
    border: 1px solid #e3d9c0;
    background: #fffdf8;
    transition: all .2s ease; }
    div.flex-left h3:hover {
      background: #4c7a41;
      color: #fff;
      border-color: #4c7a41; }

div.teaser_container {
  margin-top: 4rem;
  padding: 3rem 0 1rem 0;
  border-top: 1px solid #e3d9c0; }
  div.teaser_container .teaser-heading {
    text-align: center;
    margin-bottom: 2.2rem; }
    div.teaser_container .teaser-heading .eyebrow {
      margin-bottom: .8rem; }
    div.teaser_container .teaser-heading h2 {
      text-align: center;
      font-size: 1.9rem;
      margin: 0; }

div.round-teasers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  padding-bottom: 1rem; }
  div.round-teasers a.teaser-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 12rem;
    border-radius: 9px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28);
    transition: transform .3s ease, box-shadow .3s ease; }
    div.round-teasers a.teaser-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 12, 8, 0.82) 0%, rgba(15, 12, 8, 0.28) 42%, rgba(15, 12, 8, 0) 72%);
      transition: background .3s ease; }
    div.round-teasers a.teaser-card:first-child {
      grid-column: span 2;
      height: 12rem; }
    div.round-teasers a.teaser-card .teaser-label {
      position: relative;
      z-index: 1;
      color: #fff;
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: -.01em;
      padding: 1rem 1.1rem;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
      transition: transform .3s ease; }
    div.round-teasers a.teaser-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 30px 60px -18px rgba(8, 7, 5, 0.4);
      color: #fff; }
      div.round-teasers a.teaser-card:hover::after {
        background: linear-gradient(to top, rgba(53, 89, 44, 0.86) 0%, rgba(53, 89, 44, 0.35) 45%, rgba(15, 12, 8, 0) 75%); }
      div.round-teasers a.teaser-card:hover .teaser-label {
        transform: translateY(-3px); }

.tagcloud-container {
  margin-top: 4rem;
  padding: 3rem 0 1rem 0;
  border-top: 1px solid #e3d9c0; }
  .tagcloud-container .teaser-heading {
    text-align: center;
    margin-bottom: 2rem; }
    .tagcloud-container .teaser-heading .eyebrow {
      margin-bottom: .8rem; }
    .tagcloud-container .teaser-heading h2 {
      font-size: 1.9rem;
      margin: 0; }

.tagcloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .55rem .7rem;
  max-width: 60rem;
  margin: 0 auto; }
  .tagcloud a.cloud-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    line-height: 1;
    font-weight: 600;
    color: #211e19;
    background: #fffdf8;
    border: 1px solid #e3d9c0;
    padding: .4rem .85rem;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09);
    transition: all .18s ease; }
    .tagcloud a.cloud-tag .cloud-count {
      font-family: 'Cabin', sans-serif;
      font-size: .62em;
      font-weight: 700;
      color: #96907d;
      background: #efe6d1;
      padding: .12em .5em;
      border-radius: 999px; }
    .tagcloud a.cloud-tag:hover {
      background: #4c7a41;
      color: #fff;
      border-color: #4c7a41;
      box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09); }
      .tagcloud a.cloud-tag:hover .cloud-count {
        background: rgba(255, 255, 255, 0.25);
        color: #fff; }

aside.meta-tags {
  margin: 2.4rem auto 0 auto;
  padding: 0 0.6rem; }
  aside.meta-tags .eyebrow {
    margin-bottom: .8rem; }

.tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .55rem .7rem; }
  .tags a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: .45rem;
    color: #211e19;
    background: #fffdf8;
    border: 1px solid #e3d9c0;
    border-radius: 999px;
    padding: .38rem .85rem;
    box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09);
    transition: all .18s ease; }
    .tags a:visited {
      color: #211e19; }
    .tags a button.tag-button {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: .92rem;
      border: none;
      padding: 0;
      background: transparent;
      cursor: pointer;
      color: inherit; }
    .tags a div {
      font-family: 'Cabin', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      color: #96907d;
      background: #efe6d1;
      padding: .12em .5em;
      border-radius: 999px;
      transition: all .18s ease; }
    .tags a:hover {
      background: #4c7a41;
      border-color: #4c7a41; }
      .tags a:hover button.tag-button {
        color: #fff; }
      .tags a:hover div {
        background: rgba(255, 255, 255, 0.25);
        color: #fff; }

.tags p {
  margin: 0; }

article.content span.main-content h3 {
  margin-bottom: 0; }

article.content span.main-content p {
  text-align: justify;
  font-size: 1.12rem;
  line-height: 1.75;
  margin-top: .7rem; }

article.content span.main-content a {
  color: #4c7a41;
  text-underline-offset: 3px; }
  article.content span.main-content a:hover {
    color: #211e19;
    text-decoration: underline; }

article.content div.meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 2.2rem; }
  article.content div.meta .eyebrow {
    margin-bottom: .9rem; }
  article.content div.meta h1 {
    font-size: 3.1rem;
    line-height: 1.1;
    margin: 0 0 1.2rem 0;
    color: #211e19;
    font-weight: 800;
    letter-spacing: -.02em;
    text-decoration: none;
    position: relative;
    display: inline-block;
    align-self: center; }
    article.content div.meta h1::after {
      content: "";
      display: block;
      width: 4.5rem;
      height: 3px;
      background: #bd5f2e;
      border-radius: 3px;
      margin: 1rem auto 0 auto; }
  article.content div.meta section.post-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.4rem; }
  article.content div.meta .post-meta-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    color: #6d6858;
    font-size: .92rem; }
    article.content div.meta .post-meta-stats .dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: #96907d;
      display: inline-block; }
    article.content div.meta .post-meta-stats .new {
      background: #bd5f2e;
      color: white;
      border-radius: 999px;
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .03em;
      box-shadow: 0 4px 10px rgba(189, 95, 46, 0.35);
      font-weight: 700;
      height: 1.5rem;
      display: inline-flex;
      align-items: center;
      padding: 0 .6rem; }

article.content p img {
  width: 70%;
  margin: auto;
  border-radius: 9px;
  display: block;
  box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28); }

article.content div.cover {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center; }
  article.content div.cover:has(.wrapper) {
    margin-top: .4rem; }
    article.content div.cover:has(.wrapper)::before {
      content: "";
      position: absolute;
      top: -2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 28rem;
      height: 16rem;
      max-width: 90%;
      background: radial-gradient(circle, #e6eede 0%, #f7e2cf 60%, transparent 75%);
      filter: blur(50px);
      opacity: .6;
      z-index: 0; }
  article.content div.cover div.wrapper {
    position: relative;
    z-index: 1;
    width: 58%;
    height: auto;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 30px 60px -18px rgba(8, 7, 5, 0.4); }
  article.content div.cover img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    margin: 0;
    display: block; }

article.content div.image-split p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  width: 80%;
  margin: .6rem auto; }
  article.content div.image-split p img {
    height: 300px;
    width: auto;
    border-radius: 9px;
    box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28);
    margin: 0;
    cursor: zoom-in;
    transition: transform .25s ease; }
    article.content div.image-split p img:hover {
      transform: scale(1.02); }
  article.content div.image-split p span.caption {
    font-size: .9rem;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #96907d; }

div.recipe {
  position: relative;
  width: 80%;
  margin: 2.6rem auto;
  background: #fffdf8;
  padding: 1.8rem 2rem;
  border-radius: 9px;
  border: 1px solid #e3d9c0;
  box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28); }
  div.recipe .cooking-mode {
    justify-content: flex-end;
    margin: 0 0 .9rem 0;
    font-size: .85rem;
    color: #6d6858; }
  div.recipe #statusDiv {
    text-align: right;
    font-size: .78rem;
    color: #96907d;
    margin: -.6rem 0 .9rem 0; }
    div.recipe #statusDiv:empty {
      display: none; }
  div.recipe .recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    margin: 0 0 1.6rem 0;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid #e3d9c0; }
  div.recipe .recipe-stat {
    display: flex;
    flex-direction: column;
    gap: .15rem; }
  div.recipe .recipe-stat-label {
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .64rem;
    font-weight: 700;
    color: #96907d; }
  div.recipe .recipe-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #211e19; }
  div.recipe .recipe-stat-total .recipe-stat-value {
    color: #35592c; }
  div.recipe h3, div.recipe h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #211e19;
    margin: 1.9rem 0 .6rem 0; }
    div.recipe h3.title, div.recipe h4.title {
      margin-top: 0; }
  div.recipe h4 {
    font-size: 1.08rem;
    color: #35592c;
    margin-top: 1.2rem; }
  div.recipe ul {
    margin: .7rem 0 1.6rem 0;
    padding: 0;
    list-style-type: none; }
    div.recipe ul li {
      display: flex;
      align-items: baseline;
      gap: .7rem;
      margin: 0;
      padding: .5rem 0;
      border-bottom: 1px solid #ece3cd;
      font-size: 1rem;
      transition: color .15s ease; }
      div.recipe ul li input {
        accent-color: #4c7a41;
        width: 1.1rem;
        height: 1.1rem;
        flex-shrink: 0;
        cursor: pointer; }
    div.recipe ul li:last-child {
      border-bottom: none; }
    div.recipe ul li:has(input:checked) {
      color: #96907d;
      text-decoration: line-through;
      text-decoration-color: #e3d9c0; }
  div.recipe ol {
    margin-top: .5rem;
    padding: 0;
    list-style: none;
    counter-reset: step; }
    div.recipe ol li {
      counter-increment: step;
      position: relative;
      margin: 0;
      padding: .3rem 0 .3rem 2.2rem;
      font-size: 1rem;
      line-height: 1.6; }
      div.recipe ol li::before {
        content: counter(step) ".";
        position: absolute;
        left: 0;
        top: .3rem;
        font-weight: 700;
        color: #35592c;
        line-height: 1.6; }

.reveal-on .section-head, .reveal-on .category, .reveal-on .teaser_container, .reveal-on .tagcloud-container {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease; }
  .reveal-on .section-head.is-visible, .reveal-on .category.is-visible, .reveal-on .teaser_container.is-visible, .reveal-on .tagcloud-container.is-visible {
    opacity: 1;
    transform: none; }

footer {
  margin: 0;
  text-align: center;
  padding: 2.2rem 1rem 1.6rem 1rem;
  border-top: 1px solid #e3d9c0;
  border-radius: 0 0 13px 13px; }
  footer a {
    color: #211e19;
    font-weight: 600; }
    footer a:hover {
      color: #4c7a41; }
  footer .subtitle {
    display: block;
    font-style: italic;
    color: #6d6858;
    margin-bottom: .5rem; }
  footer p.footer {
    margin: .3rem 0; }
  footer p.gray-text {
    margin: .3rem 0 0 0; }

.gray-text {
  color: #96907d; }

.dark-gray-text {
  color: #6d6858; }

article.split-me {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 3.5rem; }
  article.split-me > section {
    flex: 1;
    min-width: 0;
    padding: 0 2.2rem 0 .3rem; }
  article.split-me div.sidebar {
    flex: 0 0 17rem;
    padding: 2.2rem 0 0 2rem;
    border-left: 1px solid #e3d9c0; }
    article.split-me div.sidebar .sidebar-block {
      margin-bottom: 2.6rem; }
      article.split-me div.sidebar .sidebar-block:last-child {
        margin-bottom: 0; }
    article.split-me div.sidebar .sidebar-about .eyebrow {
      margin-bottom: .8rem; }
    article.split-me div.sidebar .sidebar-about .sidebar-avatar {
      display: block;
      width: 4.5rem;
      height: 4.5rem;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09);
      border: 3px solid #fffdf8;
      margin-bottom: 1rem; }
    article.split-me div.sidebar .sidebar-about h2 {
      margin: 0 0 .7rem 0;
      font-size: 1.4rem; }
    article.split-me div.sidebar .sidebar-about p {
      margin: 0 0 .8rem 0;
      line-height: 1.6;
      color: #6d6858;
      font-size: .95rem; }
      article.split-me div.sidebar .sidebar-about p a {
        color: #4c7a41; }
        article.split-me div.sidebar .sidebar-about p a:hover {
          color: #211e19; }
      article.split-me div.sidebar .sidebar-about p:last-child {
        margin-bottom: 0; }
    article.split-me div.sidebar h2.sidebar-heading {
      margin: 0 0 1rem 0;
      padding-bottom: .55rem;
      font-size: 1.1rem;
      border-bottom: 1px solid #e3d9c0; }
    article.split-me div.sidebar .recent-posts {
      display: flex;
      flex-direction: column; }
      article.split-me div.sidebar .recent-posts .recent-item {
        display: flex;
        align-items: center;
        gap: .75rem;
        padding: .6rem 0;
        border-bottom: 1px solid #ece3cd;
        color: #211e19; }
        article.split-me div.sidebar .recent-posts .recent-item:last-child {
          border-bottom: none; }
        article.split-me div.sidebar .recent-posts .recent-item:hover .recent-title {
          color: #35592c; }
        article.split-me div.sidebar .recent-posts .recent-item .recent-thumb {
          width: 3.2rem;
          height: 3.2rem;
          border-radius: 6px;
          background-size: cover;
          background-position: center;
          flex-shrink: 0;
          box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09); }
        article.split-me div.sidebar .recent-posts .recent-item .recent-body {
          display: flex;
          flex-direction: column;
          gap: .25rem;
          min-width: 0; }
        article.split-me div.sidebar .recent-posts .recent-item .recent-title {
          font-weight: 700;
          font-size: .95rem;
          line-height: 1.28;
          transition: color .15s ease; }
        article.split-me div.sidebar .recent-posts .recent-item .recent-date {
          font-family: 'Cabin', sans-serif;
          text-transform: uppercase;
          letter-spacing: .06em;
          font-size: .64rem;
          font-weight: 600;
          color: #96907d; }
    article.split-me div.sidebar .sidebar-cats {
      list-style: none;
      margin: 0;
      padding: 0; }
      article.split-me div.sidebar .sidebar-cats li {
        border-bottom: 1px solid #ece3cd; }
        article.split-me div.sidebar .sidebar-cats li:last-child {
          border-bottom: none; }
      article.split-me div.sidebar .sidebar-cats a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .58rem .1rem;
        color: #211e19;
        font-size: .98rem;
        font-weight: 600;
        transition: color .15s ease; }
        article.split-me div.sidebar .sidebar-cats a:hover {
          color: #35592c; }
          article.split-me div.sidebar .sidebar-cats a:hover .sidebar-cat-count {
            background: #4c7a41;
            color: #fff; }
      article.split-me div.sidebar .sidebar-cats .sidebar-cat-count {
        font-family: 'Cabin', sans-serif;
        font-size: .68rem;
        font-weight: 700;
        color: #96907d;
        background: #efe6d1;
        padding: .12em .55em;
        border-radius: 999px;
        transition: all .15s ease; }

.masonry-gallery {
  column-count: 3;
  column-gap: 2em; }
  .masonry-gallery .masonry-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 1rem 0;
    padding: 10px;
    border: 1px solid #e3d9c0;
    background: #fffdf8;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(20, 17, 12, 0.09); }
    .masonry-gallery .masonry-item img {
      width: 100%;
      height: auto;
      border-radius: 6px; }

video.not-full-width {
  border-radius: 9px;
  padding: 10px;
  display: block;
  border: 1px solid #e3d9c0;
  background: #fffdf8;
  box-shadow: 0 14px 34px -14px rgba(20, 17, 12, 0.28);
  max-width: 80%;
  margin: auto; }

.cooking-mode {
  display: flex;
  flex-direction: row;
  gap: .5rem;
  align-items: center; }
  .cooking-mode .switch {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.5rem; }
  .cooking-mode .switch input {
    opacity: 0;
    width: 0;
    height: 0; }
  .cooking-mode .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 10px; }
  .cooking-mode .slider:before {
    position: absolute;
    content: "";
    height: 1rem;
    width: 1rem;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%; }
  .cooking-mode input:checked + .slider {
    background-color: #4c7a41; }
  .cooking-mode input:focus + .slider {
    box-shadow: 0 0 1px #4c7a41; }
  .cooking-mode input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px); }

.image-modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  background-color: rgba(10, 8, 6, 0.92);
  opacity: 0;
  transition: opacity .15s ease; }
  .image-modal.visible {
    opacity: 1;
    transition: opacity .15s ease; }
  .image-modal .modal-content {
    text-align: center; }
    .image-modal .modal-content img {
      margin: auto;
      display: block;
      max-width: 85%;
      max-height: 85vh;
      border-radius: 9px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      cursor: zoom-out; }
  .image-modal span.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.2s ease;
    cursor: pointer; }
    .image-modal span.close:hover {
      color: #bd5f2e; }

div#statusDiv {
  color: #211e19;
  margin-bottom: .6rem; }

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important; } }

@media screen and (max-width: 1700px) {
  body > main {
    width: 80%; }
  body.kind-home > main, body.kind-term > main {
    width: 64%; }
  header.homepage-header .hero-grid {
    width: 64%; }
  article.content div.meta h1 {
    font-size: 2.8rem; }
  article.content div.meta div.cover div.wrapper {
    width: 75%;
    margin: auto; } }

@media screen and (max-width: 1400px) {
  article.content div.image-split p img {
    height: 220px; } }

@media screen and (max-width: 1200px) {
  body > main {
    width: 90%; }
  body.kind-home > main, body.kind-term > main {
    width: 80%; }
  div.recipe, video.not-full-width {
    width: 95%; }
  header.homepage-header .hero-grid {
    width: 80%;
    grid-template-columns: 1fr;
    text-align: center; }
  header.homepage-header .hero-copy h1 {
    font-size: 2.7rem; }
  header.homepage-header .hero-subtitle {
    margin-left: auto;
    margin-right: auto; }
  header.homepage-header .hero-actions, header.homepage-header .hero-stats {
    justify-content: center; }
  header.homepage-header .hero-art {
    order: -1; }
    header.homepage-header .hero-art img {
      max-width: 15rem; }
  .spotlight {
    grid-template-columns: 1fr; }
    .spotlight .spotlight-media {
      min-height: 15rem; }
  article.content div.meta h1 {
    font-size: 2.5rem; }
  article.content div.meta div.cover div.wrapper {
    width: 85%;
    margin: auto; }
  article.content div.image-split p {
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    article.content div.image-split p img {
      margin: 0;
      width: 90%;
      height: auto; }
  .masonry-gallery {
    column-count: 2;
    column-gap: 2em; } }

@media screen and (max-width: 1000px) {
  body > main {
    width: 96%; }
  body.kind-home > main, body.kind-term > main {
    width: 92%; }
  header.homepage-header .hero-grid {
    width: 92%; }
  nav#nav {
    flex-wrap: wrap;
    padding: .6rem 1rem;
    row-gap: .6rem;
    column-gap: .8rem; }
  .brand .brand-tag {
    display: none; }
  .nav-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    margin: 0; }
  .nav-menu {
    margin-left: auto; }
  .category_container div.category {
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 0.8rem;
    grid-template-columns: 1fr 1fr; }
  div.round-teasers {
    grid-template-columns: repeat(3, 1fr); } }

@media screen and (max-width: 700px) {
  body {
    margin: 0;
    border-radius: 0;
    box-shadow: none; }
    body > main {
      width: 100%; }
    body.kind-home > main, body.kind-term > main {
      width: 100%; }
  header.homepage-header .hero-grid {
    width: 100%; }
  #nav-border {
    border-radius: 0; }
  footer {
    border-radius: 0; }
  span.main-content > p:not(p > p) {
    padding: 0 .3rem; }
  nav#nav {
    padding: .45rem .9rem;
    row-gap: 0;
    background: #f7f2e6;
    -webkit-backdrop-filter: none;
    backdrop-filter: none; }
  .brand {
    order: 1;
    gap: .55rem; }
    .brand .logo {
      height: 2.5rem;
      width: 2.5rem; }
    .brand .brand-name {
      font-size: 1.15rem; }
  .nav-search {
    order: 2;
    margin-top: .5rem;
    max-height: 2.8rem;
    overflow: hidden;
    transition: max-height .3s ease, opacity .22s ease, margin-top .3s ease, transform .3s ease; }
  .nav-menu {
    order: 3;
    flex: 1 1 100%;
    margin-top: .5rem;
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: .2rem;
    padding-top: .35rem;
    border-top: 1px solid #ece3cd; }
    .nav-menu .nav-link {
      padding: .35rem .6rem;
      font-size: .92rem; }
  #nav-border.nav-collapsed .nav-search {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none; }
  .nav-search .nav-search-input, .browse-toolbar .browse-search, .browse-toolbar .browse-sort {
    font-size: 16px; }
  .filter-bar .filter-toggle {
    display: flex; }
  .filter-bar .filter-chips {
    display: none;
    margin-top: 1rem; }
  .filter-bar.tags-open .filter-chips {
    display: flex; }
  header.homepage-header {
    padding: 2rem .3rem 1.6rem .3rem; }
    header.homepage-header .hero-copy h1 {
      font-size: 2.3rem; }
    header.homepage-header .hero-subtitle {
      font-size: 1.05rem; }
  .spotlight {
    margin-left: .9rem;
    margin-right: .9rem; }
    .spotlight .spotlight-body {
      padding: 1.6rem; }
    .spotlight h2 {
      font-size: 1.8rem; }
  .section-head {
    flex-wrap: wrap; }
    .section-head .section-all {
      margin-left: 0; }
  .category_container {
    padding: .8rem; }
    .category_container h1 {
      margin-top: .3rem; }
    .category_container div.category {
      flex-direction: column;
      display: flex;
      gap: 1rem; }
      .category_container div.category span.article {
        width: 93%;
        margin: auto; }
        .category_container div.category span.article div.cover_image {
          height: 300px; }
  article.split-me {
    flex-direction: column; }
    article.split-me > section {
      padding: 0 1rem; }
    article.split-me div.sidebar {
      flex: 1 1 auto;
      border-left: none;
      border-top: 1px solid #e3d9c0;
      padding: 1.8rem 1rem 0 1rem; }
  aside.meta-tags {
    margin-bottom: 2rem; }
  article.content div.cover div.wrapper {
    width: 100%;
    margin: 0; }
    article.content div.cover div.wrapper img {
      width: 100%;
      height: auto;
      border-radius: 9px;
      margin: 0;
      display: block; }
  article.content div.meta h1 {
    line-height: 2.5rem;
    margin: 1rem 0 1.3rem 0; }
  article.content p img {
    width: 75%; }
  .masonry-gallery {
    column-count: 1;
    column-gap: 2em;
    width: 96%; }
  div.teaser_container, .tagcloud-container {
    padding-left: .9rem;
    padding-right: .9rem; }
  div.teaser_container div.round-teasers {
    grid-template-columns: 1fr 1fr;
    gap: .8rem; }
    div.teaser_container div.round-teasers a.teaser-card {
      height: 9rem; }
      div.teaser_container div.round-teasers a.teaser-card:first-child {
        height: 9rem; } }

@media screen and (max-width: 750px) {
  article.content p img {
    width: 100%; } }

@media screen and (max-width: 480px) {
  article.content span.main-content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left; }
  article.content div.meta {
    padding-top: 1.1rem; }
    article.content div.meta h1 {
      font-size: 1.85rem;
      line-height: 1.15;
      margin: .7rem 0 .9rem 0; }
  div.recipe {
    width: 100%;
    margin: 1.4rem 0;
    padding: 1.1rem; }
    div.recipe .recipe-meta {
      gap: 1.3rem;
      margin-bottom: 1rem;
      padding-bottom: .85rem; }
    div.recipe .recipe-stat-value {
      font-size: 1.05rem; }
    div.recipe h3, div.recipe h4 {
      margin: 1.1rem 0 .4rem 0;
      font-size: 1.15rem; }
    div.recipe h4 {
      margin-top: .9rem;
      font-size: 1rem; }
    div.recipe ul {
      margin: .5rem 0 1rem 0; }
      div.recipe ul li {
        padding: .35rem 0;
        font-size: .95rem; }
    div.recipe ol li {
      padding: .2rem 0 .45rem 1.8rem;
      font-size: .95rem;
      line-height: 1.5; }
      div.recipe ol li::before {
        top: .2rem;
        line-height: 1.5; } }

@media screen and (max-width: 400px) {
  article.content span.main-content p {
    font-size: .95rem; }
  article.content div.meta h1 {
    font-size: 1.65rem; }
  div.recipe {
    padding: 1rem; }
    div.recipe h3, div.recipe h4 {
      font-size: 1.1rem; }
    div.recipe h4 {
      font-size: .98rem; }
    div.recipe ul li {
      font-size: .9rem; }
    div.recipe ol li {
      font-size: .9rem; } }

#isso-thread {
  margin-top: 2rem; }

p.isso-post-action input[type="button"], p.isso-post-action input[type="submit"] {
  font-family: 'Playfair Display', serif;
  background: #fffdf8;
  border: 1px solid #e3d9c0;
  color: #211e19;
  border-radius: 999px;
  padding: .4rem 1rem;
  cursor: pointer;
  transition: all .2s ease; }
  p.isso-post-action input[type="button"]:hover, p.isso-post-action input[type="submit"]:hover {
    background: #4c7a41 !important;
    color: white !important;
    border-color: #4c7a41; }
