/**
 * MineMyDeal — Editorial Homepage CSS (v1.1.0)
 *
 * v1.1 fixes:
 *   1. Removed broken `.mmd-editorial-page section { padding: 0 }` reset that was
 *      overriding every individual section's own padding.
 *   2. Added wp-coupon theme overrides scoped to body.page-template-frontpage-editorial
 *      so #content / .site-content stop fighting our spacing.
 *   3. Hide the wp-coupon "Trading / Free Shipping / SaaS" highlight strip on
 *      this template only — undercuts the publication frame.
 *   4. All section spacing is now driven by the .mmd-ed-section base class +
 *      a per-section variant. Padding values use !important on .mmd-ed-section
 *      because wp-coupon section selectors win on specificity otherwise.
 */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────────────────────
   THEME-LEVEL OVERRIDES — only apply on the editorial template page
   ───────────────────────────────────────────────────────────────────────── */

/* Neutralize wp-coupon's #content/.site-content padding so our sections sit edge-to-edge */
body.page-template-frontpage-editorial #content,
body.page-template-frontpage-editorial .site-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Hide the wp-coupon "Trading/Free Shipping/SaaS" highlight strip — too couponey for editorial frame */
body.page-template-frontpage-editorial .header-highlight {
    display: none !important;
}

/* Make sure body bg matches the editorial design's warm cream tone */
body.page-template-frontpage-editorial {
    background-color: #f4f1e8 !important;
}

/* ─────────────────────────────────────────────────────────────────────────
   EDITORIAL PAGE — SCOPED STYLES
   ───────────────────────────────────────────────────────────────────────── */

