/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 17 2026 | 06:29:21 */
.single-post .ninetheme-post-title {
    color: #6b8c5a;
    padding-top:10px;
}

.ninetheme-page-hero {
    padding: 20px 0!important;
}
/* Container styling to create a clean "Recipe Card" look */
.ninetheme-post-content-wrapper {
    font-family: 'Helvetica Neue', Arial, sans-serif;
/*     max-width: 650px; */
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    color: #333333;
    line-height: 1.6;
}

/* Typography basics */
.ninetheme-post-content-wrapper p {
    margin: 0 0 1.2rem 0;
    font-size: 1.05rem;
}

/* Enhancing the intro paragraphs */
.ninetheme-post-content-wrapper > p:nth-of-type(1),
.ninetheme-post-content-wrapper > p:nth-of-type(2) {
    color: #555555;
    font-size: 1.1rem;
}

/* ───── 3-COLUMN QUICK INFO BOX GRID FIX ───── */
.ninetheme-post-content-wrapper p:nth-of-type(3) {
    background: #f4faf0; 
    border: 1.5px solid #d6ecc8; 
    padding: 1.5rem;
    border-radius: 14px;
    margin: 2rem 0;
    font-size: 14px;
    color: #6b8c5a;
    
    /* Strict 3-column explicit grid map */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1.5rem;
    align-items: start;
}

/* Pin titles to the top row */
.ninetheme-post-content-wrapper p:nth-of-type(3) strong {
    grid-row: 1; 
    color: #3d8c1f; 
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

/* Map out columns to make un-wrapped values flow underneath labels */
.ninetheme-post-content-wrapper p:nth-of-type(3) strong:nth-of-type(1) { grid-column: 1; }
.ninetheme-post-content-wrapper p:nth-of-type(3) strong:nth-of-type(2) { grid-column: 2; }
.ninetheme-post-content-wrapper p:nth-of-type(3) strong:nth-of-type(3) { grid-column: 3; }

/* Kill the native line breaks so they don't break the row heights */
.ninetheme-post-content-wrapper p:nth-of-type(3) br {
    display: none !important;
}

/* ───── HEADINGS & TITLES ───── */
/* Standard subheadings (e.g., Ingredients, Simple Preparation) */
.ninetheme-post-content-wrapper h4 {
    display: block;
    font-size: 1.4rem;
    color: #2e5a27; /* Earthy green */
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.4rem;
}

/* Custom titles wrapped inside bare paragraphs (e.g., "Why This Snack Is Better") */
.ninetheme-post-content-wrapper p > strong:only-child {
    display: block;
    font-size: 1.3rem;
    color: #2e5a27;
    margin: 2rem 0 0.5rem 0;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.4rem;
}

/* ───── LISTS & BULLETS ───── */
/* Base List Settings (Ensures clean native bounds) */
.ninetheme-post-content-wrapper ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 1.5rem 0;
}

.ninetheme-post-content-wrapper ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

/* Custom Bullet Layout (Prevents overlaps) */
.ninetheme-post-content-wrapper ul li::before {
    content: "•";
    color: #8bc34a;
    font-weight: bold;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px; 
    line-height: 1;
}

/* Alternating Title/Description list style (Used for Benefits section) */
.ninetheme-post-content-wrapper ul li:nth-child(odd) {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 0.8rem;
}

.ninetheme-post-content-wrapper ul li:nth-child(even) {
    font-weight: normal;
    color: #666666;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

/* Overwrites layout variations for purely data/text lists (Ingredients & Nutrition) */
.ninetheme-post-content-wrapper h4 + ul li,
.ninetheme-post-content-wrapper p + ul li {
    font-weight: normal !important;
    color: #333333 !important;
    margin-top: 0.4rem !important;
    font-size: 1rem !important;
}

/* ───── SPECIAL BLOCKS ───── */
/* Nutrition Box Backdrop Wrapper */
.ninetheme-post-content-wrapper ul:last-of-type {
    background-color: #fcfdfd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

/* FARM2FEAST Highlight Tip Box */
.ninetheme-last-child {
    background-color: #fff9e6;
    border: 1px dashed #f39c12;
    padding: 1.2rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-style: italic;
    color: #d35400;
}

/* Soft reset for heading styling directly preceding the tip callout */
.ninetheme-post-content-wrapper h4:nth-last-of-type(1) {
    border-bottom: none;
    color: #d35400;
    margin-bottom: 0.2rem;
}

/* ───── RESPONSIVE LAYOUTS ───── */
@media(max-width: 520px) {
    /* Safe fallback stack for small screens to prevent text squishing */
    .ninetheme-post-content-wrapper p:nth-of-type(3) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .ninetheme-post-content-wrapper p:nth-of-type(3) strong {
        grid-row: auto;
        grid-column: auto !important;
        margin-bottom: 0.2rem;
    }
}