﻿/* ===========================================================
   MARKET MAGNET DIGITAL â€” Homepage Design
   Wirecutter-grade editorial review site
   =========================================================== */

/* --- Variables --- */
:root {
    --bg:       #FAFAF8;
    --surface:  #FFFFFF;
    --surface2: #F4F3F1;
    --border:   #E8E6E2;
    --text:     #111111;
    --text-2:   #555555;
    --text-3:   #999999;
    --gold:     #D49B00;
    --gold-2:   #B88600;
    --gold-bg:  #FEF9EC;
    --navy:     #0F1923;
    --navy-2:   #1A2B3D;
    --green:    #16A34A;
    --red:      #DC2626;
    --radius:   10px;
    --radius-lg:16px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow:   0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg:0 16px 48px rgba(0,0,0,0.1);
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --font:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-d:   'DM Serif Display', Georgia, serif;
}

/* --- Reset --- */



a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
em { font-family: var(--font-d); font-style: italic; }
::selection { background: var(--gold); color: #fff; }

/* --- Announce Bar --- */
.announce-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 8px 1rem;
    font-size: 0.82rem;
}
.announce-bar a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.announce-bar a:hover { color: #fff; }

/* --- Navigation --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.nav.scrolled {
    box-shadow: var(--shadow);
}
.nav.nav-hidden {
    transform: translateY(-100%);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.nav-logo-icon {
    width: 34px; height: 34px;
    background: var(--gold);
    color: #fff;
    font-family: var(--font-d);
    font-weight: 400;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name { font-weight: 700; font-size: 0.95rem; }
.nav-logo-tag { font-size: 0.6rem; letter-spacing: 2.5px; color: var(--text-3); font-weight: 500; }

.nav-center {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav-link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--surface2); }
.nav-link.active { font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 6px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s var(--ease);
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.88rem;
    border-radius: 6px;
    color: var(--text-2);
    transition: all 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--surface2); color: var(--text); }

.nav-search {
    background: var(--surface2);
    border: 1px solid var(--border);
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-3);
    transition: all 0.2s;
}
.nav-search:hover { border-color: var(--gold); color: var(--gold); }

/* --- Hero --- */
.hero {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: var(--gold-bg);
    color: var(--gold-2);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}
.hero-title {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-excerpt {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 520px;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.hero-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
}
.hero-author { display: block; font-weight: 600; font-size: 0.88rem; }
.hero-date { font-size: 0.8rem; color: var(--text-3); }

.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: var(--text);
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}
.hero-cta:hover {
    background: var(--navy-2);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-score {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(15,25,35,0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.hero-score-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-score-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* --- Trust Bar --- */
.trust-bar {
    border-bottom: 1px solid var(--border);
    background: var(--surface2);
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.trust-label {
    font-size: 0.75rem;
    color: var(--text-3);
    letter-spacing: 0.5px;
}
.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* --- Section --- */
.section, .categories, .methodology {
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.section-title {
    font-family: var(--font-d);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
}
.section-sub {
    font-size: 0.95rem;
    color: var(--text-3);
    margin-top: 0.25rem;
}
.section-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-2);
    transition: color 0.2s;
}
.section-link:hover { color: var(--text); }

/* --- Review Grid --- */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review-card--large {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.review-card--large .review-card-img {
    height: 280px;
}
.review-card--large .review-card-title {
    font-size: 1.35rem;
}

.review-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.review-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.review-card:hover .review-card-img img {
    transform: scale(1.04);
}

.review-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
}
.review-card-badge--gold {
    background: rgba(254,249,236,0.95);
    color: var(--gold-2);
}
.review-card-badge--green {
    background: rgba(240,253,244,0.95);
    color: var(--green);
}

.review-card-
.review-card-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-2);
    margin-bottom: 0.5rem;
}
.review-card-title {
    font-family: var(--font-d);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.65rem;
}
.review-card--large .review-card-excerpt {
    display: block;
}
.review-card-excerpt {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: none;
}

.review-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.review-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.review-card-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.review-card-score {
    background: var(--navy);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 5px;
}
.review-card-date {
    font-size: 0.78rem;
    color: var(--text-3);
}

/* --- Category Grid --- */
.categories { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.cat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.cat-card::after {
    content: '\2192';
    position: absolute;
    top: 1.75rem; right: 1.75rem;
    font-size: 1.1rem;
    color: var(--text-3);
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateX(-8px);
}
.cat-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.cat-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.cat-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.cat-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.cat-card p {
    font-size: 0.85rem;
    color: var(--text-3);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.cat-card-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-2);
}

/* --- Methodology --- */
.methodology { background: var(--bg); }
.meth-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.meth-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 1rem;
}
.meth-title {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.meth-text > p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.meth-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.meth-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.meth-step-num {
    font-family: var(--font-d);
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
    min-width: 36px;
    padding-top: 2px;
}
.meth-step strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}
.meth-step p {
    font-size: 0.85rem;
    color: var(--text-3);
    line-height: 1.5;
    margin: 0;
}
.meth-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.meth-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* --- Newsletter --- */
.newsletter {
    background: var(--navy);
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.newsletter-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    text-align: center;
}
.newsletter h2 {
    font-family: var(--font-d);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}
.newsletter p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto;
}
.newsletter-input {
    flex: 1;
    padding: 13px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--font);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
    padding: 13px 28px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.newsletter-btn:hover {
    background: var(--gold-2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212,155,0,0.35);
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.55);
    padding: clamp(3rem, 5vw, 4rem) 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem) 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: #fff;
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 320px;
}
.footer-col h4 {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    font-size: 0.88rem;
    padding: 0.3rem 0;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem clamp(1rem, 3vw, 2rem);
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.78rem;
    text-align: center;
    color: rgba(255,255,255,0.3);
}
.footer-bottom p { margin-bottom: 0.25rem; }

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.review-card:nth-child(2) { transition-delay: 80ms; }
.review-card:nth-child(3) { transition-delay: 160ms; }
.review-card:nth-child(4) { transition-delay: 240ms; }
.cat-card:nth-child(2) { transition-delay: 80ms; }
.cat-card:nth-child(3) { transition-delay: 160ms; }
.cat-card:nth-child(4) { transition-delay: 240ms; }
.meth-step:nth-child(2) { transition-delay: 100ms; }
.meth-step:nth-child(3) { transition-delay: 200ms; }
.trust-item:nth-child(2) { transition-delay: 60ms; }
.trust-item:nth-child(3) { transition-delay: 120ms; }
.trust-item:nth-child(4) { transition-delay: 180ms; }

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { max-height: 300px; }
    .review-grid { grid-template-columns: 1fr; }
    .review-card--large { grid-row: auto; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .meth-grid { grid-template-columns: 1fr; }
    .meth-img { order: -1; }
    .meth-img img { aspect-ratio: 16/9; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    .nav-center { display: none; }
    .cat-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .trust-divider { display: none; }
    .trust-bar-inner { gap: 1.5rem; }
}
/* ===========================================================
   MARKET MAGNET DIGITAL â€” Page-specific Styles
   Shared across reviews, guides, about, contact pages
   =========================================================== */

/* --- Authority Verdict Box v4.5 (Clean Slate) --- */
.mm-verdict-box {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin: 4rem 0 !important;
    display: block !important;
    visibility: visible !important;
}

.mm-verdict-header {
    display: flex;
    align-items: center;
    padding: 3rem;
    background: #fcfbf9;
    border-bottom: 1px solid #f0edeb;
    gap: 3rem;
    position: relative;
}

.mm-verdict-badge {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 10px;
    font-weight: 900;
    color: #D49B00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mm-score-large {
    font-size: 5.5rem !important;
    font-family: 'DM Serif Display', serif;
    color: #0F1923;
    line-height: 1;
}

.mm-stars-large {
    font-size: 32px !important;
    color: #D49B00;
    display: block;
    margin-bottom: 8px;
}

.mm-breadcrumbs {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* 3. Comment Box Visibility */
.comment-form-comment textarea {
    border: 1px solid #d1d5db !important;
    background: #ffffff !important;
    color: #0F1923 !important;
    padding: 1.5rem !important;
}

/* 4. Ensure Main Content is Always Visible */
.site-main, .entry-content, #primary {
    display: block !important;
    visibility: visible !important;
}

/* --- Authority Verdict Box v4.6 (Smart Recovery) --- */
.mm-verdict-box {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin: 4rem 0 !important;
    display: block !important;
}

.mm-verdict-header {
    display: flex;
    align-items: center;
    padding: 3rem;
    background: #fcfbf9;
    border-bottom: 1px solid #f0edeb;
    gap: 3rem;
}

.mm-score-large {
    font-size: 5.5rem !important;
    font-family: 'DM Serif Display', serif;
    color: #0F1923;
    line-height: 1;
}

.mm-stars-large {
    font-size: 32px !important;
    color: #D49B00;
}

/* Focus Reading Width (Restored) */
.single-post #primary {
    max-width: 850px !important;
    margin: 0 auto !important;
    float: none !important;
}

