/*
Theme Name: Yemek Arşivi
Theme URI: https://yemekarsiv.com/
Author: SRN Dijital
Author URI: https://www.srndijital.com/
Description: Yemek Arşivi için hazırlanmış, sade kullanımlı ve vintage karakterli özel tarif teması.
Version: 1.0.12
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 8.1
Text Domain: yemek-arsivi
*/

:root {
  --ya-cream: #f4f0ed;
  --ya-paper: #ffffff;
  --ya-ink: #16110f;
  --ya-brown: #4b2c24;
  --ya-brown-soft: #76584d;
  --ya-wine: #7b1e2b;
  --ya-wine-dark: #4d1119;
  --ya-line: rgba(47, 31, 24, 0.14);
  --ya-muted: #756861;
  --ya-shadow: 0 20px 60px rgba(45, 26, 17, 0.12);
  --ya-display: "Cormorant Garamond", Baskerville, Georgia, serif;
  --ya-sans: "Manrope", "Avenir Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ya-ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(123, 30, 43, 0.07), transparent 27rem),
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    var(--ya-cream);
  font-family: var(--ya-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

::selection {
  color: #fff;
  background: var(--ya-wine);
}

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

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: #fff;
  border-radius: 6px;
  background: var(--ya-wine);
}

.site-width {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.top-note {
  padding: 7px 24px;
  color: #fff;
  background: var(--ya-ink);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
}

.header-main {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--ya-line);
}

.header-tagline {
  margin: 0;
  color: var(--ya-wine);
  font-family: var(--ya-display);
  font-size: 18px;
  font-style: italic;
}

.site-branding {
  width: min(370px, 100%);
  display: block;
  justify-self: center;
  text-align: center;
}

.site-branding img {
  width: 342px;
  max-height: 165px;
  margin-inline: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text {
  display: block;
  font-family: var(--ya-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 0.9;
}

.brand-text small {
  display: block;
  margin-top: 12px;
  font-family: var(--ya-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--ya-line);
  border-radius: 999px;
  background: var(--ya-paper);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-link i {
  color: var(--ya-wine);
  font-size: 16px;
}

.header-icon-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ya-line);
  border-radius: 50%;
  color: var(--ya-ink);
  background: var(--ya-paper);
  font-size: 17px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-icon-link:hover,
.header-icon-link:focus-visible {
  color: #fff;
  border-color: var(--ya-wine);
  background: var(--ya-wine);
  transform: translateY(-2px);
}

.header-link:hover,
.header-link:focus-visible {
  color: var(--ya-wine);
  border-color: var(--ya-wine);
  transform: translateY(-2px);
}

.nav-wrap {
  position: relative;
  min-height: 58px;
  border-bottom: 1px solid var(--ya-line);
  box-shadow: 0 7px 24px rgba(45, 26, 17, 0.04);
}

.nav-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ya-wine) 0 48%, var(--ya-brown) 48% 78%, var(--ya-ink) 78% 100%);
  opacity: 0.88;
}

.mobile-drawer-header,
.mobile-menu-overlay {
  display: none;
}

.main-navigation {
  height: 58px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  display: flex;
  align-items: stretch;
}

.nav-trigger,
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border: 0;
  color: var(--ya-ink);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.nav-trigger::after,
.nav-link::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 10px;
  left: 18px;
  height: 2px;
  background: var(--ya-wine);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ya-wine);
}

.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-item:hover > .nav-trigger::after {
  transform: scaleX(1);
}

.nav-caret {
  font-size: 10px;
  transition: transform 180ms ease;
}

.nav-item:hover .nav-caret,
.nav-trigger[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  padding: 28px 0 34px;
  border-bottom: 4px solid var(--ya-wine);
  background: var(--ya-paper);
  box-shadow: var(--ya-shadow);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 36px;
}

.mega-column h3 {
  margin: 0 0 11px;
  color: var(--ya-wine);
  font-family: var(--ya-display);
  font-size: 27px;
  line-height: 1;
}

