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

:root {
  --kuno-bg: #f7f4ef;
  --kuno-surface: #fff;
  --kuno-text: #1a1714;
  --kuno-text-mid: #5a534c;
  --kuno-text-dim: #9a9088;
  --kuno-text-meta-on-surface: #605952;
  --kuno-accent: #a03020;
  --kuno-border: #e8e3dc;
  --kuno-placeholder: #d6d0c8;
  --kuno-page: 900px;
  --kuno-radius-card: 12px;
  --kuno-type-placeholder: 11px;
  --kuno-type-meta: 12px;
  --kuno-type-small: 13px;
  --kuno-type-control: 15px;
  --kuno-type-body: 17px;
  --kuno-type-subheading: 20px;
  --kuno-type-heading: 24px;
  --kuno-type-section: 32px;
  --kuno-type-title: 40px;
  --kuno-type-display: 80px;
  --kuno-tracking-uppercase: .1em;
}

html { color-scheme: light; scroll-behavior: smooth; }

body.kuno-recept-theme {
  margin: 0;
  background: var(--kuno-bg);
  color: var(--kuno-text);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.screen-reader-text {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--kuno-text);
}

.admin-bar .site-header { top: 32px; }

.site-header__inner {
  max-width: var(--kuno-page);
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-title {
  flex: 0 0 auto;
  color: var(--kuno-surface);
  font-family: "Fraunces", serif;
  font-size: var(--kuno-type-subheading);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
}

.category-nav { min-width: 0; }

.category-nav__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  list-style: none;
}

.category-nav a,
.result-reset {
  color: var(--kuno-border);
  font-family: "Barlow", sans-serif;
  font-size: var(--kuno-type-small);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--kuno-surface);
}

main:not(.recipe-main) {
  width: min(calc(100% - 64px), var(--kuno-page));
  margin: 0 auto;
}

.search-hero { padding: clamp(40px, calc(12vw - 32px), 88px) 0 32px; }

.search-heading {
  position: relative;
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: var(--kuno-type-title);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  word-spacing: .09em;
}

.search-title { text-align: center; }

.search-slot {
  height: 72px;
  position: relative;
  z-index: 20;
}

.search-form {
  width: 100%;
  min-height: 72px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--kuno-border);
  border-radius: var(--kuno-radius-card);
  background: var(--kuno-surface);
  transition: border-color 120ms ease, box-shadow 160ms ease;
}

.search-form:focus-within,
.search-form.is-open {
  border-color: var(--kuno-accent);
  box-shadow: 0 12px 30px rgba(26, 23, 20, .10), 0 2px 8px rgba(26, 23, 20, .06);
}

.search-field { position: relative; }

.search-input {
  width: 100%;
  height: 70px;
  padding: 0 76px 0 24px;
  display: block;
  border: 0;
  border-radius: calc(var(--kuno-radius-card) - 1px);
  outline: 0;
  appearance: none;
  background: var(--kuno-surface);
  color: var(--kuno-text);
  font-size: var(--kuno-type-body);
  font-weight: 500;
}

.search-input::-webkit-search-cancel-button { display: none; }
.search-input::placeholder { color: var(--kuno-text-dim); opacity: 1; }
.search-input:focus::placeholder { color: transparent; }

.search-submit {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 7px;
  right: 8px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.search-submit.is-visible { opacity: 1; pointer-events: auto; }

.search-icon {
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
}

.search-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 2px;
  border: 2px solid var(--kuno-accent);
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  width: 9px;
  height: 2px;
  position: absolute;
  top: 18px;
  left: 17px;
  border-radius: 2px;
  background: var(--kuno-accent);
  transform: rotate(45deg);
  transform-origin: left center;
}

.search-results {
  width: 100%;
  position: static;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--kuno-border);
  background: var(--kuno-surface);
}

.search-results[hidden] { display: none; }
.result-group { padding: 15px 20px 11px; border-bottom: 1px solid var(--kuno-border); }

