.mf-recipe-hub {
    --mf-recipe-green: #172b22;
    --mf-recipe-red: #c51f2b;
    --mf-recipe-border: rgba(23, 43, 34, 0.14);
    --mf-recipe-surface: #fbfaf7;
    max-width: 1140px;
    margin: 0 auto;
    padding: 42px 20px 54px;
    color: #172b22;
}

.mf-recipe-hub__intro {
    max-width: 820px;
    margin-bottom: 24px;
}

.mf-recipe-hub__eyebrow {
    margin: 0 0 8px;
    color: #7a761b;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.mf-recipe-hub h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.mf-recipe-hub__intro p:last-child {
    margin: 0;
    max-width: 760px;
    font-size: 1.03rem;
    line-height: 1.65;
}

.mf-recipe-hub__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0;
}

.mf-recipe-hub__filter {
    border: 1px solid var(--mf-recipe-border);
    border-radius: 999px;
    background: #fff;
    color: var(--mf-recipe-green);
    min-height: 42px;
    padding: 9px 16px;
    font-weight: 800;
    cursor: pointer;
}

.mf-recipe-hub__filter.is-active {
    background: var(--mf-recipe-green);
    color: #fff;
}

.mf-recipe-hub__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mf-recipe-card {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--mf-recipe-border);
    border-radius: 8px;
    background: #fff;
    min-height: 260px;
}

.mf-recipe-card.is-hidden {
    display: none;
}

.mf-recipe-card__media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    min-height: 100%;
    padding: 16px;
    background:
        linear-gradient(145deg, rgba(197, 31, 43, 0.12), transparent 52%),
        linear-gradient(135deg, #f5efe5, var(--mf-recipe-surface));
}

.mf-recipe-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mf-recipe-card__media span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border-radius: 999px;
    background: var(--mf-recipe-green);
    color: #fff;
    padding: 7px 12px;
    font-weight: 900;
    font-size: 0.86rem;
}

.mf-recipe-card__body {
    padding: 22px;
}

.mf-recipe-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 10px;
    color: #6f6255;
    font-size: 0.86rem;
    font-weight: 800;
}

.mf-recipe-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid rgba(23, 43, 34, 0.12);
    border-radius: 999px;
    background: #fbfaf7;
    padding: 5px 9px;
}

.mf-recipe-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.22;
}

.mf-recipe-card p {
    margin: 0 0 12px;
    line-height: 1.55;
}

.mf-recipe-card__hint {
    color: #6f6255;
    font-size: 0.93rem;
}

.mf-recipe-card__link,
.mf-recipe-card__status {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    text-decoration: none;
}

.mf-recipe-card__link {
    background: var(--mf-recipe-green);
    color: #fff;
}

.mf-recipe-card__status {
    border: 1px solid rgba(122, 118, 27, 0.28);
    color: #6d6415;
    background: rgba(122, 118, 27, 0.07);
}

.mf-recipe-products {
    --mf-recipe-green: #172b22;
    --mf-recipe-red: #c51f2b;
    --mf-recipe-border: rgba(23, 43, 34, 0.14);
    max-width: 1140px;
    margin: 34px auto 54px;
    padding: 0 20px;
    color: #172b22;
}

.mf-recipe-products__header {
    max-width: 780px;
    margin-bottom: 18px;
}

.mf-recipe-products__eyebrow {
    margin: 0 0 7px;
    color: var(--mf-recipe-red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mf-recipe-products h2 {
    margin: 0 0 9px;
    font-size: clamp(1.6rem, 2.6vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.mf-recipe-products__header p:last-child {
    margin: 0;
    color: #526057;
    line-height: 1.6;
}

.mf-recipe-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mf-recipe-product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--mf-recipe-border);
    border-radius: 8px;
    background: #fff;
}

.mf-recipe-product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 0.78;
    background: #fbfaf7;
    padding: 14px;
}

.mf-recipe-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mf-recipe-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 14px;
}

.mf-recipe-product-card__stock {
    margin: 0;
    color: #6f6255;
    font-size: 0.78rem;
    font-weight: 800;
}

.mf-recipe-product-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.mf-recipe-product-card h3 a {
    color: var(--mf-recipe-green);
    text-decoration: none;
}

.mf-recipe-product-card__price {
    color: #7b3f2b;
    font-weight: 900;
}