.mmd-editorial-page {
    --mmd-bg: #f4f1e8;
    --mmd-surface: #ffffff;
    --mmd-surface-warm: #ebe7d9;
    --mmd-surface-deep: #e3ddc9;
    --mmd-text-primary: #2a2418;
    --mmd-text-secondary: #5a5343;
    --mmd-text-muted: #8a8270;
    --mmd-accent: #1a4d4f;
    --mmd-accent-hover: #0f3537;
    --mmd-accent-bg: #e8f0f0;
    --mmd-border: #d8d1bd;
    --mmd-border-strong: #c4bca6;
    --mmd-gold: #b8941f;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--mmd-bg);
    color: var(--mmd-text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.mmd-editorial-page * { box-sizing: border-box; }
.mmd-editorial-page a { color: var(--mmd-accent); text-decoration: none; }
.mmd-editorial-page a:hover { color: var(--mmd-accent-hover); }
.mmd-editorial-page h1,
.mmd-editorial-page h2,
.mmd-editorial-page h3,
.mmd-editorial-page h4 { margin: 0; }

.mmd-ed-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ─── SECTION BASE — every section gets consistent vertical rhythm ───
   !important needed because wp-coupon's section padding rules are
   higher specificity than our class-scoped rules otherwise. */
.mmd-editorial-page .mmd-ed-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
    margin: 0 !important;
    width: 100%;
    display: block;
    position: relative;
}

/* Per-section background + border treatments */
.mmd-editorial-page .mmd-ed-hero {
    background: var(--mmd-surface);
    border-bottom: 1px solid var(--mmd-border);
    padding-top: 56px !important;
    padding-bottom: 64px !important;
}

.mmd-editorial-page .mmd-ed-trust {
    background: var(--mmd-surface);
    border-bottom: 1px solid var(--mmd-border);
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.mmd-editorial-page .mmd-ed-latest-data {
    background: var(--mmd-bg);
    border-bottom: 1px solid var(--mmd-border);
}

.mmd-editorial-page .mmd-ed-standards {
    background: var(--mmd-surface);
    border-bottom: 1px solid var(--mmd-border);
}

.mmd-editorial-page .mmd-ed-deals {
    background: var(--mmd-surface-warm);
    border-bottom: 1px solid var(--mmd-border);
}

.mmd-editorial-page .mmd-ed-press {
    background: var(--mmd-surface);
    border-bottom: 1px solid var(--mmd-border);
}

.mmd-editorial-page .mmd-ed-team {
    background: var(--mmd-bg);
    border-bottom: 1px solid var(--mmd-border);
}

.mmd-editorial-page .mmd-ed-articles {
    background: var(--mmd-surface);
    border-bottom: 1px solid var(--mmd-border);
}

.mmd-editorial-page .mmd-ed-seasonal {
    background: var(--mmd-bg);
    border-bottom: 1px solid var(--mmd-border);
}

.mmd-editorial-page .mmd-ed-newsletter {
    background: #2a2418;
    color: white;
}

/* HERO */

/* Brand H1 — stable, prominent, top of page */
.mmd-ed-brand-headline {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
    padding: 0 16px;
}
.mmd-ed-brand-h1 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--mmd-text-primary);
    margin: 0 0 14px;
    letter-spacing: -0.6px;
}
.mmd-ed-brand-subhead {
    font-size: 17px;
    color: var(--mmd-text-secondary);
    line-height: 1.55;
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Brand-only state ──
   When no featured article is set, the hero contains ONLY the brand H1 + subhead.
   Without a card to anchor the section visually, the H1 needs more presence:
   bigger type, more breathing room, and a subtle horizontal rule to give it
   a "lead" feel like a publication's masthead. */
.mmd-editorial-page .mmd-ed-hero-only-brand {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}
.mmd-ed-hero-only-brand .mmd-ed-brand-headline {
    margin-bottom: 0;
    max-width: 880px;
    padding: 0 24px;
}
.mmd-ed-hero-only-brand .mmd-ed-brand-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 22px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.mmd-ed-hero-only-brand .mmd-ed-brand-subhead {
    font-size: 19px;
    line-height: 1.5;
    color: var(--mmd-text-secondary);
    max-width: 640px;
    padding-top: 22px;
    border-top: 1px solid var(--mmd-border-strong);
}
/* No-subhead variant: still center the H1 with breathing room */
.mmd-ed-hero-only-brand .mmd-ed-brand-h1:only-child {
    margin-bottom: 0;
}

/* Featured article card — appears under the brand H1 */
.mmd-ed-featured-card {
    background: var(--mmd-surface-warm);
    border: 1px solid var(--mmd-border);
    border-left: 3px solid var(--mmd-accent);
    border-radius: 6px;
    padding: 32px 36px;
}

.mmd-ed-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.mmd-ed-hero-eyebrow { font-size: 11px; color: var(--mmd-accent); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.mmd-ed-hero-eyebrow::before { content: "● "; color: var(--mmd-accent); }
/* Featured-article H2 — visibly smaller than brand H1 so heading hierarchy reads clearly */
.mmd-ed-hero-headline { font-family: 'Source Serif 4', Georgia, serif; font-size: 30px; font-weight: 600; line-height: 1.2; color: var(--mmd-text-primary); margin: 0 0 14px; letter-spacing: -0.3px; }
.mmd-ed-hero-headline a { color: inherit; }
.mmd-ed-hero-placeholder { color: var(--mmd-text-muted); font-style: italic; font-size: 22px; }
.mmd-ed-hero-dek { font-size: 16px; color: var(--mmd-text-secondary); line-height: 1.55; margin: 0 0 24px; max-width: 580px; }
.mmd-ed-hero-byline { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--mmd-text-muted); }
.mmd-ed-author-photo-small { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--mmd-border); }
.mmd-ed-byline-name { color: var(--mmd-text-primary); font-weight: 500; }
.mmd-ed-hero-image { aspect-ratio: 4/3; background: linear-gradient(135deg, #3a3220, #2a4a3c); border-radius: 6px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.mmd-ed-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.mmd-ed-hero-image-placeholder { color: rgba(255,255,255,0.4); font-size: 13px; font-style: italic; }

/* TRUST */
.mmd-ed-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mmd-ed-trust-cell { text-align: center; }
.mmd-ed-trust-number { font-family: 'Source Serif 4', Georgia, serif; font-size: 32px; font-weight: 600; color: var(--mmd-text-primary); line-height: 1; margin: 0 0 6px; letter-spacing: -0.5px; }
.mmd-ed-trust-label { font-size: 12px; color: var(--mmd-text-secondary); letter-spacing: 0.5px; }

/* LATEST DATA (HARO block) */
.mmd-ed-latest-data-card { background: var(--mmd-surface); border: 1px solid var(--mmd-border); border-left: 3px solid var(--mmd-gold); border-radius: 6px; padding: 32px 36px; }
.mmd-ed-latest-data-eyebrow { font-size: 11px; color: var(--mmd-gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.mmd-ed-latest-data-title { font-family: 'Source Serif 4', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--mmd-text-primary); margin: 0 0 8px; letter-spacing: -0.3px; }
.mmd-ed-latest-data-intro { font-size: 14px; color: var(--mmd-text-secondary); margin: 0 0 28px; max-width: 720px; line-height: 1.6; }
.mmd-ed-latest-data-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mmd-ed-latest-data-item { padding: 18px 20px; background: var(--mmd-surface-warm); border-radius: 4px; }
.mmd-ed-latest-data-stat { font-family: 'Source Serif 4', Georgia, serif; font-size: 28px; font-weight: 600; color: var(--mmd-accent); margin-bottom: 6px; line-height: 1.1; letter-spacing: -0.5px; }
.mmd-ed-latest-data-claim { font-size: 14px; color: var(--mmd-text-primary); line-height: 1.5; margin-bottom: 8px; }
.mmd-ed-latest-data-source { font-size: 11px; color: var(--mmd-text-muted); letter-spacing: 0.3px; font-style: italic; }
.mmd-ed-latest-data-footer { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--mmd-border); font-size: 13px; color: var(--mmd-text-secondary); line-height: 1.6; }

/* SECTION HEAD (used in Deals + Articles) */
.mmd-ed-section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; border-bottom: 2px solid var(--mmd-text-primary); padding-bottom: 12px; }
.mmd-ed-section-title { font-family: 'Source Serif 4', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--mmd-text-primary); margin: 0; letter-spacing: -0.3px; }
.mmd-ed-section-link { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; }

