/*
Theme Name: Blueberry Festival Theme
Theme URI: https://lexingtonblueberryfestival.com
Author: Ray Russell Design
Author URI: https://rayrusselldesign.com
Description: Official theme for the Lexington Blueberry Festival. Designed for Elementor Pro with full support for the Blueberry Festival Tools plugin. Features a modern card-based "page shell" layout, Poppins + Pacifico typography, and festival-branded color system.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
Tested up to: 6.7
Text Domain: blueberry-festival-theme
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: festival, elementor, custom-menu, custom-logo, full-width-template, one-column
*/

/* ================================================================
   DESIGN TOKENS — Blueberry Festival Design System
   ================================================================ */
:root {
    /* ── Brand Colors ── */
    --lbft-blue: #1e56c9;
    --lbft-blue-deep: #1147b8;
    --lbft-navy: #14213d;
    --lbft-green: #3f8f66;
    --lbft-purple: #8f63e8;
    --lbft-orange: #e68a47;
    --lbft-pink: #e072c6;

    /* ── UI Colors ── */
    --lbft-bg: #eef1f8;
    --lbft-white: #ffffff;
    --lbft-text: #33456f;
    --lbft-muted: #6b7697;
    --lbft-line: #c8c4f0;
    --lbft-border: #dde3f0;

    /* ── Shadows ── */
    --lbft-shell-shadow: 0 20px 60px rgba(17, 71, 184, 0.08);
    --lbft-card-shadow: 0 10px 26px rgba(17, 71, 184, 0.08);
    --lbft-btn-shadow: 0 8px 20px rgba(36, 77, 212, 0.18);

    /* ── Radii ── */
    --lbft-radius-shell: 24px;
    --lbft-radius-card: 20px;
    --lbft-radius-pill: 999px;

    /* ── Layout ── */
    --lbft-container: 1400px;
    --lbft-pad: 40px;

    /* ── Typography ── */
    --lbft-font-body: 'Poppins', system-ui, -apple-system, sans-serif;
    --lbft-font-script: 'Pacifico', cursive;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    font-family: var(--lbft-font-body);
    background: var(--lbft-bg);
    color: var(--lbft-text);
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ================================================================
   PAGE SHELL — The signature rounded white container
   ================================================================ */
.lbft-page-shell {
    width: min(calc(100% - 32px), var(--lbft-container));
    margin: 24px auto;
    background: var(--lbft-white);
    border-radius: var(--lbft-radius-shell);
    box-shadow: var(--lbft-shell-shadow);
    overflow: hidden;
    position: relative;
}

.lbft-inner {
    padding-left: var(--lbft-pad);
    padding-right: var(--lbft-pad);
}

/* ================================================================
   SCRIPT FONT UTILITY
   ================================================================ */
.lbft-script,
.script {
    font-family: var(--lbft-font-script);
    font-weight: 400;
    letter-spacing: 0;
}

/* ================================================================
   HEADER
   ================================================================ */
.lbft-header {
    position: relative;
    z-index: 20;
    padding-top: 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
}

.lbft-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 0 var(--lbft-pad);
}

.lbft-logo img {
    width: 300px;
    height: auto;
}

.lbft-header-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 4px;
}

.lbft-date-block {
    text-align: right;
}

.lbft-date-text {
    color: var(--lbft-blue);
    font-size: 28px;
    line-height: 1;
    margin: 0 0 6px;
}

.lbft-place {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--lbft-text);
    font-weight: 500;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.lbft-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 14px var(--lbft-pad) 16px;
    font-size: 17px;
    font-weight: 500;
    color: #2b4d8c;
    overflow-x: auto;
    white-space: nowrap;
}

.lbft-nav a {
    position: relative;
    padding-bottom: 8px;
    flex: 0 0 auto;
    transition: color 0.2s;
}

.lbft-nav a:hover {
    color: var(--lbft-blue);
}

