

/* ── Design Tokens (inheriting from em_styles.css) ── */
.rh-app {
    --rh-brown-dark: #452508;
    --rh-orange-brand: #b45313;
    --rh-orange-hover: #db7f31;
    --rh-cream-bg: #faf7f3;
    --rh-tan-border: #e5d9cc;
    --rh-tan-rule: #c9b9a6;
    --rh-tan-muted: #a89580;
    --rh-gray-text: #5f5f5f;
    --rh-gray-warm: #665c53;
    --rh-brown-accent: #854516;
    --rh-brown-deep: #593700;
    --rh-brown-caption: #6b4300;
    --rh-red-recipe: #893136;
    --rh-green-dark: #3b630e;
    --rh-green-muted: #6b7c3e;
    --rh-calm-blue: #467886;
    --rh-white: #ffffff;
    --rh-black: #000000;
    --rh-brown-tint: rgba(133,69,22,0.06);
    --rh-overlay-dark: rgba(0,0,0,.85);

    /* Recipe-specific tokens */
    --rh-pill-seafood: #2a7d8e;
    --rh-pill-vegetarian: #6b8c3e;
    --rh-pill-dessert: #a8496b;
    --rh-pill-chicken: #b45313;
    --rh-pill-salad: #4a8c5c;
    --rh-pill-soup: #c4762b;
    --rh-pill-breakfast: #d4943a;
    --rh-pill-basics: #7a6e5f;
    --rh-pill-glutenfree: #2e7d5b;
    --rh-pill-dairyfree: #3a7ca5;
    --rh-pill-vegan: #4a7c3e;
    --rh-pill-quick: #c75e3a;

    --rh-font-display: 'Brother-1816', Helvetica, Arial, serif;
    --rh-font-nav: "trajan-pro-3", serif;
    --rh-font-body: "Trebuchet MS", Arial, Helvetica, sans-serif;
    --rh-font-editorial: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --rh-max-width: 980px;
    --rh-wide-max: 1100px;
    
    /*JOURNAL SCHEME*/
    /* Color System — disciplined palette */
    --rj-ink:           #2d1e12;       /* deep brown-black for editorial text */
    --rj-ink-soft:      #452508;       /* brown-dark from em_styles */
    --rj-ink-muted:     #665c53;       /* gray-warm */
    --rj-ink-whisper:   #a89580;       /* tan-muted */
    --rj-paper:         #faf7f3;       /* cream-bg */
    --rj-paper-warm:    #f3ece1;       /* slightly deeper cream for contrast blocks */
    --rj-paper-deep:    #ede2d0;       /* deeper for quote blocks */
    --rj-rule:          #c9b9a6;       /* tan-rule — for hairlines */
    --rj-rule-soft:     #e5d9cc;       /* tan-border — lighter */
    --rj-accent:        #893136;       /* red-recipe — single primary accent */
    --rj-accent-hover:  #6d2529;
    --rj-brand:         #b45313;       /* orange-brand — reserved for CTAs */
    --rj-brand-hover:   #db7f31;
    --rj-olive:         #6b7c3e;       /* green-muted — secondary accent, sparingly */
    --rj-black:         #000000;

    /* Typography — editorial cookbook system */
    --rj-serif:         'Cormorant Garamond', 'EB Garamond', Georgia, 'Times New Roman', serif;
    --rj-serif-text:    'EB Garamond', 'Cormorant Garamond', Georgia, serif;
    --rj-sans:          'brother-1816', 'Helvetica Neue', Arial, sans-serif;
    --rj-display:       'trajan-pro-3', 'Cormorant Garamond', Georgia, serif;

    /* Layout */
    --rj-content:       960px;      /* main text column */
    --rj-wide:          1180px;     /* wider feature rows */
    --rj-narrow:        640px;      /* editor's letter, pull quotes */
    --rj-gutter:        24px;

    /* Motion */
    --rj-ease:          cubic-bezier(0.2, 0.65, 0.3, 1);
}

/* ── Google Fonts import ── */
/*@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');*/

/* ── Base Reset for Recipe Hub ── */
.rh-app *,
.rh-app *::before,
.rh-app *::after {
    box-sizing: border-box;
}

.rh-app {
    font-family: var(--rh-font-display);
    color: var(--rh-brown-dark);
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
}

.rh-app img {
    max-width: 100%;
    height: auto;
    display: block;
}