.mega-column ul {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-column a {
  color: #544740;
  font-size: 12px;
  font-weight: 650;
}

.mega-column h3 a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: var(--ya-wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.all-categories {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--ya-wine) !important;
  font-weight: 800 !important;
}

.mobile-menu-button {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--ya-line);
  border-radius: 50%;
  background: var(--ya-paper);
}

.mobile-menu-button span,
.mobile-menu-button::before,
.mobile-menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ya-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .mobile-menu-button span {
  opacity: 0;
}

.menu-open .mobile-menu-button::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .mobile-menu-button::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-main {
  overflow: hidden;
}

.hero {
  padding: 34px 0 72px;
}

.hero-frame {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  border: 1px solid var(--ya-line);
  border-radius: 3px 3px 72px 3px;
  background: var(--ya-paper);
  box-shadow: 0 18px 60px rgba(62, 38, 27, 0.09);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 58px 38px 58px 62px;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  top: -120px;
  left: -120px;
  border: 1px solid rgba(122, 31, 43, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(122, 31, 43, 0.025), 0 0 0 72px rgba(122, 31, 43, 0.02);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
  color: var(--ya-wine);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ya-wine);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--ya-display);
  font-size: clamp(55px, 5.1vw, 78px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--ya-wine);
  font-weight: 500;
}

.hero-lead {
  max-width: 550px;
  margin: 22px 0 26px;
  color: var(--ya-muted);
  font-family: var(--ya-display);
  font-size: 20px;
  line-height: 1.45;
}

.recipe-search {
  position: relative;
  width: min(650px, 100%);
  min-height: 69px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 155px auto;
  align-items: center;
  border: 1px solid rgba(62, 38, 27, 0.2);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(49, 30, 21, 0.1);
}

.recipe-search input,
.recipe-search select {
  min-width: 0;
  height: 45px;
  padding: 0 17px;
  border: 0;
  outline: none;
  color: var(--ya-ink);
  background: transparent;
}

.recipe-search input {
  padding-left: 23px;
  font-size: 14px;
}

.recipe-search input::placeholder {
  color: #7c706a;
}

.recipe-search select {
  border-left: 1px solid var(--ya-line);
  color: var(--ya-brown);
  font-size: 12px;
  font-weight: 750;
}

.recipe-search button {
  min-width: 118px;
  height: 53px;
  margin-right: 8px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--ya-wine);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.recipe-search button:hover,
.recipe-search button:focus-visible {
  background: var(--ya-wine-dark);
  transform: translateY(-1px);
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
  margin-top: 15px;
  color: var(--ya-muted);
  font-size: 11px;
}

.popular-searches strong {
  color: var(--ya-brown);
}

.popular-searches a {
  border-bottom: 1px solid rgba(122, 31, 43, 0.28);
  color: var(--ya-wine);
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 525px;
  background: #d8cac5;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) saturate(0.72) contrast(1.03);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(75, 44, 36, 0.24), transparent 34%),
    linear-gradient(0deg, rgba(77, 17, 25, 0.1), transparent 45%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(85, 19, 28, 0.93);
  box-shadow: 0 12px 40px rgba(48, 20, 18, 0.25);
  text-align: center;
  transform: rotate(-5deg);
}

.hero-badge span {
  font-family: var(--ya-display);
  font-size: 22px;
  line-height: 1.05;
}

.hero-badge small {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.content-section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-heading h2,
.editorial-copy h2,
.archive-header h1,
.single-title {
  margin: 0;
  font-family: var(--ya-display);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.section-heading p:not(.kicker) {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--ya-muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ya-wine);
  color: var(--ya-wine);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.category-tile {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  grid-column: span 3;
  border-radius: 2px 2px 32px 2px;
  background: var(--ya-brown);
}

.category-tile:first-child,
.category-tile:nth-child(6) {
  grid-column: span 6;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.7) contrast(1.03);
  transition: transform 450ms ease, filter 300ms ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(23, 14, 10, 0.84));
}

.category-tile-copy {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #fff;
}

.category-tile h3 {
  margin: 0;
  font-family: var(--ya-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.category-tile span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.category-tile:hover img,
.category-tile:focus-visible img {
  filter: sepia(0.08) saturate(0.86) contrast(1.04);
  transform: scale(1.045);
}

.menu-section {
  position: relative;
  padding: 74px 0 82px;
  color: #fff;
  background:
    radial-gradient(circle at 83% 0%, rgba(199, 155, 91, 0.18), transparent 28rem),
    var(--ya-wine-dark);
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.menu-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: start;
}

.menu-intro .kicker {
  color: #ffffff;
  opacity: 0.84;
}

.menu-intro .kicker::before {
  background: #ffffff;
}

.menu-intro h2 {
  margin: 0;
  font-family: var(--ya-display);
  font-size: clamp(50px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.88;
}

.menu-intro-copy > p {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--ya-display);
  font-size: 19px;
}

.daily-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.menu-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.06);
}

.menu-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  filter: sepia(0.24) saturate(0.64) contrast(1.05);
  transition: transform 350ms ease;
}

