:root {
    --bg: #fbf4ea;
    --bg-soft: #fffaf3;
    --surface: #ffffff;
    --surface-strong: #f3e4cd;
    --text: #2d241d;
    --muted: #6f6257;
    --accent: #5b3520;
    --accent-dark: #5b3520;
    --border: rgba(45, 36, 29, 0.1);
    --shadow: 0 20px 50px rgba(90, 52, 26, 0.12);
    --radius: 24px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(244, 200, 168, 0.5), transparent 28%),
        linear-gradient(180deg, #fff9f0 0%, #fbf4ea 45%, #f7efe3 100%);
    line-height: 1.6;
}

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

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

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

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255, 249, 240, 0.9);
    border-bottom: 1px solid rgba(45, 36, 29, 0.07);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-branding__logo {
    display: block;
    flex-shrink: 0;
}

.site-branding__logo img,
.site-branding__logo .custom-logo {
    display: block;
    width: auto;
    max-height: 88px;
}

.site-branding__logo--fallback img {
    max-width: 168px;
    max-height: 88px;
}

.site-branding__name,
h1,
h2,
h3 {
    font-family: "Montserrat", sans-serif;
}

.site-branding__name {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 800;
}

.site-branding__tagline {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav li {
    display: flex;
    align-items: center;
}

.site-nav a,
.site-header__search,
.button,
button,
input,
select,
textarea {
    border-radius: 16px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 14px;
    line-height: 1;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
    background: var(--surface-strong);
}

.site-nav .menu-item-has-children {
    position: relative;
}

.site-nav .menu-item-has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.site-nav .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-nav .menu-item-has-children > a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease;
}

.site-nav .menu-item-has-children.is-open > a::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.site-nav .sub-menu {
    display: none;
    list-style: none;
    margin: 8px 0 0;
    padding: 10px 0 0 14px;
    gap: 8px;
}

.site-nav .menu-item-has-children.is-open > .sub-menu {
    display: grid;
}

@media (min-width: 821px) {
    .site-header,
    .site-header__inner,
    .site-nav {
        overflow: visible;
    }

    .site-nav .menu-item-has-children:hover > .sub-menu,
    .site-nav .menu-item-has-children:focus-within > .sub-menu {
        display: grid;
    }

    .site-nav .menu-item-has-children:hover > a::after,
    .site-nav .menu-item-has-children:focus-within > a::after {
        transform: rotate(-135deg);
        margin-top: 3px;
    }

    .site-nav .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        margin: 0;
        padding: 18px 12px 12px;
        background: rgba(255, 250, 243, 0.98);
        border: 1px solid rgba(45, 36, 29, 0.08);
        border-radius: 20px;
        box-shadow: 0 18px 36px rgba(45, 36, 29, 0.12);
        z-index: 80;
    }

    .site-nav .sub-menu li {
        width: 100%;
    }

    .site-nav .sub-menu a {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding: 10px 12px;
        border-radius: 14px;
    }
}

.site-header__search {
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.site-header__burger {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.site-header__burger span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 4px auto;
    border-radius: 999px;
    background: #6f6b66;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__backdrop {
    display: none;
}

.section {
    padding: 72px 0;
}

.section--tight {
    padding-top: 36px;
}

.section--muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(243, 228, 205, 0.55));
}

.hero {
    padding: 52px 0 30px;
}

.hero__grid,
.media-grid,
.recipe-layout,
.site-footer__grid {
    display: grid;
    gap: 28px;
}

.hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero__lead,
.section__intro p,
.archive-description,
.page-content,
.recipe-single__excerpt {
    color: var(--muted);
    font-size: 1.04rem;
}

.hero__actions,
.recipe-single__actions,
.content-block__header {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button,
button[type="submit"],
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-1px);
}

.button svg,
button[type="submit"] svg,
input[type="submit"] svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.button--primary,
button[type="submit"],
input[type="submit"] {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(91, 53, 32, 0.24);
}

.button--secondary {
    background: var(--surface);
    border: 1px solid var(--border);
}

.button--ghost {
    background: transparent;
    border: 1px dashed var(--border);
}