/* Comment Section Polish */
.comment-form-comment textarea {
    border: 1px solid #d1d5db !important;
    background: #ffffff !important;
    padding: 1.5rem !important;
}

/* --- Phase 13: Surgical Polish (v4.7) --- */

/* 1. Hide Sidebar Safely (CSS only) */
.single-post #right-sidebar {
    display: none !important;
}
.single-post #primary {
    width: 100% !important;
    float: none !important;
    margin: 0 auto !important;
    max-width: 850px !important; /* Perfect reading focus */
}

/* 2. Kill Duplicate Image */
.single-post .featured-image {
    display: none !important;
}

/* 3. Clean up the Metadata Clutter */
.single-post footer.entry-meta,
.single-post .cat-links,
.single-post .tags-links,
.single-post .post-navigation {
    display: none !important;
}

/* 4. Polish the Comment UI */
#comments {
    background: #fff !important;
    border: 1px solid #f0edeb !important;
    padding: 3rem !important;
    margin-top: 3rem !important;
}
.comment-form-comment textarea {
    border: 1px solid #d1d5db !important;
    background: #ffffff !important;
    border-radius: 8px !important;
}

/* --- Phase 14: The Masterpiece (v4.8) --- */

/* 1. Related Grid Polish */
.mm-related-section {
    background: #fcfbf9;
    padding: 4rem 2rem;
    margin: 4rem -2rem 0;
    border-top: 1px solid #f0edeb;
}