.result-group__label {
  margin: 0 0 5px;
  color: var(--kuno-accent);
  font-size: var(--kuno-type-meta);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.result-row {
  width: 100%;
  min-height: 42px;
  padding: 7px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.result-row span:first-child { font-size: var(--kuno-type-body); font-weight: 500; }
.result-row span:last-child { color: var(--kuno-text-dim); font-size: var(--kuno-type-small); white-space: nowrap; }

.all-results {
  width: 100%;
  padding: 17px 20px;
  border: 0;
  background: var(--kuno-surface);
  color: var(--kuno-accent);
  cursor: pointer;
  font-size: var(--kuno-type-control);
  font-weight: 600;
  text-align: left;
}

.empty-result { margin: 0; padding: 20px; color: var(--kuno-text-mid); font-size: var(--kuno-type-control); }

.search-hero.is-results { padding-bottom: 0; }
.search-hero.is-results .search-heading { margin-bottom: 0; }
.search-hero.is-results .search-title { padding-inline: 120px; overflow-wrap: anywhere; }

.result-reset {
  min-height: 44px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  color: var(--kuno-accent);
  transform: translateY(-50%);
}

.tag-cloud {
  max-width: 700px;
  margin: 32px auto 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.search-tag-cloud { margin: 24px auto 0; }

.tag-cloud a {
  border-radius: 100px;
  background: #ede8e1;
  color: var(--kuno-text-mid);
  font-family: "Barlow", sans-serif;
  font-size: var(--kuno-type-small);
  font-weight: 400;
  line-height: 1.2;
}

.tag-cloud .tag-size-1 { padding: 5px 12px; }
.tag-cloud .tag-size-2 { padding: 7px 16px; }
.tag-cloud .tag-size-3 { padding: 9px 20px; }
.tag-cloud .tag-size-4 { padding: 11px 24px; }

.latest { padding: 48px 0 80px; }
.latest.is-results { padding-top: 32px; }

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 28px;
}

.recipe-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--kuno-radius-card);
  background: var(--kuno-surface);
  scroll-margin-top: 72px;
  text-align: center;
}

.recipe-card__primary { display: block; }

.recipe-card__primary::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
}

.recipe-card__image {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--kuno-radius-card) var(--kuno-radius-card) 0 0;
  background: var(--kuno-placeholder);
}

.recipe-card__image img { width: 100%; height: 100%; display: block; object-fit: cover; }

.recipe-card__image span {
  color: #a09890;
  font-size: var(--kuno-type-placeholder);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.recipe-card__title {
  margin: 18px 16px 9px;
  font-family: "Fraunces", serif;
  font-size: var(--kuno-type-heading);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
  word-spacing: .09em;
}

.recipe-card__meta,
.recipe-byline {
  color: var(--kuno-text-mid);
  font-family: "Barlow", sans-serif;
  font-size: var(--kuno-type-meta);
  font-weight: 400;
  letter-spacing: var(--kuno-tracking-uppercase);
  line-height: 1.5;
  text-transform: uppercase;
}

.recipe-card__meta { margin: 0 16px 18px; color: var(--kuno-text-meta-on-surface); }

.recipe-card__meta > *,
.recipe-byline > * {
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.recipe-card__meta a { position: relative; z-index: 2; color: var(--kuno-accent); }
.no-recipes { margin: 0; padding: 56px 0; color: var(--kuno-text-mid); font-size: var(--kuno-type-body); text-align: center; }

.pagination {
  margin: 72px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 18px);
}

.pagination .page-numbers {
  padding: 7px 2px 8px;
  position: relative;
  color: var(--kuno-text-mid);
  font-size: var(--kuno-type-small);
  font-weight: 500;
}

.pagination__page { min-width: 20px; text-align: center; }

.pagination__page::after {
  content: "";
  height: 3px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 3px 3px 0 0;
  background: var(--kuno-accent);
  opacity: 0;
}

.pagination__page.current { color: var(--kuno-text); }
.pagination__page.current::after { opacity: 1; }
.pagination__ellipsis { color: var(--kuno-text-dim); }

.pagination__direction {
  margin: 0 clamp(2px, 1vw, 8px);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Recipe page */
.recipe-main { width: 100%; margin: 0; }

.recipe-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--kuno-placeholder);
}