.hero__stats,
.recipe-meta,
.breadcrumbs ol,
.comment-list,
.ingredient-list,
.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.hero__stats li,
.sidebar-card,
.search-card,
.author-card,
.video-block,
.subscribe-banner,
.recipe-card,
.collection-card,
.content-block,
.comment-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(45, 36, 29, 0.07);
    box-shadow: var(--shadow);
}

.hero__stats li {
    padding: 18px;
    border-radius: 20px;
}

.hero__stats strong {
    display: block;
    font-size: 1.5rem;
}

.search-card,
.author-card,
.video-block,
.subscribe-banner,
.content-block,
.sidebar-card {
    border-radius: var(--radius);
    padding: 26px;
}

.filter-form,
.subscribe-form {
    display: grid;
    gap: 14px;
}

.filter-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.filter-form--inline {
    grid-template-columns: 1.2fr 1fr 1fr auto;
    margin-bottom: 28px;
}

input[type="search"],
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}

.section__intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.recipe-grid,
.collection-grid {
    display: grid;
    gap: 20px;
}

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

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

.recipe-card,
.collection-card {
    overflow: hidden;
    border-radius: 28px;
}

.recipe-card__thumb {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #efc9b0, #f8f1e7);
}

.recipe-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-card__placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    color: var(--muted);
}

.recipe-card__body {
    padding: 18px;
}

.recipe-card__category,
.text-link,
.breadcrumbs a {
    color: var(--accent-dark);
}

.recipe-card h3 {
    font-size: 1.45rem;
}

.recipe-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted);
}

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

.blog-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(45, 36, 29, 0.07);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__thumb {
    display: block;
    aspect-ratio: 1.2 / 0.82;
    background: linear-gradient(135deg, #efc9b0, #f8f1e7);
}

.blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    flex: 1 1 auto;
}

.blog-card__meta,
.blog-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 0.92rem;
}

.blog-card h2 {
    margin: 0;
    font-size: 1.42rem;
    line-height: 1.12;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: calc(1.12em * 3);
}

.blog-card__body p {
    margin: 0;
}

.blog-card__body > p:not(.blog-card__meta) {
    flex: 1 1 auto;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    height: calc(1.55em * 4);
}

.blog-card__button {
    width: 100%;
    margin-top: auto;
}

.blog-single__thumb {
    margin-top: 20px;
}

.blog-single__thumb img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 32px;
}

.blog-single__layout,
.blog-single__related {
    display: block;
}

.blog-single .content-block {
    width: 100%;
}

.blog-single .entry-content {
    max-width: none;
    width: 100%;
}

.blog-single__related {
    margin-top: 28px;
}

.blog-single__sidebar {
    display: block;
    padding-top: 0;
}

.blog-single__sidebar .sidebar-card {
    padding: 26px;
}

.blog-single__sidebar .related-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.collection-card {
    min-height: 180px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    color: #fff;
}