.menu-card-copy {
  padding: 20px;
}

.menu-card small {
  color: #ffffff;
  opacity: 0.74;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 7px 0 0;
  font-family: var(--ya-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.04;
}

.menu-card:hover img,
.menu-card:focus-within img {
  transform: scale(1.04);
}

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

.recipe-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ya-line);
  border-radius: 2px 2px 26px 2px;
  background: var(--ya-paper);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.recipe-card:hover,
.recipe-card:focus-within {
  box-shadow: var(--ya-shadow);
  transform: translateY(-5px);
}

.recipe-card-image {
  aspect-ratio: 1.38;
  overflow: hidden;
  display: block;
  background: #ded3ce;
}

.recipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.14) saturate(0.78) contrast(1.02);
  transition: transform 350ms ease;
}

.recipe-card:hover .recipe-card-image img {
  transform: scale(1.04);
}

.recipe-card-content {
  padding: 22px 23px 24px;
}

.recipe-category {
  color: var(--ya-wine);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recipe-card h3 {
  margin: 7px 0 10px;
  font-family: var(--ya-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.03;
}

.recipe-card p {
  margin: 0;
  color: var(--ya-muted);
  font-size: 12px;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--ya-line);
  color: var(--ya-brown);
  font-size: 10px;
  font-weight: 750;
}

.recipe-meta span::before {
  content: "•";
  margin-right: 7px;
  color: var(--ya-wine);
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  padding-bottom: 80px;
}

.editorial-visual {
  min-height: 450px;
  overflow: hidden;
  border-radius: 2px 2px 50px 2px;
}

.editorial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) saturate(0.7) contrast(1.04);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  border: 1px solid var(--ya-line);
  background: var(--ya-paper);
}

.editorial-copy > p:not(.kicker) {
  margin: 21px 0 26px;
  color: var(--ya-muted);
  font-family: var(--ya-display);
  font-size: 20px;
}

.tip-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 27px;
  list-style: none;
}

.tip-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: #5f514a;
  font-size: 13px;
}

.tip-list b {
  width: 25px;
  height: 25px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ya-wine);
  font-size: 10px;
}

.archive-shell,
.single-shell {
  padding: 62px 0 88px;
}

.archive-header {
  max-width: 750px;
  margin-bottom: 32px;
}

.archive-header .archive-description,
.archive-header > p {
  margin-top: 14px;
  color: var(--ya-muted);
}

.archive-search {
  margin: 25px 0 40px;
}

.pagination {
  margin-top: 40px;
}

