/*
Theme Name: Big Naked Bacon
Theme URI: https://bignakedbacon.com
Author: Big Naked Bacon
Author URI: https://bignakedbacon.com
Description: A premium editorial food blog theme for Big Naked Bacon. Elevated cooking, fire cooking, and gourmet recipes.
Version: 2.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bignakedbacon
Tags: food, blog, recipe, editorial, responsive
*/

/* =========================================================
   RESET & BASE
   ========================================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #1A1A1A;
    background-color: #F7F4F0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #C8621A;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #111111;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
    letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1.25rem;
    color: #2A2A2A;
}

ul, ol {
    margin: 0 0 1.25rem 1.5rem;
}

li { margin-bottom: 0.4rem; }

blockquote {
    border-left: 4px solid #F4A33C;
    padding: 0.75rem 1.5rem;
    margin: 2rem 0;
    background: #fff;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.bnb-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bnb-container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================================
   HEADER — Transparent on homepage, solid on inner pages
   ========================================================= */

/* BASE: solid dark header for all inner pages */
#bnb-header {
    background-color: #0D0D0D;
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 2px solid #F4A33C;
}

/* HOMEPAGE ONLY: transparent absolute header overlaying hero */
#bnb-header.header-transparent {
    background-color: transparent;
    position: absolute;
    top: 0;
    border-bottom: none;
}

/* Subtle gradient only on transparent homepage header */
#bnb-header.header-transparent::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
    z-index: -1;
    pointer-events: none;
}

.bnb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

/* Logo */
.bnb-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.bnb-logo a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.bnb-logo img,
.bnb-logo-img {
    height: 120px;
    width: auto;
    display: block;
}

.bnb-logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.bnb-logo-wordmark span:first-child {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bnb-logo-wordmark span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: #F4A33C;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 2px;
}

/* Orange accent bar under logo */
.bnb-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}

.bnb-logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F4A33C;
}

/* Primary Nav */
#bnb-primary-nav {
    display: flex;
    align-items: center;
}

#bnb-primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#bnb-primary-nav ul li a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 2px;
    transition: color 0.15s ease, background-color 0.15s ease;
    display: block;
}

#bnb-primary-nav ul li a:hover,
#bnb-primary-nav ul li.current-menu-item > a {
    color: #F4A33C;
    background-color: rgba(244, 163, 60, 0.08);
}

/* Cookbook nav item — highlighted */
#bnb-primary-nav ul li a[href*="cookbook"] {
    color: #F4A33C;
    border: 1px solid rgba(244,163,60,0.4);
    padding: 0.35rem 0.85rem;
}

#bnb-primary-nav ul li a[href*="cookbook"]:hover {
    background-color: #F4A33C;
    color: #111111;
    border-color: #F4A33C;
}

/* Hamburger */
.bnb-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.bnb-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* =========================================================
   HERO — Full-bleed editorial hero
   ========================================================= */

.bnb-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #1a1008;
    background-image: linear-gradient(
        135deg,
        #1a0f05 0%,
        #2d1a0a 25%,
        #3d2410 50%,
        #1f1208 75%,
        #0d0905 100%
    );
}

.bnb-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Pull left so wine glass + ocean stay visible on left side */
    object-position: 30% 40%;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

/* Gradient overlay — dark at top (header merge) and bottom (text legibility) */
.bnb-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0,0,0,0.15) 0%,
            rgba(0,0,0,0.05) 30%,
            rgba(0,0,0,0.05) 55%,
            rgba(0,0,0,0.78) 100%
        );
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 2rem;
}

.bnb-hero-content {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.bnb-hero-eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #F4A33C;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(244,163,60,0.4);
    text-shadow: 0 1px 6px rgba(0,0,0,0.85), 0 0 12px rgba(0,0,0,0.6);
}

.bnb-hero-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem !important;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin-bottom: 1rem;
    max-width: 560px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

.bnb-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.65;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.bnb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.8rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.bnb-btn-primary {
    background-color: #F4A33C;
    color: #111111;
}

.bnb-btn-primary:hover {
    background-color: #E88973;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(244,163,60,0.35);
}

.bnb-btn-ghost {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.5);
}

.bnb-btn-ghost:hover {
    border-color: #F4A33C;
    color: #F4A33C;
}

.bnb-btn-dark {
    background-color: #111111;
    color: #ffffff;
}

.bnb-btn-dark:hover {
    background-color: #F4A33C;
    color: #111111;
}

/* =========================================================
   SECTION LABELS & DIVIDERS
   ========================================================= */

.bnb-section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.bnb-section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background-color: #F4A33C;
    flex-shrink: 0;
}

.bnb-section-label span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #F4A33C;
}

.bnb-section-heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

/* =========================================================
   HOMEPAGE — BRAND STORY SECTION
   ========================================================= */

.bnb-story-section {
    background-color: #ffffff;
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    border-bottom: 1px solid #E8E4DF;
}

.bnb-story-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    overflow: hidden;
}

.bnb-story-sidebar {
    position: sticky;
    top: 88px;
}

.bnb-story-sidebar-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bnb-story-sidebar-title em,
.bnb-story-sidebar-title span {
    display: block;
    font-style: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.bnb-story-sidebar-title em {
    color: #F4A33C;
}

.bnb-story-sidebar-title span {
    color: #111111;
}

.bnb-story-sidebar-rule {
    width: 48px;
    height: 3px;
    background-color: #F4A33C;
    margin: 1.25rem 0;
}

.bnb-story-sidebar-sub {
    font-size: 0.875rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

.bnb-story-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2A2A2A;
    margin-bottom: 1.4rem;
}

.bnb-story-quote {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111111;
    border-left: 4px solid #F4A33C;
    padding: 0.75rem 1.5rem;
    margin: 2rem 0;
    background-color: #F7F4F0;
    line-height: 1.4;
    font-style: normal;
}

.bnb-story-cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================================
   HOMEPAGE — RECIPE GRID SECTION
   ========================================================= */

.bnb-recipes-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background-color: #F7F4F0;
}