.rh-app a {
    color: var(--rh-calm-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.rh-app a:hover {
    color: var(--rh-orange-hover);
}

/* ── Layout Container ── */
.rh-container {
    max-width: var(--rh-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.rh-container--wide {
    max-width: var(--rh-wide-max);
}

.rh-hero {
    position: relative;
    max-height: 300px;
    overflow: hidden;
    background-color: var(--rh-brown-dark);
}

.rh-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.rh-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(
        to bottom,
        rgba(69,37,8,0.15) 0%,
        rgba(69,37,8,0.55) 100%
    );
}

.rh-hero__title {
    font-family: var(--rh-font-editorial);
    font-size: 52px;
    font-weight: 300;
    color: var(--rh-white);
    letter-spacing: 1px;
    margin: 0 0 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.rh-hero__subtitle {
    font-family: var(--rh-font-display);
    font-size: 14px;
    font-weight: 200;
    color: rgba(255,255,255,0.85);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}


.rh-intro {
    text-align: center;
    padding: 48px 20px 36px;
    max-width: 680px;
    margin: 0 auto;
}

.rh-intro__text {
    font-family: var(--rh-font-editorial);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--rh-gray-warm);
    margin: 0;
}

.rh-intro__rule {
    width: 60px;
    height: 1px;
    background: var(--rh-tan-rule);
    border: none;
    margin: 28px auto 0;
}

.rh-search {
    max-width: 520px;
    margin: 0 auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 9001;
}

.rh-search__wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--rh-tan-border);
    border-radius: 2px;
    background: var(--rh-white);
    overflow: hidden;
    transition: border-color 0.2s;
}

.rh-search__wrapper:focus-within {
    border-color: var(--rh-tan-muted);
}

.rh-search__icon {
    padding: 0 14px;
    color: var(--rh-tan-muted);
    flex-shrink: 0;
}

.rh-search__icon svg {
    display: block;
}

.rh-search__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 14px 13px 0;
    font-family: var(--rh-font-display);
    font-size: 14px;
    font-weight: 300;
    color: var(--rh-brown-dark);
    background: transparent;
}

.rh-search__input::placeholder {
    color: var(--rh-tan-muted);
    font-style: italic;
}


.rh-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 28px;
    padding: 0 20px 12px;
    max-width: var(--rh-max-width);
    margin: 0 auto;
}

.rh-categories__link {
    font-family: var(--rh-font-nav);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rh-brown-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.rh-categories__link:hover,
.rh-categories__link.is-active {
    color: var(--rh-orange-brand);
    border-bottom-color: var(--rh-orange-brand);
}

/* "Browse All" link — differentiated */
.rh-categories__browse {
    font-family: var(--rh-font-editorial);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--rh-calm-blue);
    border-bottom: 1px solid rgba(70,120,134,0.3);
    padding: 8px 0 6px;
    margin-left: 12px;
    position: relative;
}

.rh-categories__browse:hover {
    color: var(--rh-orange-hover);
    border-bottom-color: var(--rh-orange-hover);
}

.rh-categories__browse::before {
    content: '—';
    margin-right: 10px;
    color: var(--rh-tan-rule);
    font-style: normal;
}

/* ── Category Divider ── */
.rh-cat-divider {
    width: 100%;
    max-width: var(--rh-max-width);
    margin: 0 auto;
    height: 1px;
    background: var(--rh-tan-border);
}

.rh-featured {
    padding: 36px 0 20px;
}

.rh-featured__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-width: var(--rh-max-width);
    margin: 0 auto 24px;
    padding: 0 20px;
}

.rh-featured__label {
    font-family: var(--rh-font-nav);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rh-tan-muted);
}

.rh-featured__viewall {
    font-family: var(--rh-font-editorial);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    color: var(--rh-calm-blue);
    cursor: pointer;
    transition: color 0.2s;
}

.rh-featured__viewall:hover {
    color: var(--rh-orange-hover);
}

.rh-featured__viewall svg {
    vertical-align: middle;
    margin-left: 4px;
    transition: transform 0.2s;
}

.rh-featured__viewall:hover svg {
    transform: translateX(3px);
}

.rh-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--rh-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 860px) {
    .rh-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 540px) {
    .rh-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── Recipe Card ── */
.rh-card {
    background: var(--rh-white);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--rh-tan-border);
}

.rh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(69,37,8,0.1);
}

.rh-card__image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.rh-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rh-card:hover .rh-card__image {
    transform: scale(1.05);
}

.rh-card__time {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(69,37,8,0.8);
    color: var(--rh-white);
    font-family: var(--rh-font-display);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.rh-card__body {
    padding: 16px;
}

.rh-card__category {
    font-family: var(--rh-font-display);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rh-orange-brand);
    margin: 0 0 6px;
}

.rh-card__title {
    font-family: var(--rh-font-editorial);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--rh-brown-dark);
    margin: 0 0 8px;
}