.pagination .nav-links {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.pagination .page-numbers {
  min-width: 41px;
  height: 41px;
  display: grid;
  place-content: center;
  border: 1px solid var(--ya-line);
  background: var(--ya-paper);
  font-size: 12px;
  font-weight: 800;
}

.pagination .current,
.pagination a:hover {
  color: #fff;
  background: var(--ya-wine);
}

.single-article {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.recipe-breadcrumb {
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 22px;
  color: var(--ya-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.recipe-breadcrumb a:hover,
.recipe-breadcrumb a:focus-visible {
  color: var(--ya-wine);
}

.recipe-breadcrumb [aria-current="page"] {
  max-width: 280px;
  overflow: hidden;
  color: var(--ya-brown);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-header {
  max-width: 900px;
  margin-bottom: 28px;
  margin-inline: auto;
  text-align: center;
}

.single-header .recipe-category {
  display: block;
  margin-bottom: 12px;
}

.single-title {
  font-size: clamp(48px, 6vw, 78px);
}

.single-excerpt {
  max-width: 680px;
  margin: 19px auto 0;
  color: var(--ya-muted);
  font-family: var(--ya-display);
  font-size: 21px;
}

.single-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--ya-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.single-byline a {
  color: var(--ya-wine);
}

.single-cover {
  max-height: 640px;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 2px 2px 50px 2px;
  background: #ded3ce;
}

.single-cover img {
  width: 100%;
  height: min(640px, 66vw);
  object-fit: cover;
  filter: sepia(0.12) saturate(0.82) contrast(1.02);
}

.recipe-detail-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 46px;
  border: 1px solid var(--ya-line);
  background: var(--ya-paper);
  box-shadow: 0 12px 34px rgba(45, 26, 17, 0.06);
}

.recipe-detail {
  position: relative;
  padding: 23px 20px;
  border-right: 1px solid var(--ya-line);
  text-align: center;
}

.recipe-detail:last-child {
  border-right: 0;
}

.recipe-detail small {
  display: block;
  color: var(--ya-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.recipe-detail strong {
  display: block;
  margin-top: 5px;
  color: var(--ya-brown);
  font-family: var(--ya-display);
  font-size: 21px;
}

.single-content-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 56px;
  align-items: start;
}

.article-sidebar {
  min-width: 0;
}

.article-sidebar-inner {
  position: sticky;
  top: 30px;
  padding: 23px 21px 20px;
  border: 1px solid var(--ya-line);
  border-top: 4px solid var(--ya-wine);
  border-radius: 0 0 18px 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(45, 26, 17, 0.06);
}

.article-sidebar-label,
.comments-heading > div > span,
.recipe-signoff span {
  color: var(--ya-wine);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-sidebar h2 {
  margin: 5px 0 16px;
  font-family: var(--ya-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.article-toc-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: toc;
}

.article-toc-list li {
  counter-increment: toc;
  border-top: 1px solid var(--ya-line);
}

.article-toc-list a {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 7px;
  padding: 10px 0;
  color: #554842;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.article-toc-list a::before {
  content: "0" counter(toc);
  color: var(--ya-wine);
  font-size: 9px;
  font-weight: 850;
}

.article-toc-list a:hover,
.article-toc-list a:focus-visible {
  color: var(--ya-wine);
}

.article-toc-list .toc-subitem a {
  padding-left: 10px;
  color: var(--ya-muted);
  font-weight: 600;
}

.article-toc-list .toc-empty {
  padding: 10px 0;
  color: var(--ya-muted);
  font-size: 10px;
}

.article-sidebar-inner.is-empty .article-toc-list {
  display: none;
}

.article-comment-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ya-line);
  color: var(--ya-wine);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-reading-column {
  min-width: 0;
}

.entry-content {
  color: #443933;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.85;
}

.entry-content > * {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > p:first-child {
  color: #352b27;
  font-family: var(--ya-display);
  font-size: 24px;
  line-height: 1.55;
}

.entry-content > p:first-child::first-letter {
  float: left;
  margin: 9px 9px 0 0;
  color: var(--ya-wine);
  font-family: var(--ya-display);
  font-size: 68px;
  font-weight: 600;
  line-height: 0.72;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 42px;
  margin-bottom: 16px;
  color: var(--ya-ink);
  font-family: var(--ya-display);
  font-weight: 600;
  line-height: 1.08;
}

.entry-content h2 {
  font-size: 42px;
}

.entry-content h3 {
  font-size: 34px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
}

.entry-content li {
  margin-bottom: 8px;
}

.entry-content .wp-block-image,
.entry-content .wp-block-group,
.entry-content .wp-block-cover,
.entry-content .alignwide {
  max-width: 900px;
}

.entry-content blockquote {
  position: relative;
  padding: 30px 32px 30px 42px;
  border: 0;
  border-left: 5px solid var(--ya-wine);
  border-radius: 0 0 18px 0;
  color: var(--ya-brown);
  background: linear-gradient(135deg, rgba(123, 30, 43, 0.07), rgba(75, 44, 36, 0.035));
  font-family: var(--ya-display);
  font-size: 24px;
  line-height: 1.45;
}

.entry-content .ingredients-box,
.entry-content .steps-box {
  margin-top: 36px;
  margin-bottom: 30px;
  padding: 34px 38px;
  border: 1px solid var(--ya-line);
  border-radius: 2px 2px 28px 2px;
  background: var(--ya-paper);
  box-shadow: 0 18px 45px rgba(45, 26, 17, 0.07);
}

.entry-content .ingredients-box {
  border-top: 4px solid var(--ya-brown);
}

.entry-content .steps-box {
  border-top: 4px solid var(--ya-wine);
}

.entry-content .ingredients-box h2:first-child,
.entry-content .steps-box h2:first-child {
  margin-top: 0;
}

.entry-content .ingredients-box ul {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.entry-content .ingredients-box li {
  position: relative;
  padding: 11px 0 11px 25px;
  margin: 0;
  border-bottom: 1px solid var(--ya-line);
}

.entry-content .ingredients-box li:last-child {
  border-bottom: 0;
}

.entry-content .ingredients-box li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ya-wine);
  border-radius: 50%;
}

.entry-content .steps-box ol {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  counter-reset: recipe-step;
}

.entry-content .steps-box li {
  position: relative;
  min-height: 52px;
  padding: 0 0 22px 60px;
  margin: 0 0 22px;
  border-bottom: 1px solid var(--ya-line);
  counter-increment: recipe-step;
}

.entry-content .steps-box li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.entry-content .steps-box li::before {
  content: counter(recipe-step);
  position: absolute;
  top: -3px;
  left: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ya-wine);
  font-family: var(--ya-sans);
  font-size: 12px;
  font-weight: 850;
}

.recipe-signoff {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin-top: 40px;
  border: 1px solid var(--ya-line);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(75, 44, 36, 0.08) 49.7% 50.3%, transparent 50.3%),
    var(--ya-paper);
  text-align: center;
}

.recipe-signoff strong {
  display: block;
  margin-top: 7px;
  color: var(--ya-brown);
  font-family: var(--ya-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.post-navigation {
  margin: 45px 0;
  padding-top: 28px;
  border-top: 1px solid var(--ya-line);
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.post-navigation a {
  display: block;
  padding: 18px;
  border: 1px solid var(--ya-line);
  background: var(--ya-paper);
  font-family: var(--ya-display);
  font-size: 20px;
  line-height: 1.2;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.post-navigation a:hover,
.post-navigation a:focus-visible {
  color: var(--ya-wine);
  border-color: rgba(123, 30, 43, 0.45);
  transform: translateY(-2px);
}

.comments-area {
  margin-top: 55px;
  padding: 0;
  border: 1px solid var(--ya-line);
  border-radius: 2px 2px 30px 2px;
  background: var(--ya-paper);
  box-shadow: 0 20px 55px rgba(45, 26, 17, 0.08);
}

.comments-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 34px 27px;
  border-bottom: 1px solid var(--ya-line);
}

.comments-heading p {
  max-width: 470px;
  margin: 8px 0 0;
  color: var(--ya-muted);
  font-size: 12px;
}

.comment-count-badge {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(123, 30, 43, 0.22);
  border-radius: 50%;
  color: var(--ya-wine);
  background: rgba(123, 30, 43, 0.05);
  font-family: var(--ya-display);
  font-size: 25px;
  font-weight: 600;
}

.comments-title,
.comment-reply-title {
  margin: 4px 0 0;
  font-family: var(--ya-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.comment-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comment-list .comment-body {
  position: relative;
  min-height: 92px;
  padding: 26px 32px 26px 98px;
  border-bottom: 1px solid var(--ya-line);
}

.comment-meta {
  font-size: 12px;
}

.comment-author .avatar {
  position: absolute;
  top: 27px;
  left: 32px;
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ya-line);
}

.comment-author .fn {
  color: var(--ya-brown);
  font-family: var(--ya-display);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.comment-author .says {
  display: none;
}

.comment-metadata {
  margin-top: 1px;
  color: var(--ya-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comment-content p {
  margin: 14px 0 0;
  color: #544740;
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.7;
}

.comment-list .reply {
  margin-top: 13px;
}

.comment-list .reply a {
  display: inline-flex;
  padding: 5px 10px;
  border: 1px solid var(--ya-line);
  border-radius: 999px;
  color: var(--ya-wine);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comment-list .children {
  padding: 0 0 0 34px;
  margin: 0;
  border-left: 3px solid rgba(123, 30, 43, 0.1);
  list-style: none;
}

.bypostauthor > .comment-body {
  background: rgba(123, 30, 43, 0.025);
}

.comment-form-panel {
  padding: 32px 34px 36px;
  border-radius: 0 0 29px 0;
  background: var(--ya-cream);
}

.comment-membership-note {
  margin: 0 0 22px;
  padding: 12px 15px;
  border-left: 3px solid var(--ya-wine);
  color: #5f514a;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.comment-membership-note strong {
  color: var(--ya-wine);
}

.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.comment-form > p {
  margin: 0;
}

.comment-form-comment,
.comment-notes,
.comment-form-cookies-consent,
.form-submit,
.logged-in-as {
  grid-column: 1 / -1;
}

.comment-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--ya-brown);
  font-size: 11px;
  font-weight: 800;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--ya-line);
  border-radius: 4px;
  background: #fff;
  outline: none;
}

.comment-form textarea {
  min-height: 160px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--ya-wine);
  box-shadow: 0 0 0 3px rgba(122, 31, 43, 0.08);
}

.submit,
.button-primary {
  min-height: 48px;
  padding: 0 23px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--ya-wine);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 9px 24px rgba(77, 17, 25, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.submit:hover,
.submit:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ya-wine-dark);
  transform: translateY(-2px);
}

.no-results {
  padding: 45px;
  border: 1px solid var(--ya-line);
  background: var(--ya-paper);
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ya-ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 60px;
  padding: 62px 0 45px;
}

.footer-brand {
  display: inline-block;
  color: #fff;
  font-family: var(--ya-display);
  font-size: 40px;
  line-height: 1;
}

.footer-brand span {
  display: block;
  margin-top: 9px;
  color: #cbaeb0;
  font-family: var(--ya-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-about p {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--ya-display);
  font-size: 18px;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column a {
  font-size: 12px;
}

.footer-column .footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-column .footer-social-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 19px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-column .footer-social-link:hover,
.footer-column .footer-social-link:focus-visible {
  color: #fff;
  border-color: var(--ya-wine);
  background: var(--ya-wine);
  transform: translateY(-3px);
}

.footer-column .social-instagram:hover,
.footer-column .social-instagram:focus-visible {
  border-color: #d94678;
  background: #d94678;
}

.footer-column .social-whatsapp:hover,
.footer-column .social-whatsapp:focus-visible {
  border-color: #1f9d55;
  background: #1f9d55;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-bottom {
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-credit {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #fff;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 49px;
  height: 49px;
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: var(--ya-wine);
  box-shadow: 0 10px 28px rgba(63, 20, 24, 0.28);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top span {
  display: block;
  font-size: 19px;
  line-height: 1;
}

@media (max-width: 1050px) {
  .header-tagline,
  .header-tools {
    display: none;
  }

  .header-main {
    min-height: 142px;
    grid-template-columns: 1fr auto 1fr;
  }

  .site-branding {
    width: min(300px, 100%);
    grid-column: 2;
  }

  .site-branding img {
    width: 282px;
    max-height: 138px;
  }

  .hero-frame {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero-content {
    padding-left: 40px;
  }

  .recipe-search {
    grid-template-columns: 1fr auto;
    row-gap: 0;
  }

  .recipe-search select {
    height: 44px;
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--ya-line);
    border-left: 0;
  }

  .mega-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-width {
    width: min(100% - 30px, 680px);
  }

  .top-note {
    padding: 6px 12px;
    font-size: 9px;
  }

  .header-main {
    min-height: 124px;
    grid-template-columns: 48px 1fr 48px;
    gap: 10px;
  }

  .site-branding img {
    width: 220px;
    max-height: 116px;
  }

  .brand-text {
    font-size: 32px;
  }

  .mobile-menu-button {
    display: block;
    justify-self: start;
  }

  .header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-column: 3;
    width: 43px;
  }

  .header-tools .header-link,
  .header-tools .header-social-link {
    display: none;
  }

  .header-tools .header-search-link {
    display: inline-flex;
  }

  .nav-wrap {
    position: fixed;
    z-index: 80;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(92vw, 430px);
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 20px 32px;
    background: var(--ya-paper);
    box-shadow: 20px 0 60px rgba(34, 18, 12, 0.2);
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
    isolation: isolate;
    -webkit-overflow-scrolling: touch;
  }

  .menu-open .nav-wrap {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-wrap::after {
    display: none;
  }

  .mobile-menu-overlay {
    position: fixed;
    z-index: 75;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(22, 17, 15, 0.58);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer-header {
    position: sticky;
    z-index: 50;
    top: 0;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--ya-line);
    background: var(--ya-paper);
    box-shadow: 0 8px 18px rgba(45, 26, 17, 0.07);
  }

  .mobile-drawer-title {
    display: grid;
    gap: 1px;
    line-height: 1;
  }

  .mobile-drawer-title strong {
    color: var(--ya-ink);
    font-family: var(--ya-display);
    font-size: 27px;
    font-weight: 650;
  }

  .mobile-drawer-title small {
    color: var(--ya-wine);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    border: 1px solid var(--ya-line);
    border-radius: 50%;
    color: var(--ya-ink);
    background: var(--ya-cream);
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:focus-visible {
    color: #fff;
    border-color: var(--ya-wine);
    background: var(--ya-wine);
  }

  .main-navigation {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    padding-top: 9px;
  }

  .nav-list {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    display: block;
  }

  .nav-item-has-mega {
    display: flex;
    flex-direction: column;
  }

  .nav-trigger,
  .nav-link {
    width: 100%;
  }

  .nav-trigger,
  .nav-link {
    min-height: 58px;
    justify-content: center;
    padding: 0 48px;
    border-bottom: 1px solid var(--ya-line);
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.075em;
  }

  .nav-trigger .nav-caret {
    position: absolute;
    right: 18px;
    font-size: 15px;
  }

  .nav-trigger::after,
  .nav-link::after {
    display: none;
  }

  .mega-menu {
    position: static;
    z-index: auto;
    width: 100%;
    display: none;
    visibility: visible;
    padding: 8px 0 18px;
    border-bottom: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-item.is-open .mega-menu {
    display: block;
  }

  .mega-grid.site-width {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }

  .mega-column {
    padding: 19px 7px;
    border-bottom: 1px solid var(--ya-line);
    text-align: center;
  }

  .mega-column:last-child {
    border-bottom: 0;
  }

  .mega-column h3 {
    margin-bottom: 13px;
    font-size: 28px;
    line-height: 1.1;
  }

  .mega-column ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .mega-column ul a {
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(123, 30, 43, 0.12);
    border-radius: 999px;
    background: var(--ya-cream);
    font-size: 13px;
    line-height: 1.2;
  }

  .mega-column h3 a {
    min-height: 48px;
    padding: 6px 8px;
  }

  .mega-column p {
    margin: 0 auto 8px;
    text-align: center;
    font-size: 13px;
  }

  .mega-column .all-categories {
    justify-content: center;
    font-size: 13px;
  }

  .hero {
    padding: 20px 0 54px;
  }

  .hero-frame {
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 2px 2px 42px 2px;
  }

  .hero-content {
    padding: 44px 28px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-badge {
    width: 122px;
    height: 122px;
  }

  .category-tile,
  .category-tile:first-child,
  .category-tile:nth-child(6) {
    grid-column: span 6;
  }

  .daily-menu-grid,
  .recipes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .daily-menu-grid .menu-card:last-child,
  .recipes-grid .recipe-card:last-child {
    grid-column: 1 / -1;
  }

  .editorial-section {
    grid-template-columns: 1fr;
  }

  .editorial-visual {
    min-height: 380px;
  }

  .single-content-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-sidebar-inner {
    position: static;
  }

  .article-toc-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 22px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-width {
    width: calc(100% - 22px);
  }

  .nav-wrap {
    width: min(94vw, 390px);
    padding-inline: 16px;
  }

  .mega-column h3 {
    font-size: 27px;
  }

  .hero-content {
    padding: 38px 20px 33px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .recipe-search {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 8px;
  }

  .recipe-search input {
    height: 48px;
    padding-left: 12px;
  }

  .recipe-search select {
    width: 100%;
    height: 48px;
    padding-inline: 12px;
  }

  .recipe-search button {
    width: 100%;
    margin: 0;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-badge {
    right: 15px;
    bottom: 15px;
  }

  .content-section {
    padding: 48px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link {
    margin-top: 20px;
  }

  .category-showcase {
    gap: 11px;
  }

  .category-tile,
  .category-tile:first-child,
  .category-tile:nth-child(6) {
    min-height: 225px;
    grid-column: 1 / -1;
  }

  .menu-section {
    padding: 60px 0;
  }

  .daily-menu-grid,
  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .daily-menu-grid .menu-card:last-child,
  .recipes-grid .recipe-card:last-child {
    grid-column: auto;
  }

  .editorial-copy {
    padding: 34px 25px;
  }

  .recipe-detail-bar {
    grid-template-columns: 1fr 1fr;
  }

  .recipe-detail:nth-child(2) {
    border-right: 0;
  }

  .recipe-detail:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ya-line);
  }

  .single-shell,
  .archive-shell {
    padding-top: 42px;
  }

  .single-title {
    font-size: 48px;
  }

  .recipe-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 18px;
  }

  .single-byline {
    flex-wrap: wrap;
  }

  .article-toc-list {
    grid-template-columns: 1fr;
  }

  .article-sidebar-inner {
    padding: 20px 18px;
  }

  .entry-content {
    font-size: 16px;
  }

  .entry-content > p:first-child {
    font-size: 21px;
  }

  .entry-content > p:first-child::first-letter {
    font-size: 58px;
  }

  .entry-content .ingredients-box,
  .entry-content .steps-box {
    padding: 25px 21px;
  }

  .entry-content .steps-box li {
    padding-left: 52px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .comments-area {
    padding: 0;
  }

  .comments-heading {
    padding: 25px 20px 22px;
  }

  .comments-title,
  .comment-reply-title {
    font-size: 32px;
  }

  .comment-count-badge {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 21px;
  }

  .comment-list .comment-body {
    padding: 23px 18px 23px 78px;
  }

  .comment-author .avatar {
    top: 24px;
    left: 18px;
    width: 44px;
    height: 44px;
  }

  .comment-list .children {
    padding-left: 15px;
  }

  .comment-form-panel {
    padding: 25px 18px 28px;
  }

  .comment-form {
    grid-template-columns: 1fr;
  }

  .comment-form > p {
    grid-column: 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .footer-bottom-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-credit {
    padding-left: 0;
    border-left: 0;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