.collection-card span {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.collection-card strong {
    font-size: 1.4rem;
    line-height: 1.2;
}

.collection-card--quick { background: linear-gradient(135deg, #21745f, #4b9e82); }
.collection-card--budget { background: linear-gradient(135deg, #5b3520, #7a4a2d); }
.collection-card--holiday { background: linear-gradient(135deg, #8f2d56, #c34b71); }
.collection-card--kids { background: linear-gradient(135deg, #3167a0, #5291c1); }

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

.video-placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8e6d8, #f6f1e8);
    color: var(--muted);
    padding: 20px;
}

.subscribe-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #fff6ee, #f3e4cd);
}

.archive-hero {
    padding-bottom: 20px;
}

.archive-hero--category {
    padding-top: 48px;
}

.archive-hero--category h1 {
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.archive-filter {
    margin-top: 24px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 252, 246, 0.82);
    border: 1px solid rgba(91, 53, 32, 0.08);
    box-shadow: 0 14px 34px rgba(91, 53, 32, 0.08);
}

.filter-form--archive {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.archive-filter__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px 128px;
    gap: 12px;
    align-items: center;
}

.archive-filter__bar > * {
    min-width: 0;
}

.archive-filter__search input {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    background: #fffdfa;
}

.archive-filter__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    width: 58px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    border: 1px solid rgba(91, 53, 32, 0.12);
    border-radius: 16px;
    background: #fffdfa;
    color: #5b3520;
    cursor: pointer;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.archive-filter__toggle-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
}

.archive-filter__submit {
    width: 128px;
    min-width: 128px;
    min-height: 54px;
}

.archive-filter__panel {
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(91, 53, 32, 0.08);
    box-shadow: 0 16px 30px rgba(91, 53, 32, 0.09);
}

.archive-filter__section h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
}

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

.archive-filter__chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff7ee;
    border: 1px solid rgba(91, 53, 32, 0.12);
    color: #5b3520;
    font-weight: 600;
}

.archive-filter__chip.is-active {
    background: #5b3520;
    color: #fff8ef;
}

.archive-filter__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    margin-top: 18px;
}

.archive-filter__options {
    display: grid;
    gap: 10px;
}

.archive-filter__options label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.archive-filter__options input[type="radio"] {
    accent-color: #5b3520;
}

.archive-filter__section input[type="text"] {
    min-height: 50px;
    border-radius: 14px;
}

.archive-filter__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.archive-filter__reset {
    white-space: nowrap;
}

.archive-listing {
    padding-top: 24px;
}

.archive-grid--category {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recipe-card--archive {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recipe-card__thumb--archive {
    aspect-ratio: 1.18 / 1;
}

.recipe-card__body--archive {
    display: grid;
    gap: 16px;
    align-content: start;
}

.recipe-card__title--archive {
    margin: 0;
    font-size: 1.32rem;
    line-height: 1.18;
}

.recipe-card__cta {
    width: 100%;
    min-height: 50px;
}

.archive-pagination {
    margin-top: 28px;
}

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

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(45, 36, 29, 0.08);
    box-shadow: var(--shadow);
}

.archive-pagination .page-numbers.current {
    background: var(--surface-strong);
    color: var(--accent-dark);
    font-weight: 800;
}

.archive-bottom {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-socials {
    margin-top: 36px;
}

.contact-socials__head {
    margin-bottom: 18px;
}

.contact-socials__head h2 {
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.contact-socials__head p {
    margin: 0;
    color: var(--muted);
}

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

.contact-social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(45, 36, 29, 0.08);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(91, 53, 32, 0.14);
}

.contact-social-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 18px;
    background: var(--surface-strong);
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 800;
}

.contact-social-card__content {
    display: grid;
    gap: 4px;
}

.contact-social-card__content strong {
    font-size: 1.16rem;
}

.contact-social-card__handle,
.contact-social-card__count {
    color: var(--muted);
}

.archive-copy {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.archive-copy h2,
.archive-copy h3,
.archive-copy h4 {
    margin: 0 0 14px;
    font-size: clamp(1.45rem, 2.15vw, 2.3rem);
    line-height: 1.08;
}

.archive-copy h3 {
    font-size: clamp(1.2rem, 1.75vw, 1.8rem);
}

.archive-copy h4 {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.archive-copy p + h2,
.archive-copy p + h3,
.archive-copy p + h4,
.archive-copy ul + h2,
.archive-copy ul + h3,
.archive-copy ul + h4 {
    margin-top: 20px;
}

.archive-faq {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.archive-copy p,
.archive-faq .faq-list p {
    margin: 0;
}

.archive-faq .faq-list p {
    margin-top: 12px;
    color: var(--muted);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
}

.recipe-single__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.recipe-single__header h1 {
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 3.4vw, 2.75rem);
    line-height: 1.04;
}

.recipe-single__actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-self: center;
    gap: 10px;
}

.recipe-single__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--text);
    font-weight: 800;
    white-space: nowrap;
}

.recipe-single__stars {
    display: inline-flex;
    gap: 4px;
}

.recipe-single__star {
    padding: 0;
    border: 0;
    background: transparent;
    color: #d1c2ad;
    font-size: 1.15rem;
    line-height: 1;
    box-shadow: none;
    cursor: pointer;
}

.recipe-single__star.is-active,
.recipe-single__star:hover {
    color: #c89b3c;
}

.recipe-single__rating.is-rated .recipe-single__star {
    cursor: default;
}

.recipe-single__actions .button {
    min-width: 56px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 999px;
    background: var(--surface-strong);
    border: 1px solid rgba(209, 188, 155, 0.38);
    box-shadow: none;
    color: var(--text);
}

.recipe-single__actions .button:hover,
.recipe-single__actions .button:focus,
.recipe-single__actions .button:focus-visible {
    background: #f2e0be;
    border-color: rgba(200, 155, 60, 0.26);
    box-shadow: none;
}

.recipe-single__rating-count {
    color: var(--muted);
    font-size: 0.85rem;
}

.recipe-single__thumb {
    margin-top: 16px;
}

.recipe-meta {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 0;
}

.recipe-meta div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(45, 36, 29, 0.07);
}

.recipe-meta span {
    display: block;
    color: var(--muted);
    margin-bottom: 2px;
    font-size: 0.82rem;
}

.recipe-meta strong {
    font-size: 1rem;
}

.recipe-single__hero {
    padding: 50px 0 22px;
}

.recipe-single__hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.recipe-single__excerpt {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
}

.recipe-single__summary-strip {
    display: none;
}

.recipe-single .section.section--tight {
    padding-top: 16px;
}

.embedded-recipe {
    margin-top: 28px;
    padding: 28px;
}

.embedded-recipe__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.embedded-recipe__title {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.06;
}

.embedded-recipe__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-strong);
    white-space: nowrap;
}