.rh-card__excerpt {
    font-family: var(--rh-font-display);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--rh-gray-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rh-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--rh-tan-border);
    font-family: var(--rh-font-display);
    font-size: 10px;
    font-weight: 400;
    color: var(--rh-tan-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rh-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rh-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.rh-empty-state {
    max-width: var(--rh-max-width);
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    color: var(--rh-tan-muted);
    font-family: var(--rh-font-display);
}

.rh-empty-state__title {
    font-family: var(--rh-font-editorial);
    font-size: 20px;
    color: var(--rh-brown-dark);
    margin: 0 0 8px;
}

.rh-empty-state__body {
    font-size: 13px;
    margin: 0;
}

.rh-weekly {
    max-width: var(--rh-max-width);
    margin: 40px auto 40px;
    padding: 0 20px;
}

.rh-weekly__banner {
    position: relative;
    min-height: 400px;
    display: flex;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    background: var(--rh-brown-dark);
}

.rh-weekly__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.rh-weekly__banner:hover .rh-weekly__image {
    opacity: 0.45;
    transform: scale(1.02);
}

.rh-weekly__content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 48px;
    background: linear-gradient(
        to top,
        rgba(69,37,8,0.7) 0%,
        rgba(69,37,8,0.1) 60%,
        transparent 100%
    );
    z-index: 1;
}

@media (max-width: 540px) {
    .rh-weekly__content {
        padding: 30px 24px;
    }
}

.rh-weekly__kicker {
    font-family: var(--rh-font-nav);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rh-cream-bg);
    margin-bottom: 10px;
}

.rh-weekly__title {
    font-family: var(--rh-font-editorial);
    font-size: 38px;
    font-weight: 400;
    color: var(--rh-white);
    margin: 0 0 10px;
    max-width: 500px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 540px) {
    .rh-weekly__title {
        font-size: 30px;
    }
}

.rh-weekly__desc {
    font-family: var(--rh-font-display);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 440px;
    margin: 0 0 18px;
    line-height: 1.7;
}

.rh-weekly__cta {
    display: inline-block;
    font-family: var(--rh-font-nav);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rh-white);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px 24px;
    border-radius: 2px;
    transition: all 0.25s;
    align-self: flex-start;
}

.rh-weekly__cta:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    color: var(--rh-white);
}

.rh-section-header {
    text-align: center;
    margin-bottom: 28px;
}

.rh-section-header__kicker {
    font-family: var(--rh-font-nav);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rh-tan-muted);
    margin: 0 0 6px;
}

.rh-section-header__title {
    font-family: var(--rh-font-editorial);
    font-size: 30px;
    font-weight: 400;
    color: var(--rh-brown-dark);
    margin: 0;
}

.rh-slim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--rh-max-width);
    margin: 0 auto;
    padding: 0 20px 48px;
}

@media (max-width: 860px) {
    .rh-slim-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 540px) {
    .rh-slim-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.rh-slim-card {
    display: block;
    background: var(--rh-white);
    border: 1px solid var(--rh-tan-border);
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rh-slim-card__link {
    display: flex;
    gap: 14px;
    padding: 14px;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    align-items: stretch;
}

.rh-slim-card__link:hover {
    color: inherit;
    text-decoration: none;
}

.rh-slim-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(69,37,8,0.08);
}

.rh-app .rh-slim-card__image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.rh-slim-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.rh-slim-card__title {
    font-family: var(--rh-font-editorial);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--rh-brown-dark);
    margin: 0 0 4px;
}