.recipe-hero img { width: 100%; height: 100%; display: block; object-fit: cover; }
.recipe-wrapper { margin: 0 auto; }

.recipe-header {
  padding: 16px 16px 14px;
  border-bottom: 1px solid var(--kuno-border);
  text-align: center;
}

.recipe-category {
  margin: 0 0 6px;
  font-size: var(--kuno-type-meta);
  letter-spacing: var(--kuno-tracking-uppercase);
  line-height: 1.5;
  text-transform: uppercase;
}

.recipe-category a,
.recipe-byline a { color: var(--kuno-accent); }

.recipe-header h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: var(--kuno-type-title);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  word-spacing: .09em;
}

.tab-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  border-bottom: 1px solid var(--kuno-border);
  background: var(--kuno-bg);
}

.tab-bar button {
  height: 72px;
  position: relative;
  flex: 1;
  border: 0;
  background: none;
  color: var(--kuno-text-dim);
  cursor: pointer;
  font-family: "Fraunces", serif;
  font-size: var(--kuno-type-body);
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
}

.tab-bar button::after {
  content: "";
  height: 3px;
  position: absolute;
  right: 12%;
  bottom: 0;
  left: 12%;
  border-radius: 3px 3px 0 0;
  background: var(--kuno-accent);
  opacity: 0;
}

.tab-bar button.active { color: var(--kuno-text); }
.tab-bar button.active::after { opacity: 1; }
.content-ing, .content-steps { background: var(--kuno-surface); }
.desktop-col-title, .about-title { display: none; }

.section-label {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--kuno-border);
  color: var(--kuno-accent);
  font-size: var(--kuno-type-meta);
  font-weight: 400;
  letter-spacing: var(--kuno-tracking-uppercase);
  line-height: 1.5;
  text-transform: uppercase;
}

.recipe-yield {
  margin: -12px 0 18px;
  color: var(--kuno-text-mid);
  font-size: var(--kuno-type-control);
  line-height: 1.5;
}

.ing-group, .steps-group { margin-bottom: 28px; }
.ing-group:last-child, .steps-group:last-child { margin-bottom: 0; }

.ing-item {
  padding: 11px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--kuno-border);
  cursor: pointer;
  transition: opacity 250ms ease;
  -webkit-tap-highlight-color: transparent;
}

.ing-item:last-child { border-bottom: 0; }
.ing-name, .ing-amount { font-size: var(--kuno-type-body); line-height: 1.4; }
.ing-amount { flex: 0 0 auto; color: var(--kuno-text-mid); white-space: nowrap; }
.ing-item.focus-active .ing-name { font-weight: 500; }
.steps-group { counter-reset: recipe-step; }

.step {
  padding: 16px 0;
  display: flex;
  gap: 14px;
  border-bottom: 1px solid var(--kuno-border);
  cursor: pointer;
  counter-increment: recipe-step;
  transition: opacity 250ms ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.step:last-child { border-bottom: 0; }

.step-num {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--kuno-accent);
  border-radius: 50%;
  color: var(--kuno-accent);
  font-size: var(--kuno-type-small);
}

.step-num::before { content: counter(recipe-step); }
.step-text { font-size: var(--kuno-type-body); line-height: 1.7; }
.step.focus-active .step-text { font-weight: 500; }

body.focused .step:not(.focus-active),
body.focused-ing .ing-item:not(.focus-active) { opacity: .2; }

.about-content > *:first-child { margin-top: 0; }
.about-content h2, .about-content h3, .about-content h4, .about-content h5, .about-content h6 {
  margin: 24px 0 12px;
  font-family: "Fraunces", serif;
  font-size: var(--kuno-type-subheading);
  font-weight: 500;
  letter-spacing: -.6px;
}

.about-content p,
.about-content li {
  color: var(--kuno-text-mid);
  font-size: var(--kuno-type-body);
  line-height: 1.7;
}

.about-content p { margin: 0 0 16px; }
.about-content ul, .about-content ol { margin: 0 0 16px; padding-left: 1.25em; }
.about-content figure { margin: 24px 0; }
.about-content img { display: block; border-radius: var(--kuno-radius-card); }
.about-content blockquote { margin: 24px 0; padding-left: 20px; border-left: 3px solid var(--kuno-accent); }
.about-content a { color: var(--kuno-accent); text-decoration: underline; text-underline-offset: 2px; }