.embedded-recipe__stars {
    letter-spacing: 0.08em;
    color: #c89b3c;
}

.embedded-recipe__thumb {
    display: block;
    margin-bottom: 18px;
}

.embedded-recipe__thumb img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 28px;
}

.embedded-recipe__meta {
    margin-bottom: 18px;
}

.embedded-recipe__summary {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(45, 36, 29, 0.07);
}

.embedded-recipe__summary .recipe-single__excerpt {
    max-width: none;
}

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

.embedded-recipe__section {
    padding: 0;
}

.embedded-recipe__section h3 {
    margin-bottom: 16px;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.embedded-recipe__footer {
    margin-top: 20px;
}

.entry-content .embedded-recipe + .embedded-recipe {
    margin-top: 36px;
}

.recipe-single__thumb img {
    border-radius: 32px;
    max-height: 620px;
    object-fit: cover;
    width: 100%;
}

.recipe-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
}

.recipe-layout__main,
.recipe-layout__sidebar {
    display: grid;
    gap: 16px;
}

.recipe-summary-card {
    padding-top: 20px;
    padding-bottom: 20px;
}

.recipe-layout__sidebar {
    align-self: start;
}

.ingredient-list,
.step-list,
.tips-list,
.related-list,
.faq-list,
.comment-list {
    display: grid;
    gap: 14px;
}

.ingredient-list label {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--bg-soft);
}

.ingredient-list input:checked + span {
    text-decoration: line-through;
    opacity: 0.6;
}

.step-list {
    counter-reset: step;
}

.step-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 18px;
    background: var(--bg-soft);
}

.step-list li::before {
    counter-increment: step;
    content: counter(step);
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}

.tips-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.tips-list__item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--bg-soft);
}

.tips-list__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(91, 53, 32, 0.1);
    font-size: 1.1rem;
    line-height: 1;
}

.rating-badge {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-strong);
    font-weight: 800;
}

.related-article-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(45, 36, 29, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-article-card__thumb {
    display: block;
    aspect-ratio: 1.15 / 0.82;
    background: linear-gradient(135deg, #efc9b0, #f8f1e7);
}

.related-article-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    flex: 1 1 auto;
}

.related-article-card__body h4 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.15;
}

.related-article-card__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.related-article-card__button {
    width: 100%;
    margin-top: auto;
}

.recipe-single__video {
    width: 100%;
}