.bnb-recipes-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bnb-recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bnb-recipe-card {
    background-color: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.bnb-recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.bnb-recipe-card-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #1a1008;
}

.bnb-recipe-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bnb-recipe-card:hover .bnb-recipe-card-image-wrap img {
    transform: scale(1.04);
}

.bnb-recipe-card-body {
    padding: 1.1rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bnb-recipe-card-category {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #F4A33C;
    margin-bottom: 0.4rem;
}

.bnb-recipe-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 0;
    flex: 1;
}

.bnb-recipe-card-title a {
    color: #111111;
    text-decoration: none;
}

.bnb-recipe-card-title a:hover {
    color: #C8621A;
}

/* =========================================================
   SINGLE POST
   ========================================================= */

.bnb-single-wrap {
    padding: 4rem 0 5rem;
    background-color: #F7F4F0;
}

.bnb-post-header {
    max-width: 760px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.bnb-post-category {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #F4A33C;
    margin-bottom: 0.6rem;
    display: block;
}

.bnb-post-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.bnb-post-meta {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bnb-post-meta::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #F4A33C;
}

.bnb-post-meta a {
    color: #888;
}

.bnb-post-meta a:hover {
    color: #F4A33C;
}

.bnb-featured-image-wrap {
    max-width: 960px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.bnb-featured-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.bnb-post-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
    background-color: #ffffff;
    border-radius: 3px;
    padding: 2.5rem 3rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.bnb-post-content h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F4A33C;
    color: #111111;
}

.bnb-post-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    color: #111111;
}

.bnb-post-content p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.bnb-post-content ul,
.bnb-post-content ol {
    font-size: 1.05rem;
    line-height: 1.85;
}

/* WP Recipe Maker */
.bnb-post-content .wprm-recipe-container {
    margin: 2.5rem 0;
    border: 1px solid #E8E4DF !important;
    border-radius: 3px !important;
}

/* =========================================================
   ARCHIVE / BLOG
   ========================================================= */

.bnb-archive-wrap {
    padding: 4rem 0 5rem;
    background-color: #F7F4F0;
}

.bnb-archive-header {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 0 0 1.5rem;
    border-bottom: 2px solid #F4A33C;
}

.bnb-archive-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
}

.bnb-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* =========================================================
   STATIC PAGE
   ========================================================= */

.bnb-page-wrap {
    padding: 4rem 0 5rem;
    background-color: #F7F4F0;
}

.bnb-page-header {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 0 0 1.5rem;
    border-bottom: 2px solid #F4A33C;
}

.bnb-page-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
}

.bnb-page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* =========================================================
   404
   ========================================================= */

.bnb-404-wrap {
    padding: 7rem 0;
    text-align: center;
    background-color: #F7F4F0;
}

.bnb-404-number {
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: #F4A33C;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bnb-404-wrap h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #111111;
}

.bnb-404-wrap p {
    color: #888;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* =========================================================
   FOOTER
   ========================================================= */

#bnb-footer {
    background-color: #0D0D0D;
    border-top: 3px solid #F4A33C;
    padding: 2rem 2rem;
    text-align: center;
}

.bnb-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.bnb-footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.bnb-footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
}

.bnb-footer-copy a {
    color: rgba(255,255,255,0.38);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bnb-footer-copy a:hover {
    color: #F4A33C;
}

#bnb-footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

#bnb-footer-nav ul li a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Oswald', sans-serif;
}

#bnb-footer-nav ul li a:hover {
    color: #F4A33C;
}

/* =========================================================
   UTILITY
   ========================================================= */

.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;
}

.bnb-no-posts {
    text-align: center;
    padding: 4rem 0;
    color: #888;
    font-size: 1.05rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
    .bnb-story-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .bnb-story-sidebar {
        position: static;
    }
    .bnb-recipe-grid,
    .bnb-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bnb-header-inner {
        padding: 0 1.25rem;
        height: 68px;
    }

    #bnb-primary-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background-color: #0D0D0D;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 0.75rem 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    #bnb-primary-nav.is-open {
        display: block;
    }

    #bnb-primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 1.25rem;
    }

    #bnb-primary-nav ul li a {
        display: block;
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 0.95rem;
    }

    .bnb-menu-toggle {
        display: flex;
    }

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

    .bnb-hero {
        height: clamp(360px, 60vw, 480px);
    }

    .bnb-post-content {
        padding: 1.75rem 1.5rem;
    }

    .bnb-story-cta {
        flex-direction: column;
    }

    .bnb-story-cta .bnb-btn {
        text-align: center;
        justify-content: center;
    }
}

/* =========================================================
   WordPress Admin Bar offset — logged-in users only
   ========================================================= */
.admin-bar #bnb-header.header-transparent {
    top: 32px;
}
.admin-bar .bnb-hero-overlay {
    padding-top: 132px;
}
@media screen and (max-width: 782px) {
    .admin-bar #bnb-header.header-transparent {
        top: 46px;
    }
}


/* =========================================================
   RECIPES / BLOG HEADER PARITY FIX
   Ensures the Recipes page header matches the Blog archive header.
   ========================================================= */

.bnb-listing-intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 0 0 1.5rem;
    border-bottom: 2px solid #F4A33C;
}

.bnb-listing-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin: 0;
}

.bnb-no-posts {
    text-align: center;
    padding: 4rem 0 2rem;
}