.mm-related-title {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    text-align: center;
    margin-bottom: 2rem;
}

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

.mm-related-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.mm-related-card:hover {
    transform: translateY(-5px);
}

.mm-related-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mm-related-card h4 {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* 2. Header Polish */
.site-header {
    box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
}

/* 3. Newsletter Box (Post-Article) */
.mm-post-newsletter {
    background: var(--navy);
    color: #fff;
    padding: 3rem;
    text-align: center;
    border-radius: 12px;
    margin-top: 4rem;
}

.mm-post-newsletter h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.mm-post-newsletter p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

/* --- Phase 15: Search & Hubs (v4.9) --- */

/* 1. Reading Progress Bar */
.mm-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 10001;
}
.mm-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.1s;
}

/* 2. Category Hubs & Archives */
.archive .site-main, .blog .site-main {
    max-width: 1200px !important;
    margin: 4rem auto !important;
}

.archive .page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0edeb;
}

.archive .page-title {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
}

/* 3. Search Bar in Header */
.mm-header-search-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mm-search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 5px;
    display: flex;
    align-items: center;
}

/* 4. Mobile Menu Polish */
@media (max-width: 768px) {
    .main-navigation .menu-toggle {
        background: transparent !important;
        color: var(--navy) !important;
    }
}

/* --- Phase 16: Accountability Update (v5.0) --- */

/* Reading Progress */
.mm-progress-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: transparent; z-index: 10001;
}
.mm-progress-bar {
    height: 100%; background: #D49B00; width: 0%; transition: width 0.1s;
}

/* Sidebar & Focus Layout */
.single-post #right-sidebar { display: none !important; }
.single-post #primary {
    width: 100% !important; float: none !important; margin: 0 auto !important; max-width: 850px !important;
}
.single-post .featured-image { display: none !important; }

/* Breadcrumbs */
.mm-breadcrumbs {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; margin-bottom: 2rem;
}