.recipe-single__video iframe,
.recipe-single__video .wp-video,
.recipe-single__video video,
.recipe-single__video embed,
.recipe-single__video object {
    display: block;
    width: 100% !important;
    max-width: 100%;
    aspect-ratio: 560 / 314;
    border: 0;
}

.related-list {
    gap: 18px;
}

.related-recipe-card {
    background: rgba(255, 255, 255, 0.88);
}

.related-recipe-card__thumb {
    aspect-ratio: 1.22 / 0.82;
}

.related-recipe-card__body p {
    -webkit-line-clamp: 3;
}

.faq-list details {
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--bg-soft);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
}

.page-content,
.entry-content {
    max-width: 780px;
}

.page-content > * + *,
.entry-content > * + * {
    margin-top: 18px;
}

.comment-card {
    padding: 18px;
    border-radius: 18px;
}

.comment-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.comments-area .comment-respond {
    margin-top: 24px;
}

.site-footer {
    margin-top: 40px;
    padding: 44px 0 20px;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(245, 235, 222, 0.98) 100%);
    border-top: 1px solid rgba(91, 53, 32, 0.12);
    box-shadow:
        0 -18px 36px rgba(90, 52, 26, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    padding: 30px 0 22px;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 14px;
}

.site-footer__logo img {
    display: block;
    width: auto;
    max-width: 236px;
    max-height: 116px;
}

.site-footer__title {
    font-size: 2rem;
}

.site-footer__text,
.site-footer__bottom,
.site-footer .menu {
    color: var(--muted);
}

.site-footer .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(91, 53, 32, 0.1);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
    justify-content: flex-end;
}

.footer-socials__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background: transparent;
    color: var(--text);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.footer-socials__link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-socials__link:hover {
    transform: translateY(-2px);
    background: transparent;
    border-color: transparent;
}

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