.rh-slim-card__meta {
    font-family: var(--rh-font-display);
    font-size: 10px;
    font-weight: 400;
    color: var(--rh-tan-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}


.rh-category-page {
    padding: 10px 0 60px;
}

.rh-category-page__header {
    text-align: center;
    margin-bottom: 36px;
    padding: 0 20px;
}

.rh-category-page__title {
    font-family: var(--rh-font-editorial);
    font-size: 36px;
    font-weight: 400;
    color: var(--rh-brown-dark);
    margin: 0 0 8px;
}

.rh-category-page__count {
    font-family: var(--rh-font-display);
    font-size: 12px;
    font-weight: 300;
    color: var(--rh-tan-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rh-loading-indicator {
    text-align: center;
    padding: 40px 20px;
    font-family: var(--rh-font-display);
    font-size: 12px;
    color: var(--rh-tan-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rh-loading-indicator.is-hidden {
    display: none;
}

.rh-breadcrumb {
    max-width: var(--rh-max-width);
    margin: 70px auto 0 auto;
    padding: 16px 20px 0;
}

.rh-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--rh-font-display);
    font-size: 11px;
    font-weight: 300;
    color: var(--rh-tan-muted);
}

.rh-breadcrumb__item {
    display: flex;
    align-items: center;
}

.rh-breadcrumb__item + .rh-breadcrumb__item::before {
    content: '/';
    margin: 0 8px;
    color: var(--rh-tan-rule);
}

.rh-breadcrumb__link {
    color: var(--rh-tan-muted);
    transition: color 0.2s;
}

.rh-breadcrumb__link:hover {
    color: var(--rh-orange-brand);
}

.rh-breadcrumb__current {
    color: var(--rh-brown-dark);
}

.rh-nav-dropdown-wrap {
    position: relative;
}

.rh-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 7px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 8px 30px rgba(69,37,8,0.14), 0 1px 4px rgba(69,37,8,0.08);
    padding: 14px 0;
    z-index: 9999;
    min-width: 200px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.rh-nav-dropdown-wrap:hover .rh-nav-dropdown,
.rh-nav-dropdown.is-visible {
    display: block;
    opacity: 1;
}

.rh-nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.rh-nav-dropdown__item {
    display: block;
    padding: 8px 28px;
    font-family: var(--rh-font-display);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #452508;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-align: left;
}

.rh-nav-dropdown__item:hover {
    background: #faf7f3;
    color: #b45313;
}

.rh-nav-dropdown__divider {
    height: 1px;
    background: #e5d9cc;
    margin: 8px 20px;
}

.rh-nav-dropdown__item--all {
    font-weight: 400;
    color: #467886;
    font-style: italic;
}

.rh-nav-dropdown__item--all:hover {
    color: #b45313;
}


.rh-recipe {
    max-width: var(--rh-max-width);
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* ── Header Row: Title left, Image right ── */
.rh-recipe__header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 36px;
    align-items: start;
    padding: 28px 0 0;
}

@media (max-width: 860px) {
    .rh-recipe__header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.rh-recipe__header--no-image {
    grid-template-columns: 1fr;
}

.rh-recipe__title-block {
    padding-top: 12px;
}

.rh-recipe__title {
    font-family: var(--rh-font-editorial);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--rh-brown-dark);
    margin: 0 0 12px;
}

.rh-recipe__author {
    font-family: var(--rh-font-display);
    font-size: 13px;
    font-weight: 400;
    color: var(--rh-gray-text);
    margin: 0 0 6px;
}

.rh-recipe__author a {
    color: var(--rh-calm-blue);
    font-weight: 500;
}

.rh-recipe__date {
    font-family: var(--rh-font-display);
    font-size: 12px;
    font-weight: 300;
    color: var(--rh-tan-muted);
    margin: 0 0 16px;
}

/* Pills / Tags */
.rh-recipe__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.rh-pill {
    display: inline-block;
    font-family: var(--rh-font-display);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    background: var(--rh-pill-basics);
    color: var(--rh-white);
    cursor: pointer;
}

/*.rh-pill--seafood { background: var(--rh-pill-seafood); }
.rh-pill--vegetarian { background: var(--rh-pill-vegetarian); }
.rh-pill--desserts { background: var(--rh-pill-dessert); }
.rh-pill--chicken { background: var(--rh-pill-chicken); }
.rh-pill--salad { background: var(--rh-pill-salad); }
.rh-pill--salads { background: var(--rh-pill-salad); }
.rh-pill--soups { background: var(--rh-pill-soup); }
.rh-pill--breakfast { background: var(--rh-pill-breakfast); }
.rh-pill--basics { background: var(--rh-pill-basics); }
.rh-pill--glutenfree { background: var(--rh-pill-glutenfree); }
.rh-pill--dairyfree { background: var(--rh-pill-dairyfree); }
.rh-pill--vegan { background: var(--rh-pill-vegan); }
.rh-pill--quick { background: var(--rh-pill-quick); }*/

/* Action bar: Save, Share, Print */
.rh-recipe__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.rh-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--rh-font-display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--rh-brown-dark);
    padding: 8px 14px;
    border: 1px solid var(--rh-tan-border);
    border-radius: 2px;
    background: var(--rh-white);
    cursor: pointer;
    transition: all 0.2s;
}

.rh-action-btn:hover {
    border-color: var(--rh-orange-brand);
    color: var(--rh-orange-brand);
}

.rh-action-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.rh-print-group {
    position: relative;
    display: inline-flex;
}

.rh-print-photo-link {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--rh-font-display);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--rh-tan-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.rh-print-photo-link:hover {
    color: var(--rh-orange-brand);
}

/* Hero Image */
.rh-recipe__hero-image {
    width: 100%;
    height: auto;
    border-radius: 3px;
    /*aspect-ratio: 4/3;
    object-fit: cover;*/
}

.rh-recipe__image-credit {
    font-family: var(--rh-font-display);
    font-size: 10px;
    color: var(--rh-tan-muted);
    margin-top: 6px;
    font-style: italic;
}

/* ── Stats + Intro Row ── */
.rh-recipe__info-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 28px 0;
    border-top: 1px solid var(--rh-tan-border);
    border-bottom: 1px solid var(--rh-tan-border);
    margin-top: 28px;
}