.mf-recipe-product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: auto;
    border-radius: 6px;
    background: var(--mf-recipe-green);
    color: #fff;
    padding: 8px 12px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.mf-product-recipes {
    --mf-recipe-green: #172b22;
    --mf-recipe-red: #c51f2b;
    --mf-recipe-border: rgba(23, 43, 34, 0.14);
    max-width: 1140px;
    margin: 30px auto;
    padding: clamp(18px, 2.8vw, 28px);
    border: 1px solid var(--mf-recipe-border);
    border-radius: 8px;
    background: #fff;
    color: #172b22;
}

.mf-product-recipes__header {
    max-width: 780px;
    margin-bottom: 18px;
}

.mf-product-recipes__eyebrow {
    display: inline-flex;
    margin: 0 0 8px;
    color: var(--mf-recipe-red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mf-product-recipes h2 {
    margin: 0 0 9px;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.mf-product-recipes__header p:last-child {
    margin: 0;
    color: #526057;
    line-height: 1.6;
}

.mf-product-recipes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 14px;
}

.mf-product-recipe-card {
    display: grid;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--mf-recipe-border);
    border-radius: 8px;
    background: #fbfaf7;
}

.mf-product-recipe-card:only-child {
    grid-column: 1 / -1;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 0;
    align-items: stretch;
}

.mf-product-recipe-card__media {
    position: relative;
    width: 100%;
    min-height: 150px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0ede7;
}

.mf-product-recipe-card__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mf-product-recipe-card:only-child .mf-product-recipe-card__media {
    min-height: 100%;
    aspect-ratio: auto;
}

.mf-product-recipe-card:only-child .mf-product-recipe-card__body {
    padding: 16px;
}

.mf-product-recipe-card:only-child .mf-product-recipe-card__link,
.mf-product-recipe-card:only-child .mf-product-recipe-card__status {
    align-self: flex-start;
}

.mf-product-recipe-card__time {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 32px;
    margin: 0;
    border-radius: 999px;
    background: var(--mf-recipe-green);
    color: #fff;
    padding: 6px 11px;
    font-size: 0.82rem;
    font-weight: 900;
    z-index: 1;
}

.mf-product-recipe-card__body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 14px;
}

.mf-product-recipe-card__meta {
    margin: 0;
    color: #7c6d60;
    font-size: 0.82rem;
    font-weight: 800;
}

.mf-product-recipe-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.22;
}

.mf-product-recipe-card p {
    margin: 0;
    color: #526057;
    line-height: 1.5;
}

.mf-product-recipe-card__link,
.mf-product-recipe-card__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: auto;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.mf-product-recipe-card__link {
    background: var(--mf-recipe-green);
    color: #fff;
}

.mf-product-recipe-card__status {
    border: 1px solid rgba(197, 31, 43, 0.28);
    background: rgba(197, 31, 43, 0.06);
    color: var(--mf-recipe-red);
}

.wprm-recipe-container {
    --mf-recipe-green: #172b22;
    --mf-recipe-red: #c51f2b;
    --mf-recipe-border: rgba(23, 43, 34, 0.14);
    max-width: 1040px !important;
    margin: 24px auto 24px !important;
    padding: clamp(22px, 3vw, 36px) !important;
    border: 1px solid var(--mf-recipe-border) !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: var(--mf-recipe-green) !important;
    font-family: inherit !important;
    box-shadow: 0 18px 44px rgba(23, 43, 34, 0.08) !important;
}

body.mf-recipe-page {
    background: #f7f6f2;
}

body.mf-recipe-page .site-content > .ast-container {
    max-width: 1180px;
    padding-left: clamp(16px, 3vw, 28px);
    padding-right: clamp(16px, 3vw, 28px);
}