.page-footer {
  padding: 24px 16px calc(32px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--kuno-border);
}

.recipe-tags { max-width: none; margin: 0; justify-content: flex-start; }
.recipe-byline { margin: 16px 0 0; }
.recipe-byline time { color: var(--kuno-text-mid); }
.recipe-byline a { text-transform: uppercase; }

.comments-section {
  padding: 40px 16px 60px;
  border-top: 1px solid var(--kuno-border);
}

.comments-title {
  margin: 0 0 32px;
  font-family: "Fraunces", serif;
  font-size: var(--kuno-type-heading);
  font-weight: 500;
  letter-spacing: -.03em;
}

.comment { margin-bottom: 28px; display: flex; gap: 14px; }

.comment-avatar {
  width: 36px;
  height: 36px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--kuno-border);
  color: var(--kuno-text-mid);
}

.comment-avatar img { width: 36px; height: 36px; display: block; }
.comment-body { flex: 1; }
.comment-meta { margin-bottom: 6px; color: var(--kuno-text-dim); font-size: var(--kuno-type-small); }
.comment-meta strong { margin-right: 8px; color: var(--kuno-text); font-weight: 600; }
.comment-text, .comment-text p { margin: 0; color: var(--kuno-text-mid); font-size: var(--kuno-type-control); line-height: 1.6; }

.comment-form-title {
  margin: 40px 0 20px;
  padding-top: 32px;
  border-top: 1px solid var(--kuno-border);
  font-family: "Fraunces", serif;
  font-size: var(--kuno-type-subheading);
  font-weight: 500;
  letter-spacing: -.03em;
}

.comment-form > p { margin: 0 0 16px; }
.comment-form label { margin-bottom: 6px; display: block; color: var(--kuno-text-mid); font-size: var(--kuno-type-meta); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--kuno-border);
  border-radius: 4px;
  outline: 0;
  background: var(--kuno-surface);
  color: var(--kuno-text);
  font-family: "Barlow", sans-serif;
  font-size: var(--kuno-type-control);
  font-weight: 400;
}

.comment-form input:focus, .comment-form textarea:focus { border-color: var(--kuno-accent); }
.comment-form textarea { min-height: 120px; resize: vertical; }

.comment-form .submit {
  margin-top: 8px;
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  background: var(--kuno-accent);
  color: var(--kuno-surface);
  cursor: pointer;
  font-size: var(--kuno-type-control);
  font-weight: 600;
}

.standard-page { width: min(calc(100% - 32px), 620px); margin: 0 auto; padding: 56px 0 80px; }
.standard-page h1 { margin: 0 0 32px; font-family: "Fraunces", serif; font-size: var(--kuno-type-title); }

@media (hover: hover) and (pointer: fine) {
  .category-nav a:hover { color: var(--kuno-surface); }
  .result-row:hover span:first-child,
  .recipe-card__primary:hover .recipe-card__title,
  .tag-cloud a:hover { color: var(--kuno-accent); }
  .all-results:hover,
  .result-reset:hover,
  .recipe-card__meta a:hover,
  .recipe-category a:hover,
  .recipe-byline a:hover { text-decoration: underline; text-underline-offset: 2px; }
  .pagination a:hover { color: var(--kuno-text); }
}

.recipe-card__primary:active .recipe-card__title,
.recipe-card__primary:focus-visible .recipe-card__title,
.result-row:active span:first-child,
.tag-cloud a:active { color: var(--kuno-accent); }