.lbft-nav .current-menu-item > a,
.lbft-nav a.is-active {
    color: var(--lbft-blue);
    font-weight: 600;
}

.lbft-nav .current-menu-item > a::after,
.lbft-nav a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--lbft-blue);
}

/* WordPress menu integration */
.lbft-nav .menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lbft-nav .menu li {
    flex: 0 0 auto;
}

.lbft-nav .menu a {
    position: relative;
    padding-bottom: 8px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn,
.lbft-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 28px;
    border-radius: var(--lbft-radius-pill);
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
}

.btn:hover,
.lbft-btn:hover {
    transform: translateY(-1px);
}

.btn--blue,
.lbft-btn--blue {
    background: var(--lbft-blue);
    color: #fff;
    box-shadow: var(--lbft-btn-shadow);
}

.btn--green,
.lbft-btn--green {
    background: var(--lbft-green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(63, 143, 102, 0.25);
}

.btn--white,
.lbft-btn--white {
    background: #fff;
    color: var(--lbft-text);
    border: 2px solid var(--lbft-border);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.btn--hero { height: 60px; font-size: 20px; padding: 0 32px; }
.btn--card { height: 48px; font-size: 16px; padding: 0 22px; }
.btn--sm   { height: 48px; font-size: 16px; padding: 0 20px; }

/* ================================================================
   HERO SECTIONS (inner pages)
   ================================================================ */
.lbft-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    padding: 28px var(--lbft-pad) 36px;
    isolation: isolate;
    overflow: hidden;
}

.lbft-hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-size: cover;
    background-position: center;
}

.lbft-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.80) 35%,
        rgba(255,255,255,0.40) 60%,
        rgba(255,255,255,0.12) 80%,
        rgba(255,255,255,0) 100%);
}

.lbft-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.lbft-hero-title-top {
    font-family: var(--lbft-font-script);
    color: var(--lbft-blue);
    font-size: 56px;
    line-height: 1;
    margin: 0;
}

.lbft-hero-title-bottom {
    font-family: var(--lbft-font-script);
    color: var(--lbft-blue-deep);
    font-size: 42px;
    line-height: 1.1;
    margin: 0;
}

.lbft-hero-brush {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 24px;
    margin-top: 14px;
    background: var(--lbft-blue);
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.lbft-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

/* ================================================================
   SECTION HEADINGS
   ================================================================ */
.lbft-section-heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 28px;
}

.lbft-section-rule {
    width: 100px;
    height: 2px;
    background: var(--lbft-line);
    border-radius: 2px;
}

.lbft-section-heading {
    margin: 0;
    color: var(--lbft-blue);
    font-size: 42px;
    line-height: 1;
}

/* ================================================================
   CARDS
   ================================================================ */
.lbft-card {
    background: var(--lbft-white);
    border-radius: var(--lbft-radius-card);
    box-shadow: var(--lbft-card-shadow);
    overflow: hidden;
}

.lbft-card-body {
    padding: 22px 24px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.lbft-footer {
    margin-top: 24px;
    background: var(--lbft-blue);
    color: #fff;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    font-size: 14px;
}

.lbft-footer a { color: rgba(255,255,255,0.85); }
.lbft-footer a:hover { color: #fff; }

.lbft-footer-meta,
.lbft-footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lbft-footer-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    font-size: 14px;
    transition: background 0.2s;
}

.lbft-footer-social a:hover {
    background: rgba(255,255,255,0.3);
}

/* ================================================================
   ELEMENTOR COMPATIBILITY
   ================================================================ */

/* Ensure Elementor sections inherit the page shell */
.lbft-page-shell .elementor-section-wrap,
.lbft-page-shell .elementor {
    position: relative;
    z-index: 1;
}

/* Elementor buttons get our style */
.lbft-page-shell .elementor-button {
    font-family: var(--lbft-font-body);
    font-weight: 600;
    border-radius: var(--lbft-radius-pill);
}

/* Ensure Elementor containers work inside page shell */
.lbft-page-shell .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100%;
    padding-left: var(--lbft-pad);
    padding-right: var(--lbft-pad);
}