body.mf-recipe-page .ast-article-single,
body.mf-recipe-page .ast-separate-container .ast-article-single {
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.mf-recipe-page .entry-header {
    max-width: 1040px;
    margin: 24px auto 12px;
}

body.mf-recipe-page .ast-article-single > .entry-header .post-thumb {
    display: none !important;
}

body.mf-recipe-page .entry-title {
    max-width: 100%;
    margin: 0;
    color: #172b22;
    font-size: clamp(2rem, 3.5vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: 0;
    white-space: normal !important;
    overflow-wrap: anywhere;
}

.mf-recipe-stage-preview__main {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 44px) clamp(16px, 3vw, 28px) 56px;
}

.mf-recipe-stage-preview__article {
    width: 100%;
    min-width: 0;
}

.mf-recipe-stage-preview__article .entry-content,
body.mf-recipe-page .wprm-layout-container,
body.mf-recipe-page .wprm-layout-column {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.mf-recipe-stage-preview__header {
    max-width: 1040px;
    margin: 0 auto 14px;
}

.mf-recipe-stage-preview__eyebrow {
    display: inline-flex;
    margin: 0 0 9px;
    border: 1px solid rgba(122, 118, 27, 0.28);
    border-radius: 999px;
    background: rgba(122, 118, 27, 0.07);
    color: #686115;
    padding: 6px 10px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

body.mf-recipe-page .entry-content > p:first-child {
    margin: 0;
}

body.mf-recipe-page .wprm-recipe-container {
    margin-top: 16px !important;
    border-color: rgba(23, 43, 34, 0.1) !important;
    box-shadow: 0 22px 70px rgba(23, 43, 34, 0.09) !important;
    overflow: hidden !important;
}

body.mf-recipe-page .wprm-recipe-name {
    display: none !important;
}

.wprm-recipe-container * {
    font-family: inherit !important;
    letter-spacing: 0 !important;
}

body.mf-recipe-page .wprm-recipe-container a {
    color: #172b22 !important;
}

.wprm-recipe-name,
.wprm-recipe-container h2,
.wprm-recipe-container h3,
.wprm-recipe-header {
    color: var(--mf-recipe-green) !important;
    font-weight: 900 !important;
}

.wprm-recipe-name {
    margin-bottom: 10px !important;
    font-size: clamp(2rem, 3.8vw, 3.3rem) !important;
    line-height: 1.04 !important;
}

.wprm-recipe-summary,
.wprm-recipe-container p {
    max-width: 780px !important;
    color: #526057 !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
}

.wprm-recipe-times-container,
.wprm-recipe-servings-container,
.wprm-recipe-meta-container {
    margin: 18px 0 !important;
    color: #526057 !important;
}

.wprm-layout-container.meadow-header {
    border-radius: 8px !important;
    background: #fbfaf7 !important;
}

body.mf-recipe-page .wprm-layout-container.meadow-header {
    padding: clamp(22px, 3vw, 36px) !important;
    border: 1px solid rgba(23, 43, 34, 0.08) !important;
    background:
        linear-gradient(135deg, rgba(197, 31, 43, 0.055), transparent 46%),
        #fbfaf7 !important;
}

body.mf-recipe-page .meadow-header-columns {
    display: grid !important;
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.42fr) !important;
    align-items: stretch !important;
    gap: clamp(22px, 3vw, 38px) !important;
}

body.mf-recipe-page .meadow-header-accent,
body.mf-recipe-page .wprm-decoration-spacer,
body.mf-recipe-page .wprm-internal-container-toggle {
    display: none !important;
}

body.mf-recipe-page .meadow-header-columns > .wprm-layout-column {
    width: auto !important;
    min-width: 0 !important;
}

body.mf-recipe-page .meadow-header-columns > .wprm-layout-column:first-child {
    display: flex !important;
    align-items: stretch !important;
}

body.mf-recipe-page .wprm-recipe-image {
    width: 100% !important;
}

body.mf-recipe-page .wprm-recipe-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    aspect-ratio: 3 / 2;
    border-radius: 8px !important;
    object-fit: cover !important;
}

body.mf-recipe-page .meadow-header-meta {
    margin-top: 18px !important;
}

.wprm-layout-container.meadow-main {
    background: transparent !important;
}

body.mf-recipe-page .meadow-main-columns {
    display: grid !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
    gap: clamp(28px, 4vw, 54px) !important;
}

body.mf-recipe-page .meadow-main-columns > .wprm-layout-column {
    width: auto !important;
}

body.mf-recipe-page .wprm-recipe-summary {
    max-width: 760px !important;
    margin-top: 0 !important;
    color: #3e4c44 !important;
    font-size: clamp(1rem, 1.4vw, 1.1rem) !important;
}

body.mf-recipe-page .wprm-recipe-times-container {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: 760px !important;
    margin: 22px 0 12px !important;
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
}

body.mf-recipe-page .wprm-recipe-times-container .wprm-recipe-block-container {
    display: flex !important;
    min-height: 58px !important;
    flex-direction: column !important;
    justify-content: center !important;
    border: 1px solid rgba(23, 43, 34, 0.12) !important;
    border-width: 1px !important;
    border-color: rgba(23, 43, 34, 0.12) !important;
    border-radius: 8px !important;
    background: #fff !important;
    padding: 10px 12px !important;
}

body.mf-recipe-page .wprm-recipe-time-label,
body.mf-recipe-page .wprm-recipe-details-label {
    color: #6f6255 !important;
    font-size: 0.78rem !important;
    text-transform: uppercase !important;
}

body.mf-recipe-page .wprm-recipe-time,
body.mf-recipe-page .wprm-recipe-servings-with-unit {
    color: #172b22 !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
}

body.mf-recipe-page .wprm-recipe-custom-container {
    justify-content: flex-start !important;
    margin: 8px 0 0 !important;
    --pill-background-color: transparent !important;
}

body.mf-recipe-page .wprm-recipe-meta-container-pill {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

body.mf-recipe-page .wprm-recipe-servings-container {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    border: 1px solid rgba(23, 43, 34, 0.12) !important;
    border-radius: 999px !important;
    background: #fff !important;
    padding: 8px 13px !important;
}

.wprm-recipe-print,
.wprm-print-recipe-shortcode,
.mf-recipe-print-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--mf-recipe-green) !important;
    color: #fff !important;
    padding: 9px 16px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.mf-recipe-print-button:hover,
.mf-recipe-print-button:focus-visible {
    background: #254638 !important;
    color: #fff !important;
}

body.mf-recipe-page .wprm-recipe-container a.wprm-recipe-print,
body.mf-recipe-page .wprm-recipe-container a.wprm-print-recipe-shortcode {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--mf-recipe-green) !important;
    padding: 10px 17px !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 0 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

body.mf-recipe-page .wprm-recipe-print *,
body.mf-recipe-page .wprm-print-recipe-shortcode * {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
}

body.mf-recipe-page .wprm-recipe-print::after,
body.mf-recipe-page .wprm-print-recipe-shortcode::after {
    content: "Spausdinti receptą";
    display: inline-block;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 0.94rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap;
}

.wprm-recipe-servings,
.wprm-recipe-time,
.wprm-recipe-details-unit,
.wprm-recipe-details-label {
    font-weight: 800 !important;
}

.wprm-recipe-icon {
    width: 42px !important;
    height: 42px !important;
}

.wprm-recipe-icon svg {
    max-width: 42px !important;
    max-height: 42px !important;
}

.wprm-recipe-jump-container,
.wprm-recipe-jump-to-section-container,
.wprm-recipe-template-chic-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 20px 0 28px !important;
}