.recipe-card__meta a:active,
.recipe-card__meta a:focus-visible,
.all-results:active,
.recipe-category a:active,
.recipe-category a:focus-visible,
.recipe-byline a:active,
.recipe-byline a:focus-visible { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 899px) and (min-width: 700px) {
  .recipe-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 700px) {
  .site-header { padding: 0 32px; }
  .recipe-card { display: flex; flex-direction: column; }
  .recipe-card__primary { display: flow-root; }
  .recipe-card__meta { margin-top: auto; }

  .recipe-hero { max-width: var(--kuno-page); margin: 16px auto 0; }
  .recipe-wrapper { max-width: var(--kuno-page); padding: 0 32px 80px; }
  .recipe-header { margin-bottom: 8px; padding: 28px 0; border: 0; }
  .recipe-header h1 { font-size: var(--kuno-type-display); }
  .tab-bar { display: none; }

  .recipe-columns {
    margin-bottom: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 80px;
    border-radius: var(--kuno-radius-card);
    background: var(--kuno-surface);
  }

  .recipe-columns.is-single {
    width: fit-content;
    max-width: 100%;
    grid-template-columns: minmax(320px, 420px);
    margin-right: auto;
    margin-left: auto;
  }

  .content-ing, .content-steps, .content-about { display: block; padding: 0; }
  .content-about { width: 100%; max-width: 620px; margin: 0 auto; padding-top: 40px; }

  .desktop-col-title,
  .about-title {
    margin: 0 0 24px;
    display: block;
    font-family: "Fraunces", serif;
    font-size: var(--kuno-type-heading);
    font-weight: 500;
    letter-spacing: -.03em;
  }

  .page-footer { width: 100%; max-width: 620px; margin: 0 auto; padding: 32px 0; border-top: 0; }

  body.focused .content-ing,
  body.focused .content-about,
  body.focused-ing .content-steps,
  body.focused-ing .content-about { opacity: .2; transition: opacity 250ms ease; }

  .comments-section { max-width: 620px; margin: 0 auto; padding: 48px 0 80px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 699px) {
  .site-header, .admin-bar .site-header { position: relative; top: auto; }

  .site-header__inner {
    height: auto;
    min-height: 56px;
    flex-wrap: wrap;
  }

  .category-nav {
    width: calc(100% + 32px);
    order: 3;
    display: none;
    margin: 0 -16px;
    padding-bottom: 24px;
  }

  .category-nav.is-open { display: block; }
  .category-nav__list { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .category-nav a { padding: 14px 24px; display: block; text-align: left; }
  .menu-button { display: flex; }
  main:not(.recipe-main) { width: calc(100% - 32px); }
  .search-hero { padding: 40px 0 32px; }
  .search-heading { margin-bottom: 20px; }
  .search-title { font-size: var(--kuno-type-section); }
  .search-hero.is-results { padding-top: 27px; }

  .search-hero.is-results .search-heading {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 21px;
  }

  .search-hero.is-results .search-title { padding-inline: 0; }
  .result-reset { min-height: 0; position: static; align-self: flex-start; transform: none; }
  .search-input { padding: 0 64px 0 18px; }
  .search-submit { width: 52px; height: 52px; top: 9px; right: 6px; }
  .search-results { max-height: min(65vh, 540px); overflow-y: auto; }
  .result-row { align-items: flex-start; flex-direction: column; gap: 2px; }
  .result-row span:last-child { white-space: normal; }

  .latest { padding-top: 32px; padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  .latest.is-results { padding-top: 24px; }
  .recipe-grid { grid-template-columns: 1fr; gap: 12px; }

  .recipe-card {
    min-height: clamp(78px, 21.75vw, 96px);
    display: grid;
    grid-template-columns: clamp(104px, 29vw, 128px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 6px 0;
    overflow: hidden;
    border-radius: 8px;
    text-align: left;
  }

  .recipe-card__primary { display: contents; }
  .recipe-card__image { grid-column: 1; grid-row: 1 / span 2; align-self: stretch; aspect-ratio: auto; border-radius: 0; }
  .recipe-card__title { grid-column: 2; grid-row: 1; align-self: end; margin: 0; padding: 0 16px; font-size: var(--kuno-type-subheading); font-weight: 500; letter-spacing: -.6px; }
  .recipe-card__meta { grid-column: 2; grid-row: 2; align-self: start; margin: 0; padding: 0 16px; }

  .content-ing,
  .content-steps,
  .content-about {
    display: none;
    padding: 20px 16px calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .content-ing.active,
  .content-steps.active,
  .content-about.active { display: block; }
}