@media (max-width: 860px) {
    .rh-recipe__info-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.rh-recipe__info-row--no-stats {
    grid-template-columns: 1fr;
    padding: 0;
    border-bottom: none;
}

.rh-recipe__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    align-content: start;
}

.rh-stat {
    display: flex;
    flex-direction: column;
}

.rh-stat__label {
    font-family: var(--rh-font-display);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rh-tan-muted);
    margin-bottom: 4px;
}

.rh-stat__value {
    font-family: var(--rh-font-editorial);
    font-size: 18px;
    font-weight: 500;
    color: var(--rh-brown-dark);
}

.rh-recipe__intro {
    font-family: var(--rh-font-display);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--rh-gray-warm);
}

.rh-recipe__intro p {
    margin: 0 0 14px;
}

/* ── Recipe Body: Ingredients left, Content right ── */
.rh-recipe__body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 36px 0 0;
}

@media (max-width: 860px) {
    .rh-recipe__body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Ingredients Sidebar */
.rh-ingredients {
    position: relative;
    
}
.rh-ingredients__inner {
    position: sticky;
    top: 20px;
    background: var(--rh-cream-bg);
    border: 1px solid var(--rh-tan-border);
    border-radius: 3px;
    padding: 20px 24px 24px;
}

@media (max-width: 860px) {
    .rh-ingredients__inner {
        position: static;
    }
}

.rh-ingredients__heading {
    font-family: var(--rh-font-editorial);
    font-size: 22px;
    font-weight: 500;
    color: var(--rh-brown-dark);
    margin: 0 0 8px;
}

.rh-ingredients__yield {
    font-family: var(--rh-font-display);
    font-size: 12px;
    font-weight: 400;
    color: var(--rh-gray-text);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rh-tan-border);
}

.rh-ingredients__yield strong {
    font-weight: 500;
    color: var(--rh-brown-dark);
}

.rh-ingredients__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rh-ingredients__list li {
    font-family: var(--rh-font-display);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--rh-brown-dark);
    padding: 7px 0;
    border-bottom: 1px dotted var(--rh-tan-border);
}

.rh-ingredients__list li:last-child {
    border-bottom: none;
}

.rh-ingredients__qty {
    font-weight: 500;
    color: var(--rh-brown-accent);
    margin-right: 4px;
}

.rh-ingredients__list a {
    color: var(--rh-calm-blue);
    border-bottom: 1px dotted var(--rh-calm-blue);
}

.rh-ingredients__list a:hover {
    color: var(--rh-orange-hover);
    border-bottom-color: var(--rh-orange-hover);
}

/* Article Content &mdash; supplementary notes below recipe */
.rh-article {
    font-family: var(--rh-font-editorial);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--rh-gray-warm);
    border-top: 1px solid var(--rh-tan-border);
    margin-top: 32px;
    padding-top: 24px;
}

.rh-article p {
    margin: 0 0 20px;
}

.rh-article p:last-child {
    margin-bottom: 0;
}

.rh-article h2 {
    font-family: var(--rh-font-editorial);
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: var(--rh-brown-dark);
    margin: 0 0 12px;
}

.rh-article h2:not(:first-child) {
    margin-top: 16px;
}

/* ── Preparation / Method ── */
.rh-preparation {
    padding-top: 16px;
}

.rh-preparation__heading {
    font-family: var(--rh-font-editorial);
    font-size: 26px;
    font-weight: 500;
    color: var(--rh-brown-dark);
    margin: 0 0 24px;
}

.rh-preparation__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step-counter;
}

.rh-preparation__step {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 0 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--rh-tan-border);
}

.rh-preparation__step:last-child {
    border-bottom: none;
}

.rh-preparation__number {
    font-family: var(--rh-font-editorial);
    font-size: 22px;
    font-weight: 600;
    color: var(--rh-tan-rule);
    line-height: 1.2;
    text-align: left;
    padding-right: 0px;
    border-right: 2px solid var(--rh-tan-border);
}

.rh-preparation__text {
    font-family: var(--rh-font-display);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--rh-brown-dark);
    padding-top: 1px;
}


.rh-related {
    max-width: var(--rh-max-width);
    margin: 0 auto;
    padding: 0 20px 36px;
}

.rh-related__heading {
    font-family: var(--rh-font-nav);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rh-tan-muted);
    margin: 0 0 18px;
    text-align: center;
}

.rh-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 860px) {
    .rh-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .rh-related__grid {
        grid-template-columns: 1fr;
    }
}