body.mf-recipe-page .wprm-recipe-jump-to-section-container {
    position: sticky !important;
    top: 86px !important;
    z-index: 8 !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 20px 0 34px !important;
    padding: 8px !important;
    border: 1px solid rgba(23, 43, 34, 0.1) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 10px 30px rgba(23, 43, 34, 0.08) !important;
    backdrop-filter: blur(8px);
}

.wprm-recipe-jump,
.wprm-recipe-jump-to-section,
.wprm-recipe-template-chic-buttons a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-height: 40px !important;
    border: 1px solid var(--mf-recipe-border) !important;
    border-radius: 999px !important;
    background: #fbfaf7 !important;
    color: var(--mf-recipe-green) !important;
    padding: 8px 14px !important;
    font-size: 0.92rem !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

body.mf-recipe-page .wprm-recipe-jump:hover,
body.mf-recipe-page .wprm-recipe-jump-to-section:hover,
body.mf-recipe-page .wprm-recipe-template-chic-buttons a:hover {
    border-color: rgba(23, 43, 34, 0.22) !important;
    background: #fff !important;
    color: var(--mf-recipe-green) !important;
}

body.mf-recipe-page .wprm-recipe-jump-to-section svg,
body.mf-recipe-page .wprm-recipe-jump-to-section svg * {
    stroke: var(--mf-recipe-green) !important;
}

.wprm-recipe-jump-to-section .wprm-recipe-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
}

.wprm-recipe-jump-to-section .wprm-recipe-icon svg {
    width: 22px !important;
    height: 22px !important;
}

.wprm-recipe-header {
    margin: 30px 0 16px !important;
    border: 0 !important;
    font-size: clamp(1.45rem, 2.5vw, 2.2rem) !important;
    line-height: 1.15 !important;
}

body.mf-recipe-page .wprm-recipe-header {
    font-size: clamp(1.75rem, 3vw, 2.55rem) !important;
}