/* Fix Elementor full-width sections inside shell */
.lbft-page-shell .elementor-section.elementor-section-full_width {
    margin-left: 0;
    margin-right: 0;
}

/* Hide Elementor default page title */
.lbft-page-shell .page-title,
.lbft-page-shell .entry-title {
    display: none;
}

/* ================================================================
   TABLET (max-width: 1199px)
   ================================================================ */
@media (max-width: 1199px) {
    :root {
        --lbft-pad: 28px;
    }
    .lbft-logo img { width: 260px; }
    .lbft-date-text { font-size: 24px; }
    .lbft-nav { gap: 22px; font-size: 16px; }
    .lbft-nav .menu { gap: 22px; }
    .lbft-hero { min-height: 300px; }
    .lbft-hero-title-top { font-size: 44px; }
    .lbft-hero-title-bottom { font-size: 34px; }
    .lbft-section-heading { font-size: 36px; }
}

/* ================================================================
   MOBILE (max-width: 767px)
   ================================================================ */
@media (max-width: 767px) {
    :root {
        --lbft-pad: 16px;
        --lbft-radius-shell: 18px;
    }

    .lbft-page-shell {
        width: min(calc(100% - 16px), 430px);
        margin: 8px auto 16px;
    }

    .lbft-header { padding-top: 14px; }

    .lbft-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .lbft-logo img { width: 200px; }

    .lbft-header-meta {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .lbft-date-block { text-align: left; }
    .lbft-date-text { font-size: 20px; }
    .lbft-place { font-size: 14px; }

    .lbft-nav {
        gap: 16px;
        font-size: 15px;
        padding: 10px var(--lbft-pad) 12px;
    }
    .lbft-nav .menu { gap: 16px; }

    .btn,
    .lbft-btn { height: 48px; font-size: 16px; padding: 0 20px; }
    .btn--hero { height: 50px; font-size: 17px; }

    .lbft-hero {
        min-height: 260px;
        padding: 18px var(--lbft-pad) 24px;
    }
    .lbft-hero-title-top { font-size: 34px; }
    .lbft-hero-title-bottom { font-size: 28px; }
    .lbft-hero-brush { font-size: 16px; min-height: 40px; }
    .lbft-hero-actions { flex-direction: column; gap: 10px; }
    .lbft-hero-actions .btn { width: 100%; }

    .lbft-section-heading-row { gap: 12px; margin-bottom: 18px; }
    .lbft-section-rule { width: 36px; }
    .lbft-section-heading { font-size: 28px; }

    .lbft-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
    }
}

/* ================================================================
   HOMEPAGE SECTIONS — All content from live site
   ================================================================ */