.rh-product-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.rh-product-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--rh-tan-border);
    border-radius: 3px;
    transition: box-shadow 0.2s;
    cursor: pointer;
    height: 100%;
}

.rh-product-card:hover {
    box-shadow: 0 4px 12px rgba(69,37,8,0.08);
}



.rh-product-card__image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.rh-product-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rh-product-card__name {
    font-family: var(--rh-font-editorial);
    font-size: 14px;
    font-weight: 500;
    color: var(--rh-brown-dark);
    margin: 0 0 4px;
}

.rh-product-card__price {
    font-family: var(--rh-font-display);
    font-size: 12px;
    font-weight: 400;
    color: var(--rh-orange-brand);
}

.rh-product-card__shop {
    font-family: var(--rh-font-display);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rh-calm-blue);
    margin-top: 2px;
}


/* ══════════════════════════════════════════════════════════
   PRINT STYLES
   ══════════════════════════════════════════════════════════ */

@media print {
    /* Hide CMS chrome and non-recipe sections */
    .rh-recipe__actions,
    .rh-related,
    .rh-breadcrumb,
    #headerbox,
    #header,
    #banner-narrow,
    #banner,
    #footer,
    #sitemap,
    #powerby,
    #site-header,
    #site-footer,
    nav,
    header,
    footer,
    aside.global-sidebar,
    .pkn-bottom-cards-wrapper,
    .rh-hero,
    .rh-search,
    .rh-article,
    .pkn-editorial-separator,
    .pkn-newsletter,
    .papertear,
    #slide-container {
        display: none !important;
    }

    /* Reset page height to allow normal scrolling/printing */
    html, body {
        height: auto !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Expand the recipe container to fill the page */
    .rh-recipe {
        max-width: 100%;
        padding: 0;
        margin-bottom: 0 !important;
    }

    /* Default Print (No Photo): Single column header */
    .rh-recipe__header {
        grid-template-columns: 1fr;
    }

    /* Print With Photo: Two column header */
    body.pkn-print-with-photo .rh-recipe__header {
        grid-template-columns: 1fr 2fr;
        gap: 36px;
    }

    /* Hide images by default */
    .rh-recipe__hero-image,
    .rh-recipe__image-credit {
        display: none !important;
    }

    /* Show images when photo print is triggered */
    body.pkn-print-with-photo .rh-recipe__hero-image {
        display: block !important;
        width: 100%;
        /*max-height: 300px;
        object-fit: cover;*/
    }

    body.pkn-print-with-photo .rh-recipe__image-credit {
        display: block !important;
    }

    /* Recipe Body: Restore the 240px Sidebar / Fluid Content layout */
    .rh-recipe__body {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }

    /* Remove sticky positioning and borders from ingredients */
    .rh-ingredients {
        position: static;
        background: none;
        border: none;
    }

    .rh-ingredients__inner {
        position: static;
        background: transparent;
        border: none;
        padding: 0;
    }

    /* Prevent steps from breaking across pages */
    .rh-preparation__step {
        page-break-inside: avoid;
    }

    /* Tweak title size for paper */
    .rh-recipe__title {
        font-size: 28px;
    }
}

.rh-fade-in {
    animation: rhFadeIn 0.4s ease forwards;
}

@keyframes rhFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rh-stagger > * {
    opacity: 0;
    animation: rhFadeIn 0.4s ease forwards;
}
.rh-stagger > *:nth-child(1) { animation-delay: 0s; }
.rh-stagger > *:nth-child(2) { animation-delay: 0.08s; }
.rh-stagger > *:nth-child(3) { animation-delay: 0.16s; }
.rh-stagger > *:nth-child(4) { animation-delay: 0.24s; }
.rh-stagger > *:nth-child(5) { animation-delay: 0.32s; }
.rh-stagger > *:nth-child(6) { animation-delay: 0.4s; }
.rh-stagger > *:nth-child(7) { animation-delay: 0.48s; }
.rh-stagger > *:nth-child(8) { animation-delay: 0.56s; }
.rh-stagger > *:nth-child(9) { animation-delay: 0.64s; }
.rh-stagger > *:nth-child(10) { animation-delay: 0.72s; }

/* share dropdown */
.rh-share-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--rh-white);
    border: 1px solid var(--rh-tan-border);
    border-radius: 3px;
    box-shadow: 0 6px 20px rgba(69,37,8,0.12);
    padding: 8px 0;
    z-index: 100;
    min-width: 160px;
    display: none;
}

.rh-share-dropdown.is-open {
    display: block;
}

.rh-share-dropdown__item {
    display: block;
    padding: 8px 16px;
    font-family: var(--rh-font-display);
    font-size: 12px;
    font-weight: 300;
    color: var(--rh-brown-dark);
    cursor: pointer;
    transition: background 0.15s;
}

