:root {
  --home-cream: #f6f0e5;
  --home-paper: #fffdf8;
  --home-ink: #20221f;
  --home-ink-soft: #3d3e38;
  --home-stone: #756e64;
  --home-rule: #d8cfc1;
  --home-orange: #b83b14;
  --home-orange-deep: #8f2d10;
  --home-sage: #7e8973;
  --home-display: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --home-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --home-max: 1440px;
  --home-gutter: clamp(20px, 4vw, 64px);
  --home-ease: cubic-bezier(.2, .8, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body.home-editorial {
  background: var(--home-cream);
  color: var(--home-ink);
  font-family: var(--home-sans);
  text-rendering: optimizeLegibility;
}

.home-editorial * {
  box-sizing: border-box;
}

.home-editorial img {
  max-width: 100%;
}

.home-editorial :focus-visible {
  outline: 3px solid var(--home-orange);
  outline-offset: 4px;
}

.home-editorial .skip-link {
  z-index: 2000;
}

.home-editorial .site-header {
  border-bottom: 1px solid var(--home-rule);
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.home-editorial .site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(32, 34, 31, .08);
}

.home-editorial .nav-wrap {
  width: min(calc(100% - (2 * var(--home-gutter))), var(--home-max));
  min-height: 88px;
  padding: 12px 0;
  gap: clamp(12px, 1.8vw, 28px);
}

.home-editorial .site-header .brand img {
  width: clamp(150px, 15vw, 205px);
  height: auto;
}

.home-editorial .site-header .nav {
  gap: clamp(10px, 1.15vw, 19px);
  margin-left: auto;
}

.home-editorial .site-header .nav a {
  position: relative;
  padding: 14px 0 11px;
  color: var(--home-ink-soft);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .045em;
}

.home-editorial .site-header .nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s var(--home-ease);
}

.home-editorial .site-header .nav a:hover,
.home-editorial .site-header .nav a.active {
  color: var(--home-orange);
}

.home-editorial .site-header .nav a:hover::after,
.home-editorial .site-header .nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-editorial .nav-utility,
.home-editorial .account-widget {
  flex: 0 0 auto;
  gap: 10px;
}

.home-editorial .nav-utility .login-link,
.home-editorial .account-widget a,
.home-editorial .account-widget button {
  color: var(--home-ink);
  font-size: .78rem;
}

.home-editorial .site-header .btn,
.home-editorial .site-header .account-menu__summary,
.home-editorial .mobile-nav .btn {
  border-radius: 0;
}

.home-editorial .site-header .btn.accent,
.home-editorial .mobile-nav .btn.accent {
  border-color: var(--home-orange);
  background: var(--home-orange);
}

.home-editorial .site-header .btn.accent:hover,
.home-editorial .mobile-nav .btn.accent:hover {
  border-color: var(--home-orange-deep);
  background: var(--home-orange-deep);
}

.home-editorial .mobile-nav__panel {
  background: #fff;
  overflow-y: auto;
}

.home-editorial .mobile-nav {
  visibility: hidden;
}

.home-editorial .mobile-nav.open {
  visibility: visible;
}

.home-editorial .mobile-nav__links a {
  border-color: var(--home-rule);
  color: var(--home-ink);
}

.home-editorial .mobile-nav__links a:hover {
  background: var(--home-cream);
  color: var(--home-orange);
}

.home-wrap {
  width: min(calc(100% - (2 * var(--home-gutter))), var(--home-max));
  margin-inline: auto;
}

.home-kicker {
  margin: 0 0 18px;
  color: var(--home-orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--home-rule);
  background:
    linear-gradient(90deg, transparent 0 73%, rgba(184, 59, 20, .055) 73% 100%),
    var(--home-cream);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48.5%;
  width: 1px;
  background: var(--home-rule);
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  min-height: 760px;
  padding-block: clamp(72px, 8vw, 124px);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.home-hero h1 {
  max-width: 9.5ch;
  margin: 0 0 28px;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: clamp(4.3rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: .87;
  letter-spacing: -.065em;
}

.home-hero h1 em {
  display: block;
  color: var(--home-orange);
  font-weight: 400;
}

.home-hero__lede {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--home-ink-soft);
  font-family: var(--home-display);
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  line-height: 1.48;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.home-button,
.home-editorial .recipe-card-home .btn,
.home-editorial .shop-card-home .btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid var(--home-ink);
  border-radius: 0;
  background: transparent;
  color: var(--home-ink);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s var(--home-ease), background .2s var(--home-ease), color .2s var(--home-ease), border-color .2s var(--home-ease);
}

.home-button::after,
.home-editorial .recipe-card-home .btn::after,
.home-editorial .shop-card-home .btn::after,
.home-text-link::after {
  content: "\2192";
  font-size: 1rem;
  font-weight: 400;
  transition: transform .2s var(--home-ease);
}

.home-button:hover,
.home-editorial .recipe-card-home .btn:hover,
.home-editorial .shop-card-home .btn:hover {
  transform: translateY(-2px);
}

.home-button:hover::after,
.home-editorial .recipe-card-home .btn:hover::after,
.home-editorial .shop-card-home .btn:hover::after,
.home-text-link:hover::after {
  transform: translateX(4px);
}

.home-button--primary {
  border-color: var(--home-orange);
  background: var(--home-orange);
  color: var(--home-paper);
}

.home-button--primary:hover {
  border-color: var(--home-orange-deep);
  background: var(--home-orange-deep);
}

.home-proof-line {
  margin: 0;
  color: var(--home-stone);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-hero__media {
  position: relative;
  min-height: 570px;
  margin: 0;
}

.home-hero__image {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: 58% center;
  box-shadow: 0 26px 60px rgba(32, 34, 31, .14);
}

.home-hero__caption {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: min(330px, 68%);
  padding: 24px 26px;
  border-left: 5px solid var(--home-orange);
  background: var(--home-paper);
  box-shadow: 0 18px 46px rgba(32, 34, 31, .15);
}

.home-hero__caption strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--home-display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.home-hero__caption span {
  color: var(--home-stone);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-section {
  padding-block: clamp(80px, 9vw, 136px);
}

.home-section--paper {
  background: var(--home-paper);
}

.home-section--dark {
  background: var(--home-ink);
  color: var(--home-paper);
}

.home-section__head {
  display: grid;
  grid-template-columns: minmax(130px, .42fr) minmax(0, 1.58fr);
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(38px, 5vw, 68px);
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
}

.home-section__index {
  color: var(--home-orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-section__head h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(3.1rem, 5.6vw, 6.1rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.055em;
}

.home-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.home-editorial .free-grid.dynamic,
.home-editorial .top-recipes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home-editorial .recipe-card-home {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--home-rule);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-editorial #featured-mains-grid .recipe-card-home:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  align-items: stretch;
  border-top-color: var(--home-ink);
}

.home-editorial .recipe-card-home img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .7s var(--home-ease), filter .35s var(--home-ease);
}

.home-editorial #featured-mains-grid .recipe-card-home:first-child img {
  height: 100%;
  min-height: 410px;
  aspect-ratio: auto;
}

.home-editorial .recipe-card-home:hover img,
.home-editorial .shop-card-home:hover img {
  transform: scale(1.018);
  filter: saturate(1.05);
}

.home-editorial .recipe-card-home .body,
.home-editorial .shop-card-home .body {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0 0;
}

.home-editorial #featured-mains-grid .recipe-card-home:first-child .body {
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 58px);
  background: var(--home-cream);
}

.home-editorial .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.home-editorial .badge-pill {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid var(--home-rule);
  border-radius: 0;
  background: transparent;
  color: var(--home-stone);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.home-editorial .badge-pill.members,
.home-editorial .badge-pill.live-favorite,
.home-editorial .badge-pill.new {
  border-color: var(--home-orange);
  color: var(--home-orange);
}

.home-editorial .recipe-card-home .meta-line,
.home-editorial .shop-card-home .meta-line {
  margin: 0 0 10px;
  color: var(--home-orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-editorial .recipe-card-home h3,
.home-editorial .shop-card-home h3 {
  margin: 0 0 12px;
  font-family: var(--home-display);
  font-size: clamp(1.65rem, 2.4vw, 2.65rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.home-editorial .recipe-card-home p,
.home-editorial .shop-card-home p {
  margin: 0 0 20px;
  color: var(--home-stone);
  line-height: 1.55;
}

.home-editorial .recipe-card-home .btn,
.home-editorial .shop-card-home .btn {
  min-height: auto;
  margin-top: auto;
  padding: 0 0 5px;
  border-width: 0 0 1px;
  background: transparent;
  color: var(--home-ink);
}

.home-live-panel {
  padding-left: clamp(24px, 3vw, 46px);
  border-left: 1px solid var(--home-rule);
}

.home-live-panel__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 28px;
  object-fit: cover;
}

.home-live-panel h3 {
  margin: 0 0 13px;
  font-family: var(--home-display);
  font-size: clamp(2.1rem, 3.1vw, 3.25rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.home-live-panel > p:not(.home-kicker) {
  margin: 0 0 20px;
  color: var(--home-stone);
}

.home-live-panel .live-fact {
  margin: 0 0 20px;
  padding: 16px 0;
  border: 0;
  border-block: 1px solid var(--home-rule);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-live-panel .live-fact strong,
.home-live-panel .live-fact span {
  color: var(--home-ink);
}

.home-live-panel .live-fact strong {
  display: block;
  margin-bottom: 5px;
}

.home-live-panel .live-fact span {
  color: var(--home-stone);
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-top-recipes {
  margin-top: 86px;
  padding-top: 34px;
  border-top: 1px solid var(--home-ink);
}

.home-top-recipes[hidden] {
  display: none;
}

.home-top-recipes__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.home-top-recipes__head h3 {
  margin: 0 0 8px;
  font-family: var(--home-display);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1;
}

.home-top-recipes__head p {
  max-width: 650px;
  margin: 0;
  color: var(--home-stone);
}

.home-editorial .home-top-recipes .top-recipes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-build-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.home-tool-figure {
  position: relative;
  margin: 0;
}

.home-tool-figure img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.home-tool-figure figcaption {
  position: absolute;
  right: -22px;
  bottom: -24px;
  max-width: 330px;
  padding: 24px 26px;
  background: var(--home-orange);
  color: var(--home-paper);
}

.home-tool-figure figcaption strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--home-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.home-tool-figure figcaption span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-build-copy h3 {
  margin: 0 0 20px;
  font-family: var(--home-display);
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.05em;
}

.home-build-copy > p:not(.home-kicker) {
  margin: 0 0 26px;
  color: #d8d1c6;
  font-family: var(--home-display);
  font-size: 1.15rem;
  line-height: 1.55;
}

.home-build-list {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.home-build-list li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 253, 248, .2);
  color: #e9e3da;
}

.home-build-list li:last-child {
  border-bottom: 1px solid rgba(255, 253, 248, .2);
}

.home-section--dark .home-button {
  border-color: var(--home-paper);
  color: var(--home-paper);
}

.home-section--dark .home-button--primary {
  border-color: var(--home-orange);
  background: var(--home-orange);
}

.home-more-stack {
  display: grid;
  gap: clamp(76px, 9vw, 132px);
}

.home-editorial-row {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}

.home-editorial-row--reverse {
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
}

.home-editorial-row--reverse .home-editorial-row__media {
  order: 2;
}

.home-editorial-row__media {
  margin: 0;
}

.home-editorial-row__media img {
  display: block;
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.home-editorial-row__copy h3 {
  margin: 0 0 18px;
  font-family: var(--home-display);
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.05em;
}

.home-editorial-row__copy > p:not(.home-kicker) {
  margin: 0 0 25px;
  color: var(--home-stone);
  font-family: var(--home-display);
  font-size: 1.1rem;
  line-height: 1.55;
}

.home-shop-picks {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--home-rule);
}

.home-shop-picks__label {
  margin: 0 0 22px;
  color: var(--home-stone);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.home-editorial .shop-card-home {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--home-rule);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-editorial .shop-card-home img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eee7dc;
  transition: transform .7s var(--home-ease), filter .35s var(--home-ease);
}

.home-editorial .shop-card-home h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.home-email-band {
  background: var(--home-orange);
  color: var(--home-paper);
}

.home-email-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  min-height: 410px;
  padding-block: clamp(72px, 8vw, 112px);
}

.home-email-band h2 {
  max-width: 12ch;
  margin: 0 0 16px;
  font-family: var(--home-display);
  font-size: clamp(3.2rem, 5.7vw, 6rem);
  font-weight: 700;
  line-height: .91;
  letter-spacing: -.055em;
}

.home-email-band p {
  max-width: 640px;
  margin: 0;
  color: #fff1e9;
}

.home-email-band .home-kicker {
  color: #fff1e9;
}

.home-email-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.home-email-form__field {
  display: grid;
  gap: 8px;
}

.home-email-form label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-email-form input {
  width: 100%;
  min-height: 54px;
  padding: 12px 0;
  border: 0;
  border-bottom: 2px solid var(--home-paper);
  border-radius: 0;
  background: transparent;
  color: var(--home-paper);
  font: inherit;
}

.home-email-form input::placeholder {
  color: rgba(255, 253, 248, .78);
}

.home-email-form button {
  min-height: 54px;
  padding: 13px 20px;
  border: 1px solid var(--home-ink);
  border-radius: 0;
  background: var(--home-ink);
  color: var(--home-paper);
  font: inherit;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s var(--home-ease), background .2s var(--home-ease);
}

.home-email-form button:hover {
  background: #11120f;
  transform: translateY(-2px);
}

.home-editorial .site-footer {
  border-top: 0;
  background: var(--home-ink);
  color: #eee8df;
}

.home-editorial .site-footer a {
  color: #eee8df;
}

.home-editorial .site-footer a:hover {
  color: #ff9b78;
}

.home-editorial .site-footer .brand-footer {
  display: inline-flex;
  padding: 8px 12px;
  background: var(--home-paper);
}

.home-editorial .site-footer h4 {
  color: var(--home-paper);
}

.home-editorial .site-footer .footer-grid {
  padding-top: 64px;
  padding-bottom: 48px;
}

.home-editorial .site-footer .smallprint {
  border-top-color: rgba(255, 255, 255, .15);
  color: #c9c1b7;
}

@media (max-width: 1180px) {
  .home-editorial .site-header .nav,
  .home-editorial .site-header .nav-utility,
  .home-editorial .site-header .account-widget {
    display: none;
  }

  .home-editorial .site-header .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .home-editorial .mobile-nav {
    display: flex;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  }

  .home-feature-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  }
}

@media (max-width: 960px) {
  .home-hero::before {
    display: none;
  }

  .home-hero__grid,
  .home-feature-layout,
  .home-build-grid,
  .home-editorial-row,
  .home-editorial-row--reverse,
  .home-email-band__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    min-height: 0;
    gap: 54px;
    padding-top: 72px;
  }

  .home-hero__copy {
    max-width: 760px;
  }

  .home-hero h1 {
    max-width: 10ch;
  }

  .home-hero__media {
    min-height: 520px;
  }

  .home-hero__image {
    height: 520px;
  }

  .home-live-panel {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: 30px;
    padding: 32px 0 0;
    border-top: 1px solid var(--home-rule);
    border-left: 0;
  }

  .home-live-panel__image {
    height: 360px;
    margin: 0;
    aspect-ratio: auto;
  }

  .home-tool-figure img,
  .home-editorial-row__media img {
    min-height: 430px;
  }

  .home-editorial-row--reverse .home-editorial-row__media {
    order: 0;
  }

  .home-email-band__grid {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .home-editorial .nav-wrap {
    min-height: 74px;
  }

  .home-editorial .site-header .brand img {
    width: 150px;
  }

  .home-hero__grid {
    padding-block: 58px 72px;
  }

  .home-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.5rem);
  }

  .home-hero__media,
  .home-hero__image {
    min-height: 430px;
    height: 430px;
  }

  .home-hero__caption {
    right: 12px;
    bottom: -24px;
    width: min(330px, 80%);
  }

  .home-section__head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-section__head h2 {
    max-width: 12ch;
  }

  .home-editorial .free-grid.dynamic,
  .home-editorial .top-recipes-grid,
  .home-editorial .home-top-recipes .top-recipes-grid,
  .home-editorial .shop-grid-home {
    grid-template-columns: 1fr;
  }

  .home-editorial #featured-mains-grid .recipe-card-home:first-child {
    grid-column: auto;
    display: flex;
  }

  .home-editorial #featured-mains-grid .recipe-card-home:first-child img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .home-editorial #featured-mains-grid .recipe-card-home:first-child .body {
    padding: 26px 0 0;
    background: transparent;
  }

  .home-live-panel {
    grid-template-columns: 1fr;
  }

  .home-live-panel__image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .home-top-recipes__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-tool-figure img,
  .home-editorial-row__media img {
    min-height: 330px;
  }

  .home-tool-figure figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
  }

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

  .home-email-form button,
  .home-actions .home-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-hero h1 {
    font-size: clamp(3.25rem, 16.5vw, 4.25rem);
  }

  .home-hero__media,
  .home-hero__image {
    min-height: 350px;
    height: 350px;
  }

  .home-hero__caption {
    right: 0;
    width: 88%;
    padding: 19px 20px;
  }
}

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

  .home-editorial *,
  .home-editorial *::before,
  .home-editorial *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