/* Verdict Box */
.mm-verdict-box {
    background: #fff !important; border: 1px solid #e2e8f0 !important; border-radius: 12px !important; overflow: hidden; margin: 4rem 0 !important;
}
.mm-verdict-header {
    display: flex; align-items: center; padding: 3rem; background: #fcfbf9; border-bottom: 1px solid #f0edeb; gap: 3rem; position: relative;
}
.mm-score-large {
    font-size: 5.5rem !important; font-family: 'DM Serif Display', serif; color: #0F1923; line-height: 1;
}
.mm-stars-large { font-size: 32px !important; color: #D49B00; display: block; margin-bottom: 8px; }

/* Author Bio */
.mm-author-box {
    margin-top: 4rem; padding: 3rem; border: 1px solid #f0edeb; border-radius: 12px; background: #fff; display: flex; gap: 2rem; align-items: center;
}
.mm-author-avatar { width: 80px; height: 80px; border-radius: 50%; }
.mm-author-label { font-size: 12px; font-weight: 800; color: #D49B00; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.mm-author-name { font-family: 'DM Serif Display', serif; font-size: 24px; margin: 0 0 8px; }
.mm-author-bio { font-size: 14px; color: #555; margin: 0; }

/* Related Section */
.mm-related-section { background: #fcfbf9; padding: 4rem 2rem; margin: 4rem -2rem 0; border-top: 1px solid #f0edeb; }
.mm-related-title { font-family: 'DM Serif Display', serif; font-size: 24px; text-align: center; margin-bottom: 2rem; }
.mm-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mm-related-card { text-decoration: none; color: inherit; transition: transform 0.3s; }
.mm-related-card:hover { transform: translateY(-5px); }
.mm-related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
.mm-related-card h4 { font-size: 14px; line-height: 1.4; margin: 0; }

/* Newsletter Box */
.mm-post-newsletter { background: #0F1923; color: #fff; padding: 3rem; text-align: center; border-radius: 12px; margin-top: 4rem; }
.mm-post-newsletter h3 { font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: 0.5rem; color: #fff; }
.mm-post-newsletter p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.mm-newsletter-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; }
.mm-newsletter-form input { flex: 1; padding: 12px; border-radius: 6px; border: none; font-size: 14px; }
.mm-newsletter-form button { background: #D49B00; color: #fff; border: none; padding: 12px 24px; border-radius: 6px; font-weight: 700; cursor: pointer; }

/* Meta Hiding (Safe) */
.single-post footer.entry-meta, .single-post .cat-links, .single-post .tags-links, .single-post .post-navigation {
    display: none !important;
}
/* --- Phase 11: The Ultimate Editorial System (v6.0) --- */

:root {
    --bg: #F9F8F6;
    --card: #FFFFFF;
    --border: #EAE5E1;
    --navy: #0F1923;
    --gold: #D49B00;
    --text: #1A1A1A;
    --text-muted: #64748b;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. Global Refinement */
body {
    background-color: var(--bg) !important;
    font-feature-settings: "kern" 1, "onum" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
}

/* 2. Reading Progress Bar */
.mm-progress-container {
    position: fixed;
    top: 0;
    z-index: 2000;
    width: 100%;
    height: 4px;
    background: transparent;
}

.mm-progress-bar {
    height: 4px;
    background: var(--gold);
    width: 0%;
}

/* 3. The "Split" Master Verdict Box */
.mm-verdict-box {
    display: flex;
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    margin: 4rem 0 !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.03) !important;
    border-radius: 8px;
    overflow: hidden;
}

.mm-verdict-content {
    flex: 1;
    padding: 2.5rem;
}

.mm-verdict-score-panel {
    background: var(--navy);
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 2rem;
}

.mm-v-score {
    font-family: var(--font-d);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
}

.mm-v-label {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-top: 5px;
}

/* 4. Surgical Consistency Fixes */
.single-post .featured-image { display: none !important; }

.mm-breadcrumbs {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.mm-author-box {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: 4rem;
}

/* 5. The "Graceful Exit" Section */
.mm-footer-action {
    background: #fff;
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    margin: 4rem 0;
    border-radius: 8px;
}

/* 6. Mobile Optimization */
@media (max-width: 768px) {
    .mm-verdict-box { flex-direction: column; }
    .mm-verdict-score-panel { width: 100%; flex-direction: row; gap: 15px; padding: 1.5rem; }
    .mm-v-score { font-size: 2.5rem; }
}
/* --- Phase 12: Strictly Minimalist (v6.1) --- */

:root {
    --bg: #F9F8F6;
    --card: #FFFFFF;
    --border: #EAE5E1;
    --navy: #0F1923;
    --gold: #D49B00;
}

/* 1. Kill Extra Clutter */
.mm-progress-container, .mm-footer-action { display: none !important; }

/* 2. Surgical Fixes (Mandatory) */
.single-post .featured-image { display: none !important; }

.mm-breadcrumbs {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* 3. The Cleanest Verdict Box */
.mm-verdict-box {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    margin: 3rem 0 !important;
    border-radius: 4px;
    padding: 2.5rem;
}

/* 4. Gap Closure */
.mm-author-box {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