.rh-share-dropdown__item:hover {
    background: var(--rh-cream-bg);
    color: var(--rh-orange-brand);
}

.rj-eyebrow {
    font-family: var(--rh-font-display);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
}

.rj-txtlink {
    font-family: var(--rh-font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-bottom: 1px solid var(--rh-tan-rule);
    padding-bottom: 3px;
    cursor: pointer;
    display: inline-block;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.rh-app .rj-txtlink a {
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    color:inherit;
} 
.rj-txtlink .rj-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.25s ease;
}
.rj-txtlink:hover .rj-arrow {
    transform: translateX(4px);
}

.rj-library {
    padding: 36px 20px 24px;
}

.rj-library__inner {
    max-width: var(--rh-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: center;
}

.rj-library__intro {
    padding-right: 10px;
}
.rj-library__eyebrow {
    margin-bottom: 12px;
}
.rj-library__heading {
    font-family: var(--rh-font-editorial);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
    margin-top: 12px;
    letter-spacing: -0.3px;
}
.rj-library__heading em {
    font-style: italic;
}
.rj-library__desc {
    font-family: var(--rh-font-editorial);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rj-library__books {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rj-book {
    text-align: center;
    cursor: pointer;
}
.rj-book__cover {
    aspect-ratio: 3/4;
    /*background: var(--rh-tan-border);*/
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(45,30,18,0.10);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.rj-book:hover .rj-book__cover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(45,30,18,0.15);
}
.rj-book__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rj-book__title {
    font-family: var(--rh-font-editorial);
    font-style: italic;
    font-size: 15px;
    margin-bottom: 2px;
}
.rj-book__sub {
    font-family: var(--rh-font-display);
    font-size: 8.5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: none;
} 

@media (max-width: 860px) {
    .rj-library__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .rj-library__intro { padding-right: 0; text-align: center; }
}


/*used to be inline styles*/
/* ── Newsletter ─────────────────────────────────────── */
.pkn-newsletter {
    background: #452508;
    color: #faf7f3;
    padding: 70px 24px 80px;
    margin-top: 0px;
}
.pkn-newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.pkn-newsletter-kicker {
    font-family: brother-1816, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c9b9a6;
    margin-bottom: 16px;
}
.pkn-newsletter h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.2px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #faf7f3;
}
.pkn-newsletter p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: #c9b9a6;
    margin-bottom: 32px;
}
.pkn-newsletter-perks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 38px;
    font-family: brother-1816, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a89580;
}

.pkn-newsletter-perks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pkn-newsletter-perks i {
    font-size: 9px;
    color: #db7f31;
}
.pkn-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    border-bottom: 1px solid #854516;
    padding-bottom: 2px;
}
.pkn-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 4px;
    font-family: brother-1816, sans-serif;
    font-size: 13px;
    color: #faf7f3;
    letter-spacing: 0.3px;
    outline: none;
}
.pkn-newsletter-form input::placeholder {
    color: #a89580;
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 15px;
}
.pkn-newsletter-form button {
    background: transparent;
    border: none;
    color: #faf7f3;
    padding: 10px 0 10px 18px;
    font-family: brother-1816, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.pkn-newsletter-form button .pulse-text {
    display: inline-block;
}
.pkn-newsletter-form button .pulse-text.pulse-active {
    animation: pkn-subtle-pulse 1s ease-in-out;
}
@keyframes pkn-subtle-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); text-shadow: 0 0 5px rgba(255,255,255,0.7); }
    100% { transform: scale(1); }
}

