/* ==========================================================================
   everyday.ch – Redesign «Frisch»
   ========================================================================== */

@font-face {
  font-family: "Albert Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/albert-sans-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/albert-sans-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Albert Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/albert-sans-latin-ext-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/albert-sans-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #FDFDFB;
  --ink: #1F241A;
  --text-soft: #4B4A40;
  --muted: #84806F;
  --primary: #4A7310;
  --primary-hover: #33520A;
  --logo-green: #5C8A14;
  --logo-grey: #6E6754;
  --green-tint: #EFF4E3;
  --green-tint-hover: #E2ECC9;
  --green-tint-border: #DFE7C8;
  --orange-tint: #FCEFD8;
  --orange-tint-hover: #F8E2B8;
  --orange-ink: #8A5A0B;
  --accent-red: #DE4D2A;
  --border: #ECEAE2;
  --border-input: #D5D9C4;
  --card-hover-border: #B8CB8B;
  --footer-bg: #F7F7F2;
  --neutral-tile: #F4F3ED;

  --container: 1160px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-gap: clamp(32px, 5vw, 52px);
  --shadow-card: 0 6px 18px rgba(31, 36, 26, 0.08);
  --shadow-hero: 0 12px 32px rgba(31, 36, 26, 0.14);
  --shadow-soft: 0 12px 32px rgba(31, 36, 26, 0.06);
  --ease: 150ms ease;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: "Albert Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); text-decoration: underline; }

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

h1, h2, h3 { margin: 0; text-wrap: pretty; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { top: 12px; color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.main {
  flex: 1;
  padding-top: clamp(20px, 4vw, 44px);
  padding-bottom: clamp(32px, 5vw, 64px);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 253, 251, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand img { height: 38px; width: auto; display: block; }
.brand__word {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.brand__word b { color: var(--logo-green); font-weight: 800; }
.brand__word span { color: var(--logo-grey); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-pill {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.3;
  transition: background var(--ease), color var(--ease);
}
.nav-pill:hover { background: var(--green-tint); color: var(--primary-hover); text-decoration: none; }
.nav-pill[aria-current="page"] { background: var(--green-tint); color: var(--primary-hover); }

.badge {
  display: inline-block;
  min-width: 20px;
  background: var(--accent-red);
  color: #fff;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  opacity: 0.35;
}
.badge.has-items { opacity: 1; }

.btn-surprise {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  background: var(--orange-tint);
  color: var(--orange-ink);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  transition: background var(--ease);
}
.btn-surprise:hover { background: var(--orange-tint-hover); color: var(--orange-ink); text-decoration: none; }
.icon-dice { flex: none; display: block; }

.header-search {
  position: relative;
  flex: 1 1 160px;
  max-width: 240px;
  margin: 0;
}
.header-search input {
  width: 100%;
  padding: 8px 38px 8px 15px;
  font-size: 14px;
  border: 1.5px solid var(--border-input);
  border-radius: 999px;
  background: #fff;
  outline: none;
  transition: border-color var(--ease);
}
.header-search input:focus { border-color: var(--primary); }
.header-search input::-webkit-search-cancel-button { display: none; }
.header-search button {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--primary-hover);
  cursor: pointer;
  transition: background var(--ease);
}
.header-search button:hover { background: var(--green-tint-hover); }

/* Zu wenig Platz neben der Navigation: Suche in eine eigene Zeile. */
@media (max-width: 1100px) {
  .header-search { order: 3; flex-basis: 100%; max-width: none; }
}

@media (max-width: 560px) {
  .site-header__inner { gap: 8px; }
  .site-nav { gap: 4px; }
  .nav-pill { padding: 8px 10px; font-size: 13.5px; }
  .nav-pill--home { display: none; }
  .btn-surprise { padding: 8px 12px; font-size: 13.5px; }
}

/* --------------------------------------------------------------------------
   Buttons & Chips
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), box-shadow var(--ease), color var(--ease);
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-hover); color: #fff; }

.btn--outline { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--border-input); }
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--primary); color: var(--ink); }

.btn--small { padding: 10px 18px; font-size: 14px; }

.btn--fav.is-active { background: var(--accent-red); color: #fff; box-shadow: none; }

.chip {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.3;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--border-input);
  transition: box-shadow var(--ease), background var(--ease);
}
.chip:hover { box-shadow: inset 0 0 0 1.5px var(--primary); color: var(--ink); text-decoration: none; }
.chip.is-active { background: var(--primary); color: #fff; box-shadow: none; }
.chip--warm.is-active { background: var(--accent-red); }

.tag {
  display: inline-block;
  background: var(--green-tint);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
}
.tag:hover { background: var(--green-tint-hover); text-decoration: none; }

/* --------------------------------------------------------------------------
   Typografie-Bausteine
   -------------------------------------------------------------------------- */

.page-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.section { margin-top: var(--section-gap); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.section-title {
  font-size: clamp(21px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.muted { color: var(--muted); }
.small { font-size: 14px; }

.eyebrow {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crumbs {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--primary-hover); }

/* --------------------------------------------------------------------------
   Startseite
   -------------------------------------------------------------------------- */

.hero {
  background: var(--green-tint);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.hero__title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 14px;
}

.hero__intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 24px;
  max-width: 46ch;
}

.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero__feature {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  color: var(--ink);
}
.hero__feature:hover { text-decoration: none; color: var(--ink); }
.hero__feature img,
.hero__feature .tile {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.hero__feature .tile { font-size: 96px; }

.hero__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  background: rgba(253, 253, 251, 0.95);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}
.hero__caption small {
  display: block;
  font-weight: 600;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(190px, 100%), 1fr));
  gap: 14px;
}

.category-tile {
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
  transition: filter var(--ease);
}
.category-tile:hover { text-decoration: none; filter: brightness(0.97); color: var(--ink); }
.category-tile__name { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; line-height: 1.3; }
.category-tile__count { font-size: 13px; opacity: 0.75; }

.tint-bg-0 { background: #EFF4E3; }
.tint-bg-1 { background: #FCEFD8; }
.tint-bg-2 { background: #E9F0EF; }
.tint-bg-3 { background: #F4EDE7; }
.tint-bg-4 { background: #F0EFE4; }

.welcome {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
.welcome__text { max-width: 70ch; color: var(--text-soft); font-size: 16px; }
.welcome__text p { margin: 0 0 12px; }
.welcome__signature { margin-top: 4px; }
.welcome__signature img { display: block; height: 44px; width: auto; }

/* --------------------------------------------------------------------------
   Rezeptkarten
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.card-grid--season { grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr)); gap: 14px; }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.card:hover { border-color: var(--card-hover-border); box-shadow: var(--shadow-card); }

.card__link {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__link:hover { text-decoration: none; color: var(--ink); }

.card__img,
.card .tile {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  background: var(--neutral-tile);
}

.card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card__title { font-weight: 700; font-size: 15px; line-height: 1.3; }
.card__meta { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
}
.tint-0 { background: #EFF4E3; color: #4A7310; }
.tint-1 { background: #FCEFD8; color: #8A5A0B; }
.tint-2 { background: #E9F0EF; color: #3E6B62; }
.tint-3 { background: #F4EDE7; color: #8A6248; }

.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  background: rgba(253, 253, 251, 0.92);
  color: #B8B4A2;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.fav-btn:hover { color: var(--accent-red); }
.fav-btn.is-active { background: var(--accent-red); color: #fff; }
.fav-btn:active { transform: scale(0.92); }

/* --------------------------------------------------------------------------
   Rezepte entdecken
   -------------------------------------------------------------------------- */

.filter-bar {
  position: sticky;
  top: var(--header-height, 63px);
  z-index: 30;
  background: var(--bg);
  padding: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search {
  position: relative;
  width: 100%;
  max-width: 560px;
}
.search input {
  width: 100%;
  padding: 13px 104px 13px 18px;
  font-size: 16px;
  border: 1.5px solid var(--border-input);
  border-radius: 999px;
  background: #fff;
  outline: none;
  transition: border-color var(--ease);
}
.search input:focus { border-color: var(--primary); }
.search button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.search button:hover { background: var(--green-tint-hover); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.result-info { margin: 10px 0 16px; font-size: 14px; color: var(--muted); }

.empty-state {
  background: var(--neutral-tile);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
}
.empty-state p { margin: 0 0 8px; }
.empty-state__title { font-weight: 700; font-size: 16px; }

.pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}
.pagination a,
.pagination span {
  display: inline-block;
  min-width: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--border-input);
  background: #fff;
}
.pagination a:hover { box-shadow: inset 0 0 0 1.5px var(--primary); text-decoration: none; }
.pagination [aria-current="page"] { background: var(--primary); color: #fff; box-shadow: none; }
.pagination .gap { box-shadow: none; background: none; min-width: 0; padding: 8px 2px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Rezept-Detail
   -------------------------------------------------------------------------- */

.recipe { max-width: 900px; }

.recipe__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.recipe__title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 8px;
}

.recipe__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.recipe__actions { display: flex; gap: 8px; flex-wrap: wrap; }

.recipe__meta { margin: 12px 0 20px; color: var(--muted); font-size: 14.5px; }

.recipe__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  background: var(--neutral-tile);
}

.recipe__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(20px, 3vw, 30px);
  align-items: start;
}

.ingredients-card {
  background: var(--green-tint);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 26px);
}

.block-title { font-size: 19px; font-weight: 800; margin: 0 0 12px; }
.block-title__note { font-size: 15px; font-weight: 400; letter-spacing: 0; }

.ingredients { list-style: none; margin: 0; padding: 0; }
.ingredients li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--green-tint-border);
  font-size: 15px;
  line-height: 1.45;
}
.ingredients__qty {
  flex: none;
  min-width: 82px;
  color: var(--primary);
  font-weight: 800;
}
.ingredients .ingredients__heading {
  display: block;
  padding-top: 16px;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.ingredients li:first-child.ingredients__heading { padding-top: 8px; }

.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.steps li { display: flex; gap: 12px; align-items: flex-start; counter-increment: step; }
.steps li::before {
  content: counter(step);
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--orange-tint);
  color: var(--orange-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.steps p { margin: 2px 0 0; font-size: 15.5px; line-height: 1.6; }

.tips {
  background: var(--orange-tint);
  border-radius: 16px;
  padding: 16px 18px;
  margin-top: 20px;
}
.tips h3 { font-size: 15px; font-weight: 800; margin: 0 0 8px; color: var(--orange-ink); }
.tips p { margin: 0 0 6px; font-size: 14.5px; line-height: 1.55; color: var(--text-soft); }
.tips p:last-child { margin-bottom: 0; }

.recipe__source { margin-top: 24px; font-size: 14px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Formulare (Kontakt, Login, Admin)
   -------------------------------------------------------------------------- */

.narrow { max-width: 620px; }

.lead { font-size: 16px; line-height: 1.6; color: var(--text-soft); margin: 0 0 24px; }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 14px; }
.field__hint { font-weight: 500; color: var(--muted); }

.input,
.field input,
.field textarea,
.field select {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 400;
  border: 1.5px solid var(--border-input);
  border-radius: 12px;
  background: #fff;
  outline: none;
  width: 100%;
  transition: border-color var(--ease);
}
.input:focus,
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--primary); }
.field textarea { resize: vertical; line-height: 1.6; }

.field--error input,
.field--error textarea,
.field--error select { border-color: var(--accent-red); }
.field__error { color: #B23A1E; font-weight: 600; font-size: 13.5px; }

.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.notice {
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.5;
}
.notice--success { background: var(--green-tint); color: var(--primary-hover); }
.notice--error { background: #FBE6E0; color: #8E2A12; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { border-top: 1px solid var(--border); background: var(--footer-bg); }

.site-footer__inner {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
}
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--primary-hover); }

/* --------------------------------------------------------------------------
   Druck
   -------------------------------------------------------------------------- */

@media print {
  @page { margin: 16mm; }

  body { background: #fff; color: #000; font-size: 11pt; display: block; }
  .site-header, .site-footer, .skip-link, .recipe__actions, .crumbs,
  .fav-btn, .recipe__photo, .recipe__tags, .no-print { display: none !important; }

  .main { padding: 0; }
  .container { max-width: none; padding: 0; }
  .recipe { max-width: none; }
  .recipe__title { font-size: 22pt; color: #000; }
  .recipe__meta { color: #000; margin: 4px 0 14px; }

  .recipe__grid { display: block; margin-top: 0; }
  .ingredients-card { background: none; padding: 0; margin-bottom: 18px; border-radius: 0; }
  .ingredients li { border-top: 1px solid #ccc; break-inside: avoid; }
  .ingredients__qty { color: #000; }
  .block-title { font-size: 14pt; }
  .steps li { break-inside: avoid; }
  .steps li::before { background: none; color: #000; border: 1px solid #000; }
  .tips { background: none; border: 1px solid #999; }
  .tips h3, .tips p { color: #000; }
  a { color: #000; text-decoration: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