@media (max-width: 1024px) {
    .hero__grid,
    .media-grid,
    .subscribe-banner,
    .recipe-layout,
    .site-footer__grid,
    .recipe-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

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

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

    .archive-grid--category {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .archive-filter__groups {
        grid-template-columns: 1fr;
    }

    .blog-grid,
    .blog-single__layout,
    .blog-single__sidebar .related-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .embedded-recipe {
        padding: 22px;
    }

    .embedded-recipe__header {
        flex-direction: column;
        align-items: stretch;
    }

    .embedded-recipe__rating {
        align-self: flex-start;
    }

    .embedded-recipe__grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        backdrop-filter: none;
        background: #fffaf3;
        border-bottom: 1px solid rgba(45, 36, 29, 0.06);
    }

    .site-header__inner {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 10px 0;
        min-height: 68px;
    }

    .recipe-single__header {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__stats,
    .filter-form__grid {
        grid-template-columns: 1fr;
    }

    .site-branding {
        width: 100%;
        justify-content: center;
        flex: 0 0 auto;
    }

    .site-branding__logo--fallback img,
    .site-branding__logo .custom-logo {
        max-width: 124px;
        max-height: 64px;
        margin: 0 auto;
    }

    .site-header__burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        align-self: auto;
        width: 44px;
        height: 44px;
        margin-left: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 72;
    }

    .site-header__burger span {
        width: 28px;
        height: 3px;
        margin: 0;
        background: #8a5a33;
    }

    .site-nav {
        display: block;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100dvh;
        padding: 84px 28px 28px;
        background: #ffffff;
        border: 0;
        box-shadow: none;
        transform: translateX(100%);
        transition: transform 0.28s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav ul,
    .site-nav ul {
        display: grid;
        width: 100%;
        gap: 10px;
    }

    .site-nav .sub-menu {
        padding: 6px 0 0 18px;
        margin-top: 2px;
    }

    .site-nav a {
        padding: 8px 0;
        font-size: 1.05rem;
        color: #5b3520;
        border-radius: 0;
        background: transparent;
    }

    .site-nav a:hover,
    .site-nav .current-menu-item > a {
        background: transparent;
        color: #5b3520;
    }

    .site-header__search {
        width: 100%;
        text-align: center;
    }

    .site-nav__backdrop {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        padding: 0;
        background: rgba(45, 36, 29, 0.18);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
        z-index: 998;
    }

    .site-header.nav-open .site-header__burger span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.nav-open .site-header__burger span:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-open .site-header__burger span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-header.nav-open .site-nav__backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .site-header.nav-open .site-header__burger {
        position: fixed;
        top: 10px;
        right: 12px;
        border-color: transparent;
        background: transparent;
        z-index: 1000;
    }

    .site-header.nav-open .site-header__burger span {
        background: #5b3520;
    }

    body.nav-open {
        overflow: hidden;
    }

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

    .archive-hero--category {
        padding-top: 32px;
    }

    .archive-hero--category h1 {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .archive-grid--category {
        grid-template-columns: 1fr;
    }

    .recipe-card__title--archive {
        font-size: 1.16rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-socials__grid {
        grid-template-columns: 1fr;
    }

    .blog-card h2 {
        font-size: 1.24rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-socials {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .recipe-card,
    .collection-card,
    .search-card,
    .hero__content,
    .author-card,
    .video-block {
        animation: rise 0.7s ease both;
    }

    .recipe-card:nth-child(2),
    .collection-card:nth-child(2) {
        animation-delay: 0.08s;
    }

    .recipe-card:nth-child(3),
    .collection-card:nth-child(3) {
        animation-delay: 0.16s;
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-ref {
    padding: 28px 0 56px;
    background:
        radial-gradient(circle at 20% 0%, rgba(172, 142, 87, 0.12), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(141, 109, 69, 0.1), transparent 28%),
        #f6f1e7;
}

.home-ref > .container > section + section {
    position: relative;
    margin-top: 26px;
    padding-top: 26px;
}

.home-ref > .container > section + section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(91, 53, 32, 0), rgba(91, 53, 32, 0.18) 18%, rgba(91, 53, 32, 0.18) 82%, rgba(91, 53, 32, 0));
}

.home-author-banner,
.home-monetization-strip,
.home-subscribe-callout {
    position: relative;
}

.home-author-banner::before,
.home-monetization-strip::before,
.home-subscribe-callout::before {
    content: "";
    position: absolute;
    top: -26px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(91, 53, 32, 0), rgba(91, 53, 32, 0.18) 18%, rgba(91, 53, 32, 0.18) 82%, rgba(91, 53, 32, 0));
}

.home-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 0 0 22px 22px;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 18px 40px rgba(60, 44, 28, 0.18);
}

.home-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 28%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 24px);
}

.home-hero-banner__plate {
    display: none;
}

.home-hero-banner__plate--left {
    left: -90px;
    bottom: -26px;
    width: 300px;
    height: 300px;
    background:
        radial-gradient(circle at 50% 50%, rgba(91, 53, 32, 0.22), transparent 52%),
        linear-gradient(135deg, #6a482f, #5b3520);
}

.home-hero-banner__plate--right {
    top: -48px;
    right: -78px;
    width: 360px;
    height: 360px;
    background:
        radial-gradient(circle at 52% 42%, rgba(248, 245, 225, 0.95) 0 22%, transparent 22%),
        radial-gradient(circle at 60% 44%, #d94a2f 0 2.6%, transparent 2.8%),
        radial-gradient(circle at 48% 52%, #88aa57 0 24%, #f0f0db 24% 32%, transparent 32%),
        linear-gradient(135deg, #b8c592, #ebead8);
}

.home-hero-banner__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0;
    padding: 60px 40px 46px;
    text-align: left;
    color: #5b3520;
}

.home-hero-banner__eyebrow {
    margin: 0 0 12px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(91, 53, 32, 0.96);
}

.home-hero-banner__content h1 {
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #5b3520;
    text-shadow: none;
}

.home-hero-banner__content p {
    margin: 0;
    max-width: 480px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #6f6257;
    text-shadow: none;
}

.home-hero-banner__actions {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 26px;
}

.home-hero-banner .button--secondary {
    background: #f8f0e1;
    color: #2d241d;
}

.home-search-bar {
    margin-top: 0;
    padding: 28px 28px 18px;
    background: transparent;
    border-bottom: 0;
}

.home-search-bar__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.home-search-bar__field {
    min-height: 72px;
    background: #fff;
    border: 1px solid #dad0c3;
    box-shadow: 0 8px 18px rgba(89, 74, 58, 0.08);
}

.home-search-bar__field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border-radius: 14px;
}

.home-search-bar__field input {
    border: 0;
    box-shadow: none;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 700;
    background: transparent;
}

.home-search-bar__field input:focus,
.home-search-bar__field input:focus-visible {
    outline: none;
    border: 0;
    box-shadow: none;
}

.home-search-bar__icon {
    color: #9b917f;
    font-weight: 800;
    font-size: 1.1rem;
}

.home-search-bar__form .button {
    min-height: 72px;
    min-width: 138px;
    border-radius: 14px;
}

.home-block {
    padding: 0;
}

.home-block__head {
    margin-bottom: 18px;
}

.home-block__head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.home-card-grid--four {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-thumb-card h3,
.home-video-card h3 {
    margin: 10px 0 0;
    font-size: 1.15rem;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.home-thumb-card__image,
.home-video-card__image {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #d1b08e, #8a603f);
    aspect-ratio: 1.35 / 1;
    box-shadow: 0 10px 24px rgba(86, 62, 42, 0.16);
}

.home-thumb-card__image img,
.home-video-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-thumb-card__placeholder,
.home-thumb-card__image--fallback {
    display: grid;
    place-items: center;
    height: 100%;
    color: #fff;
    font-weight: 700;
}

.home-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
}

.home-promo-grid {
    display: none;
}

.home-promo-grid-v2 {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(180px, 1fr));
    gap: 18px;
    padding-top: 0;
}

.home-promo {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(78, 56, 37, 0.16);
}

.home-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34, 22, 12, 0.12) 0%, rgba(32, 21, 12, 0.36) 46%, rgba(20, 13, 8, 0.72) 100%);
}