.wprm-recipe-ingredient-group-name,
.wprm-recipe-instruction-group-name {
    margin: 16px 0 10px !important;
    color: #7a761b !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
}

body.mf-recipe-page .wprm-recipe-instruction-group-name {
    display: none !important;
}

.wprm-recipe-ingredients,
.wprm-recipe-instructions {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.wprm-recipe-ingredient,
.wprm-recipe-instruction {
    padding: 13px 0 !important;
    border-bottom: 1px solid rgba(23, 43, 34, 0.1) !important;
    color: #172b22 !important;
    line-height: 1.55 !important;
}

body.mf-recipe-page .wprm-recipe-instruction {
    padding: 16px 0 !important;
}

body.mf-recipe-page .wprm-recipe-ingredient {
    padding: 12px 0 !important;
}

.wprm-recipe-instruction-text {
    color: #172b22 !important;
    line-height: 1.65 !important;
}

.wprm-recipe-ingredient-notes,
.wprm-recipe-notes-container,
.wprm-recipe-notes-header {
    display: none !important;
}

@media (max-width: 820px) {
    html,
    body.mf-recipe-page {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mf-recipe-stage-preview__main {
        overflow-x: clip;
        padding: 24px 12px 44px;
    }

    .mf-recipe-stage-preview__header,
    body.mf-recipe-page .entry-header,
    .mf-recipe-stage-preview__article,
    .mf-recipe-stage-preview__article .entry-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    body.mf-recipe-page .entry-title {
        font-size: clamp(1.9rem, 9vw, 2.55rem);
    }

    .mf-recipe-hub {
        padding: 28px 16px 42px;
    }

    .mf-recipe-hub__grid {
        grid-template-columns: 1fr;
    }

    .mf-recipe-products {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mf-recipe-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mf-product-recipes__grid {
        grid-template-columns: 1fr;
    }

    .mf-product-recipes {
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        padding: 18px 16px;
        box-sizing: border-box;
    }

    .mf-product-recipe-card:only-child {
        grid-template-columns: 1fr;
    }

    .mf-product-recipe-card:only-child .mf-product-recipe-card__media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .mf-product-recipe-card:only-child .mf-product-recipe-card__body {
        padding: 14px;
    }

    .mf-product-recipe-card:only-child .mf-product-recipe-card__link,
    .mf-product-recipe-card:only-child .mf-product-recipe-card__status {
        align-self: stretch;
    }

    .wprm-recipe-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 18px 0 22px !important;
        padding: 18px 14px !important;
        box-sizing: border-box !important;
    }

    body.mf-recipe-stage-preview .wprm-recipe-container {
        width: calc(100vw - 24px) !important;
    }

    body.mf-recipe-page .wprm-recipe-container > *,
    body.mf-recipe-page .wprm-layout-container.meadow-header,
    body.mf-recipe-page .meadow-header-columns,
    body.mf-recipe-page .meadow-header-columns > .wprm-layout-column,
    body.mf-recipe-page .wprm-layout-container.meadow-main,
    body.mf-recipe-page .meadow-main-columns,
    body.mf-recipe-page .meadow-main-columns > .wprm-layout-column {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    body.mf-recipe-page .wprm-recipe-container * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: anywhere;
    }

    body.mf-recipe-page .wprm-recipe-jump-to-section-container {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 7px !important;
    }

    body.mf-recipe-page .wprm-recipe-jump-to-section {
        width: 100% !important;
        min-width: 0 !important;
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    body.mf-recipe-page .entry-header {
        margin-top: 18px;
    }

    body.mf-recipe-page .wprm-recipe-times-container {
        grid-template-columns: 1fr !important;
    }

    body.mf-recipe-page .meadow-header-columns {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    body.mf-recipe-page .wprm-recipe-image img {
        min-height: 0 !important;
    }

    body.mf-recipe-page .meadow-main-columns {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    body.mf-recipe-page .wprm-recipe-jump-to-section-container {
        position: static !important;
        width: auto !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 560px) {
    .mf-recipe-hub h2 {
        font-size: 2rem;
    }

    .mf-recipe-card {
        grid-template-columns: 1fr;
    }

    .mf-recipe-card__media {
        min-height: 210px;
    }

    .mf-recipe-card__body {
        padding: 18px;
    }

    .mf-recipe-products__grid {
        grid-template-columns: 1fr;
    }
}