/* Shared Editorial Theme: Parchment (Library & Newsletter) */
.pkn-theme-parchment {
    /*background-color: #ede2d0;*/ /* Deep parchment to ground the sections before the dark footer */
    background-color: var(--rj-paper);
}
.pkn-newsletter.pkn-theme-parchment {
    
    background-color: var(--white);
}
/* Library overrides */
.pkn-theme-parchment .rj-library__heading,
.pkn-theme-parchment .rj-book__title {
    color: var(--rh-brown-dark);
}
.pkn-theme-parchment .rj-library__desc,
.pkn-theme-parchment .rj-book__sub {
    color: var(--rh-gray-warm);
}
.pkn-theme-parchment .rj-library__eyebrow {
    color: var(--rh-red-recipe);
}
.pkn-theme-parchment .rj-txtlink {
    color: var(--rh-brown-dark);
    border-bottom-color: var(--rh-tan-rule);
}
.pkn-theme-parchment .rj-txtlink:hover {
    color: var(--rh-orange-brand);
    border-bottom-color: var(--rh-orange-brand);
}
/* Newsletter overrides */
.pkn-newsletter.pkn-theme-parchment {
    padding-top: 30px; /* Reduced from 70px to pull closer to the library above it */
}
.pkn-theme-parchment .pkn-newsletter-kicker {
    color: var(--rh-red-recipe);
}
.pkn-theme-parchment h3 {
    color: var(--rh-brown-dark);
    margin-top: 30px; /*the background is white; this reduces the space to seem less empty*/
}
.pkn-theme-parchment p {
    color: var(--rh-gray-warm);
}
.pkn-theme-parchment .pkn-newsletter-perks {
    color: var(--rh-orange-brand);
}
.pkn-theme-parchment .pkn-newsletter-form {
    border-bottom: 1px solid var(--rh-tan-rule);
}
.pkn-theme-parchment .pkn-newsletter-form input {
    color: var(--rh-brown-dark);
}
.pkn-theme-parchment .pkn-newsletter-form input::placeholder {
    color: var(--rh-gray-warm);
}
.pkn-theme-parchment .pkn-newsletter-form button {
    color: var(--rh-orange-brand);
}
.pkn-theme-parchment .pkn-newsletter-form button:hover { 
    color: var(--rh-orange-hover); 
}

.pkn-lazy-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.pkn-lazy-section.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 760px) {
    .pkn-newsletter h3 { font-size: 30px; }
    
    .rh-hero__title {
      font-size: 35px;
    }
    .rh-hero__subtitle {
      font-size: 12px;
    }
}
@media (max-width: 460px) {
    .pkn-newsletter { padding: 50px 20px 60px; }
    .pkn-newsletter h3 { font-size: 26px; }
    .pkn-newsletter-perks { gap: 14px; font-size: 10px; }
}

/* ── Editorial Separator ── */
.pkn-editorial-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.pkn-editorial-separator.is-hidden {
    display: none;
}

.pkn-editorial-separator__line {
    flex: 1;
    height: 1px;
    background: var(--rh-tan-border);
}

.pkn-editorial-separator__icon {
    padding: 0 16px;
    color: var(--rh-orange-brand);
    font-size: 14px;
    letter-spacing: 4px;
}

/* ── Search Overlay ── */
.rh-search-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9000;
}

.rh-search-overlay.is-open {
    display: block;
}


.rh-search-overlay__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    max-width: 90vw;
    max-height: calc(100vh - 250px);
    background: var(--rh-cream-bg);
    border: 1px solid var(--rh-tan-border);
    border-radius: 3px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rh-search-overlay__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #e5d9cc;
    background: #fff;
    flex-shrink: 0;
}

.rh-search-overlay__heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #452508;
    letter-spacing: 0.5px;
}

.rh-search-overlay__count {
    flex: 1;
    font-size: 12px;
    color: #a89580;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.rh-search-overlay__close {
    background: transparent;
    border: 1px solid #c9b9a6;
    border-radius: 2px;
    padding: 6px 8px;
    cursor: pointer;
    color: #5f5f5f;
    transition: background-color 0.2s, color 0.2s;
}

.rh-search-overlay__close:hover {
    background: #b45313;
    color: #fff;
    border-color: #b45313;
}

.rh-search-overlay__body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px 40px;
    background: #faf7f3;
}

.rh-search-overlay__status {
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    color: #665c53;
    padding: 12px 0;
    font-style: italic;
}

.rh-search-overlay__status:empty {
    display: none;
}

/* Shrink cards inside the search overlay */
#rh-search-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}
#rh-search-grid .rh-card__body {
    padding: 12px;
}
#rh-search-grid .rh-card__title {
    font-size: 15px;
    margin-bottom: 4px;
}
#rh-search-grid .rh-card__excerpt {
    font-size: 11px;
}

@media (max-width: 720px) {
    .rh-search-overlay__panel {
        top: calc(100% + 10px);
        max-height: calc(100vh - 120px);
        width: calc(100vw - 40px);
    }
}

/* ── Newsletter status (inline success / error) ── */
.pkn-newsletter-status {
    max-width: 460px;
    margin: 10px auto 0;
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    font-style: italic;
    min-height: 1.4em;
    transition: color 0.25s ease;
}
.pkn-newsletter-status.is-error {
    color: #c75e3a;
}
.pkn-newsletter-status.is-success {
    color: #faf7f3;
}
.pkn-newsletter-form button.is-loading {
    opacity: 0.6;
    cursor: progress;
}
.pkn-newsletter-form button.is-done {
    cursor: default;
    color: #faf7f3;
}
.pkn-theme-parchment .pkn-newsletter-status.is-success {
    color: #2e7d5b;
}
.pkn-theme-parchment .pkn-newsletter-status.is-error {
    color: #b54a2a;
}