/* ── Section wrapper ── */
.lbft-section { padding: 52px 0 36px; }
.lbft-section-kicker { text-align: center; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.lbft-section-desc { text-align: center; font-size: 17px; color: var(--lbft-muted); max-width: 640px; margin: 0 auto 32px; }

/* ── Attractions ── */
.lbft-att-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lbft-att-card { background: #fff; border: 1.5px solid var(--lbft-border); border-radius: 16px; padding: 22px 18px; text-align: center; transition: box-shadow .2s, transform .2s; }
.lbft-att-card:hover { box-shadow: var(--lbft-card-shadow); transform: translateY(-3px); }
.lbft-att-card__icon { font-size: 2.4rem; margin-bottom: 10px; line-height: 1; }
.lbft-att-card__title { font-size: 15px; font-weight: 800; color: var(--lbft-navy); margin: 0 0 4px; }
.lbft-att-card__desc { font-size: 13px; color: var(--lbft-muted); line-height: 1.45; margin: 0 0 10px; }
.lbft-att-card__badge { display: inline-block; font-size: 11px; font-weight: 800; padding: 3px 12px; border-radius: 20px; background: #eef3ff; color: var(--lbft-blue); text-transform: uppercase; letter-spacing: .05em; }

/* ── Schedule Panel ── */
.lbft-sched-panel { background: #f8f9fc; border-radius: 20px; padding: 28px 32px; box-shadow: 0 6px 20px rgba(17,71,184,.04); display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: center; }
.lbft-sched-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lbft-sched-card { background: #fff; border-radius: 16px; padding: 16px 14px 14px; box-shadow: 0 4px 12px rgba(17,71,184,.04); min-height: 110px; display: flex; flex-direction: column; }
.lbft-sched-day { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--lbft-muted); }
.lbft-sched-date { font-size: 26px; font-weight: 800; color: var(--lbft-blue); line-height: 1; margin-top: 2px; }
.lbft-sched-info { font-size: 15px; color: var(--lbft-text); line-height: 1.3; margin-top: 10px; flex: 1; }
.lbft-sched-accent { margin-top: auto; width: 44px; height: 4px; border-radius: 99px; background: var(--lbft-line); }

/* ── Pageant ── */
.lbft-pageant-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.lbft-pageant-card { background: #fff; border: 1.5px solid var(--lbft-border); border-radius: 16px; padding: 24px 14px 20px; text-align: center; transition: box-shadow .2s, transform .2s; }
.lbft-pageant-card:hover { box-shadow: var(--lbft-card-shadow); transform: translateY(-2px); }
.lbft-pageant-card__icon { font-size: 2rem; margin-bottom: 8px; }
.lbft-pageant-card__name { font-size: 14px; font-weight: 800; color: var(--lbft-navy); line-height: 1.3; margin: 0 0 4px; }
.lbft-pageant-card__age { font-size: 12px; color: var(--lbft-purple); font-weight: 700; }

/* ── Registration ── */
.lbft-reg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lbft-reg-card { background: #fff; border: 1.5px solid var(--lbft-border); border-radius: 16px; padding: 24px 20px; display: flex; flex-direction: column; transition: box-shadow .2s; }
.lbft-reg-card:hover { box-shadow: var(--lbft-card-shadow); }
.lbft-reg-card__icon { font-size: 2rem; margin-bottom: 10px; }
.lbft-reg-card__title { font-size: 15px; font-weight: 800; color: var(--lbft-navy); margin: 0 0 4px; }
.lbft-reg-card__desc { font-size: 13px; color: var(--lbft-muted); margin: 0 0 12px; line-height: 1.5; }
.lbft-reg-card__list { list-style: none; padding: 0; margin: 0 0 16px; font-size: 12px; color: var(--lbft-text); }
.lbft-reg-card__list li { padding: 3px 0; display: flex; align-items: center; gap: 6px; }
.lbft-reg-card__list li::before { content: '✓'; color: var(--lbft-green); font-weight: 800; font-size: 11px; }
.lbft-reg-card__cta { margin-top: auto; }

/* ── Sponsors ── */
.lbft-sponsor-tier { margin-bottom: 28px; }
.lbft-sponsor-tier__label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--lbft-border); }
.lbft-sponsor-tier__grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; }
.lbft-sponsor-tier__grid img { max-height: 52px; width: auto; object-fit: contain; opacity: .95; transition: opacity .2s; }
.lbft-sponsor-tier__grid img:hover { opacity: 1; }
.lbft-sponsor-tier--presenting .lbft-sponsor-tier__grid img { max-height: 80px; }
.lbft-sponsor-tier--gold .lbft-sponsor-tier__grid img { max-height: 56px; }
.lbft-sponsor-tier--silver .lbft-sponsor-tier__grid img { max-height: 44px; }
.lbft-sponsor-tier--bronze { font-size: 14px; color: var(--lbft-muted); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.lbft-sponsor-cta { background: #f8f9fc; border-radius: 16px; padding: 28px 32px; text-align: center; margin-top: 24px; }

/* ── Donation ── */
.lbft-donate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.lbft-donate-card { background: #fff; border: 1.5px solid var(--lbft-border); border-radius: 16px; padding: 22px 18px; text-align: center; transition: box-shadow .2s; }
.lbft-donate-card:hover { box-shadow: var(--lbft-card-shadow); }
.lbft-donate-card__icon { font-size: 2rem; margin-bottom: 8px; }
.lbft-donate-card__amount { font-size: 22px; font-weight: 800; color: var(--lbft-green); margin-bottom: 4px; }
.lbft-donate-card__desc { font-size: 13px; color: var(--lbft-text); line-height: 1.45; margin: 0 0 4px; }
.lbft-donate-card__sub { font-size: 11px; color: var(--lbft-muted); font-style: italic; }
.lbft-donate-amounts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.lbft-donate-pill { padding: 10px 24px; border-radius: var(--lbft-radius-pill); border: 2px solid var(--lbft-border); font-size: 16px; font-weight: 700; color: var(--lbft-text); cursor: pointer; transition: all .15s; background: #fff; }
.lbft-donate-pill:hover, .lbft-donate-pill.active { background: var(--lbft-green); color: #fff; border-color: var(--lbft-green); }

/* ── Contact ── */
.lbft-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.lbft-contact-card { background: #fff; border: 1.5px solid var(--lbft-border); border-radius: 14px; padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.lbft-contact-card__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }

/* ── Merchandise ── */
.lbft-merch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lbft-merch-card { background: #fff; border: 1.5px solid var(--lbft-border); border-radius: 16px; padding: 24px 18px; text-align: center; transition: box-shadow .2s; }
.lbft-merch-card:hover { box-shadow: var(--lbft-card-shadow); }
.lbft-merch-card__icon { font-size: 2.4rem; margin-bottom: 6px; }
.lbft-merch-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--lbft-muted); margin-bottom: 6px; }
.lbft-merch-card__name { font-size: 15px; font-weight: 800; color: var(--lbft-navy); margin: 0 0 4px; }
.lbft-merch-card__status { font-size: 12px; color: var(--lbft-muted); margin: 0 0 2px; }
.lbft-merch-card__badge { font-size: 11px; color: var(--lbft-blue); font-weight: 700; }

/* ── Newsletter ── */
.lbft-newsletter { background: linear-gradient(135deg, var(--lbft-blue-deep) 0%, var(--lbft-blue) 60%, #3b82f6 100%); border-radius: 20px; padding: 40px 32px; text-align: center; color: #fff; margin: 36px 0; }
.lbft-newsletter h2 { font-size: 28px; margin: 0 0 6px; color: #fff; }
.lbft-newsletter p { font-size: 15px; opacity: .8; margin: 0 0 20px; }
.lbft-newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto 10px; }
.lbft-newsletter-form input { flex: 1; padding: 12px 18px; border-radius: var(--lbft-radius-pill); border: 2px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: #fff; font-size: 15px; font-family: var(--lbft-font-body); }
.lbft-newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.lbft-newsletter-form button { padding: 12px 28px; border-radius: var(--lbft-radius-pill); border: none; background: #fff; color: var(--lbft-blue); font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--lbft-font-body); }

/* ── Homepage responsive overrides ── */
@media (max-width: 1100px) {
    .lbft-att-grid { grid-template-columns: repeat(3, 1fr); }
    .lbft-pageant-grid { grid-template-columns: repeat(3, 1fr); }
    .lbft-reg-grid { grid-template-columns: repeat(2, 1fr); }
    .lbft-sched-panel { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .lbft-att-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .lbft-att-card { padding: 16px 12px; }
    .lbft-pageant-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .lbft-reg-grid { grid-template-columns: 1fr; }
    .lbft-donate-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .lbft-sched-cards { grid-template-columns: repeat(2, 1fr); }
    .lbft-contact-grid { grid-template-columns: 1fr; }
    .lbft-merch-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .lbft-newsletter { padding: 28px 18px; }
    .lbft-newsletter-form { flex-direction: column; }
}