.home-promo--image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-promo__content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 22px 18px 16px;
    color: #fff;
    max-width: 88%;
}

.home-promo__content h3 {
    margin: 0 0 6px;
    font-size: 1.8rem;
    line-height: 1.04;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.home-promo__content p {
    margin: 0 0 14px;
    font-weight: 700;
    line-height: 1.38;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.home-promo__button {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: #f6efe5;
    color: #2d241d;
    font-weight: 800;
}

.home-promo-grid-v2 .home-promo {
    min-height: 180px;
    height: 100%;
}

.home-promo-grid-v2 .home-promo--tall {
    grid-row: 1 / span 3;
    min-height: 100%;
}

.home-promo-grid-v2 .home-promo--tall .home-promo__content {
    padding-top: 30px;
}

.home-video-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
    gap: 0;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 0;
    background: #262626;
    color: #fff;
    box-shadow: 0 18px 40px rgba(25, 18, 12, 0.2);
}

.home-video-showcase__player {
    position: relative;
    min-width: 0;
    background: #111;
}

.home-video-showcase__frame {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.home-video-showcase__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    transform: none;
}

.home-video-showcase__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 22px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.04) 34%, rgba(0, 0, 0, 0.48) 100%);
    pointer-events: none;
}

.home-video-showcase__branding {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 70%;
}

.home-video-showcase__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.9);
    color: #5b3520;
    font-weight: 800;
}

.home-video-showcase__channel {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.home-video-showcase__overlay h3 {
    margin: 0;
    max-width: 75%;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.06;
    color: #fff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.36);
}

.home-video-showcase__playlist {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    background: #2a2a2a;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.home-video-showcase__playlist-head {
    display: grid;
    gap: 8px;
    padding: 20px 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-video-showcase__playlist-head strong {
    font-size: 1rem;
    line-height: 1.3;
    color: #fff;
}

.home-video-showcase__playlist-head span {
    font-size: 0.92rem;
    font-style: italic;
    color: #f2d8a8;
}

.home-video-showcase__playlist-list {
    display: grid;
    gap: 2px;
    max-height: 410px;
    overflow-y: auto;
}

.home-video-showcase__playlist-list::-webkit-scrollbar {
    width: 8px;
}

.home-video-showcase__playlist-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.home-video-showcase__item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: start;
    width: 100%;
    min-height: 80px;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    box-shadow: none;
    transition: background-color 0.2s ease;
}

.home-video-showcase__item:hover,
.home-video-showcase__item.is-active {
    background: rgba(255, 255, 255, 0.12);
}

.home-video-showcase__item-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
}