/* STANDARDS */
.mmd-ed-standards-title { font-family: 'Source Serif 4', Georgia, serif; font-size: 24px; font-weight: 600; margin: 0 0 8px; color: var(--mmd-text-primary); letter-spacing: -0.3px; }
.mmd-ed-standards-subtitle { font-size: 14px; color: var(--mmd-text-secondary); margin: 0 0 32px; max-width: 700px; }
.mmd-ed-verify-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--mmd-border); }
.mmd-ed-verify-step { background: var(--mmd-surface-warm); border: 1px solid var(--mmd-border); border-radius: 6px; padding: 20px; position: relative; }
.mmd-ed-verify-step-num { position: absolute; top: -14px; left: 16px; width: 28px; height: 28px; background: var(--mmd-accent); color: white; border-radius: 50%; font-family: 'Source Serif 4', serif; font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.mmd-ed-verify-step-title { font-weight: 600; color: var(--mmd-text-primary); font-size: 14px; margin-bottom: 8px; margin-top: 6px; }
.mmd-ed-verify-step-text { font-size: 13px; color: var(--mmd-text-secondary); line-height: 1.55; }
.mmd-ed-pillars-title { font-size: 14px; font-weight: 600; color: var(--mmd-text-primary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.mmd-ed-standards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px; }
.mmd-ed-standard-item { font-size: 14px; color: var(--mmd-text-secondary); line-height: 1.6; }
.mmd-ed-standard-item strong { display: block; color: var(--mmd-text-primary); font-weight: 600; margin-bottom: 4px; }
.mmd-ed-standards-footer { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--mmd-border); font-size: 13px; color: var(--mmd-text-muted); }

/* DEALS */
.mmd-ed-category-block { margin-bottom: 32px; }
.mmd-ed-category-block:last-child { margin-bottom: 0; }
.mmd-ed-category-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--mmd-border-strong); }
.mmd-ed-category-name { font-family: 'Source Serif 4', Georgia, serif; font-size: 16px; font-weight: 600; color: var(--mmd-text-primary); }
.mmd-ed-cat-count { font-family: 'Inter', sans-serif; font-weight: 400; color: var(--mmd-text-muted); font-size: 13px; margin-left: 8px; }
.mmd-ed-category-link { font-size: 12px; font-weight: 500; }
.mmd-ed-category-deals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mmd-ed-deal-card { background: var(--mmd-surface); border: 1px solid var(--mmd-border); border-radius: 6px; padding: 16px; display: flex; gap: 14px; align-items: center; transition: border-color 0.2s, transform 0.2s; cursor: pointer; position: relative; color: inherit; }
.mmd-ed-deal-card:hover { border-color: var(--mmd-accent); transform: translateY(-1px); color: inherit; }
.mmd-ed-deal-thumb { width: 72px; height: 56px; flex-shrink: 0; background: white; border: 1px solid var(--mmd-border); border-radius: 4px; object-fit: contain; padding: 4px; }
.mmd-ed-deal-thumb-placeholder { background: var(--mmd-surface-warm); }
.mmd-ed-deal-info { flex: 1; min-width: 0; }
.mmd-ed-deal-store { font-size: 11px; color: var(--mmd-text-muted); letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.mmd-ed-deal-title { font-size: 14px; font-weight: 500; color: var(--mmd-text-primary); margin-bottom: 6px; line-height: 1.35; }
.mmd-ed-deal-meta { font-size: 11px; color: var(--mmd-text-muted); display: flex; gap: 10px; align-items: center; }
.mmd-ed-deal-verified { color: var(--mmd-accent); font-weight: 500; }
.mmd-ed-deal-tag { position: absolute; top: 8px; right: 8px; font-size: 9px; color: var(--mmd-text-muted); letter-spacing: 0.8px; text-transform: uppercase; font-weight: 600; padding: 2px 6px; background: var(--mmd-surface-warm); border-radius: 3px; }
.mmd-ed-tag-recent { color: var(--mmd-accent); background: var(--mmd-accent-bg); }

/* PRESS */
.mmd-ed-press-label { text-align: center; font-size: 11px; color: var(--mmd-text-muted); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 28px; }
.mmd-ed-press-logos { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.mmd-ed-press-logo { flex: 1; text-align: center; min-width: 140px; padding: 8px 0; color: var(--mmd-text-secondary); cursor: pointer; transition: color 0.2s; border-right: 1px solid var(--mmd-border); }
.mmd-ed-press-logo:last-child { border-right: none; }
.mmd-ed-press-logo:hover { color: var(--mmd-text-primary); }
.mmd-ed-press-logo-name { font-family: 'Source Serif 4', Georgia, serif; font-size: 18px; font-weight: 600; letter-spacing: -0.3px; line-height: 1.1; }
.mmd-ed-press-logo-meta { font-size: 10px; color: var(--mmd-text-muted); margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase; }

/* TEAM */
.mmd-ed-team-eyebrow { text-align: center; font-size: 11px; color: var(--mmd-accent); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.mmd-ed-team-title { text-align: center; font-family: 'Source Serif 4', Georgia, serif; font-size: 28px; font-weight: 600; color: var(--mmd-text-primary); margin: 0 0 14px; letter-spacing: -0.3px; }
.mmd-ed-team-intro { text-align: center; font-size: 15px; color: var(--mmd-text-secondary); line-height: 1.65; max-width: 760px; margin: 0 auto 36px; }
.mmd-ed-team-roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.mmd-ed-role-card { background: var(--mmd-surface); border: 1px solid var(--mmd-border); border-radius: 6px; padding: 22px 20px; text-align: center; }
.mmd-ed-role-icon { font-family: 'Source Serif 4', serif; font-size: 28px; color: var(--mmd-accent); margin-bottom: 10px; }
.mmd-ed-role-name { font-weight: 600; color: var(--mmd-text-primary); margin-bottom: 6px; font-size: 14px; }
.mmd-ed-role-desc { font-size: 13px; color: var(--mmd-text-secondary); line-height: 1.5; }
.mmd-ed-team-cta { text-align: center; padding-top: 24px; border-top: 1px solid var(--mmd-border); }
.mmd-ed-team-cta-text { font-size: 14px; color: var(--mmd-text-secondary); margin: 0 0 16px; }
.mmd-ed-team-links { display: inline-flex; gap: 24px; font-size: 13px; flex-wrap: wrap; justify-content: center; }
.mmd-ed-team-links a { color: var(--mmd-accent); font-weight: 500; }

/* ARTICLES */
.mmd-ed-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mmd-ed-article-card { cursor: pointer; }
.mmd-ed-article-card a { color: inherit; display: block; }
.mmd-ed-article-image { aspect-ratio: 16/10; border-radius: 4px; margin-bottom: 16px; background: linear-gradient(135deg, #3a3220, #54453a); background-size: cover; background-position: center; overflow: hidden; }
.mmd-ed-article-category { font-size: 10px; color: var(--mmd-accent); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.mmd-ed-article-title { font-family: 'Source Serif 4', Georgia, serif; font-size: 19px; font-weight: 600; line-height: 1.3; color: var(--mmd-text-primary); margin: 0 0 10px; letter-spacing: -0.2px; }
.mmd-ed-article-excerpt { font-size: 14px; color: var(--mmd-text-secondary); line-height: 1.55; margin: 0 0 12px; }
.mmd-ed-article-meta { font-size: 12px; color: var(--mmd-text-muted); }
.mmd-ed-articles-empty { font-size: 14px; color: var(--mmd-text-muted); font-style: italic; padding: 20px; }

/* SEASONAL */
.mmd-ed-seasonal-card { background: var(--mmd-surface); border: 1px solid var(--mmd-border); border-radius: 6px; padding: 36px 40px; }
.mmd-ed-seasonal-eyebrow { font-size: 11px; color: var(--mmd-accent); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.mmd-ed-seasonal-title { font-family: 'Source Serif 4', Georgia, serif; font-size: 24px; font-weight: 600; color: var(--mmd-text-primary); margin: 0 0 18px; letter-spacing: -0.3px; line-height: 1.25; }
.mmd-ed-seasonal-content p { font-size: 15px; color: var(--mmd-text-secondary); line-height: 1.7; margin: 0 0 14px; }
.mmd-ed-seasonal-content p:last-child { margin-bottom: 0; }
.mmd-ed-seasonal-content a { color: var(--mmd-accent); font-weight: 500; }
.mmd-ed-seasonal-meta { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--mmd-border); display: flex; justify-content: space-between; font-size: 12px; color: var(--mmd-text-muted); }

/* NEWSLETTER */
.mmd-ed-newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mmd-ed-newsletter-title { font-family: 'Source Serif 4', Georgia, serif; font-size: 26px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.3px; color: white; }
.mmd-ed-newsletter-text { font-size: 15px; color: #c4bca6; line-height: 1.55; margin: 0; }
.mmd-ed-newsletter-form { display: flex; gap: 8px; }
.mmd-ed-newsletter-input { flex: 1; padding: 14px 16px; border: 1px solid #4a4030; background: #1f1a11; color: white; border-radius: 4px; font-size: 14px; font-family: inherit; }
.mmd-ed-newsletter-button { padding: 14px 28px; background: white; color: var(--mmd-text-primary); border: none; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }

/* AFFILIATE BAND */
.mmd-ed-affiliate-band { background: var(--mmd-surface-deep); padding: 18px 0; border-top: 1px solid var(--mmd-border); border-bottom: 1px solid var(--mmd-border); }
.mmd-ed-affiliate-band .mmd-ed-container { text-align: center; font-size: 13px; color: var(--mmd-text-secondary); line-height: 1.5; }
.mmd-ed-affiliate-band a { color: var(--mmd-accent); font-weight: 500; border-bottom: 1px dotted var(--mmd-accent); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .mmd-editorial-page .mmd-ed-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }
    .mmd-ed-hero-grid,
    .mmd-ed-article-grid,
    .mmd-ed-standards-grid,
    .mmd-ed-newsletter-grid,
    .mmd-ed-category-deals,
    .mmd-ed-latest-data-grid { grid-template-columns: 1fr; }
    .mmd-ed-trust-grid,
    .mmd-ed-verify-steps,
    .mmd-ed-team-roles { grid-template-columns: repeat(2, 1fr); }
    .mmd-ed-press-logos { gap: 16px; }
    .mmd-ed-press-logo { min-width: 100px; border-right: none; border-bottom: 1px solid var(--mmd-border); padding-bottom: 12px; }
    .mmd-ed-hero-headline { font-size: 24px; }
    .mmd-ed-brand-h1 { font-size: 32px; }
    .mmd-ed-brand-subhead { font-size: 15px; }
    .mmd-ed-featured-card { padding: 24px 22px; }
    .mmd-editorial-page .mmd-ed-hero-only-brand {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }
    .mmd-ed-hero-only-brand .mmd-ed-brand-h1 { font-size: 36px; letter-spacing: -0.5px; }
    .mmd-ed-hero-only-brand .mmd-ed-brand-subhead { font-size: 16px; padding-top: 18px; }
    .mmd-ed-container { padding: 0 20px; }
}

@media (max-width: 600px) {
    .mmd-editorial-page .mmd-ed-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .mmd-ed-trust-grid,
    .mmd-ed-verify-steps,
    .mmd-ed-team-roles { grid-template-columns: 1fr; }
    .mmd-ed-newsletter-form { flex-direction: column; }
}