.home-video-showcase__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-video-showcase__item-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.home-video-showcase__item-copy strong {
    font-size: 0.95rem;
    line-height: 1.32;
    color: #fff;
}

.home-video-showcase__item-copy span {
    font-size: 0.88rem;
    font-style: italic;
    color: #f2d8a8;
}

.home-author-banner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
    gap: 0;
    margin-top: 0;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(180deg, #fffefb, #efe8dd);
    border: 1px solid #e0d6c7;
    box-shadow: 0 12px 28px rgba(85, 66, 44, 0.1);
}

.home-author-banner__text {
    padding: 38px 40px;
}

.home-author-banner__text h2 {
    margin-bottom: 12px;
}

.home-author-banner__text p {
    max-width: 460px;
    margin-bottom: 24px;
    font-size: 1.12rem;
}

.home-author-banner__photo {
    min-height: 290px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-monetization-strip {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: center;
    margin-top: 0;
    padding: 28px 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff7ef, #f0e6d8);
    border: 1px solid #e5d6c2;
    box-shadow: 0 10px 24px rgba(85, 66, 44, 0.08);
}

.home-monetization-strip__copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.home-monetization-strip__copy p {
    margin: 0;
    color: var(--muted);
}

.home-monetization-strip__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.home-subscribe-callout {
    padding: 8px 0 6px;
    text-align: center;
}

.home-subscribe-callout h2 {
    color: #5b3520;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

@media (max-width: 1024px) {
    .home-card-grid--four,
    .home-promo-grid,
    .home-author-banner,
    .home-monetization-strip {
        grid-template-columns: 1fr 1fr;
    }

    .home-promo-grid-v2 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .home-promo-grid-v2 .home-promo--tall {
        grid-row: auto;
    }

    .home-search-bar__form {
        grid-template-columns: 1fr;
    }

    .archive-filter {
        padding: 14px;
    }

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

    .archive-filter__bar {
        grid-template-columns: 1fr;
    }

    .archive-filter__toggle,
    .archive-filter__submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .home-hero-banner {
        min-height: 420px;
        border-radius: 16px;
        background-position: 68% center;
    }

    .home-hero-banner__plate--left {
        width: 210px;
        height: 210px;
        left: -82px;
    }

    .home-hero-banner__plate--right {
        width: 220px;
        height: 220px;
        right: -80px;
        top: -18px;
    }

    .home-hero-banner__actions,
    .home-card-grid--four,
    .home-promo-grid,
    .home-author-banner,
    .home-monetization-strip {
        grid-template-columns: 1fr;
    }

    .home-promo-grid-v2 {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
    }

    .home-promo-grid-v2 .home-promo,
    .home-promo-grid-v2 .home-promo--tall {
        display: block;
        grid-row: auto;
        min-height: 260px;
    }

    .home-promo-grid-v2 .home-promo--tall {
        order: -1;
    }

    .home-promo__content {
        max-width: 100%;
    }

    .home-video-showcase {
        grid-template-columns: 1fr;
    }

    .home-video-showcase__overlay {
        padding: 16px;
    }

    .home-video-showcase__branding,
    .home-video-showcase__overlay h3 {
        max-width: 100%;
    }

    .home-video-showcase__playlist-list {
        max-height: 420px;
    }

    .home-video-showcase__item {
        grid-template-columns: 88px 1fr;
        gap: 12px;
    }

    .home-hero-banner__actions {
        flex-direction: column;
    }

    .home-hero-banner__content {
        max-width: 100%;
        padding: 34px 22px 28px;
    }

    .home-hero-banner__content p {
        max-width: 340px;
    }

    .home-search-bar {
        padding-left: 0;
        padding-right: 0;
    }

    .home-author-banner__text {
        padding: 28px 24px;
    }
}
