/* Blog Page Specific Styles */

.blog-hero {
    padding: 120px 5% 60px;
    text-align: center;
    background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.8)),
        url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--glass-border);
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.blog-container {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    width: 80%;
    margin: 0 auto;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(251, 146, 60, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease forwards;
}

.blog-card:nth-child(2) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Modern Simplified Blog Style */

/* New Blog Post Style */
.blog-body {
    background: #000;
    color: #eee;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

/* Masthead Section */
.masthead {
    margin-top: 100px;
    padding: 60px 5% 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.masthead-category {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

h1.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

h1.hero-headline em {
    font-style: italic;
    color: var(--primary);
}

.hero-deck {
    font-size: 1.3rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.byline {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.hero-deck {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 1.25rem;
    line-height: 1.55;
}

.byline {
    font-family: 'Space Mono', monospace;
    font-size: 0.63rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    padding: 0.5rem 1rem;
    display: inline-block;
    color: var(--muted);
}

/* LAYOUT */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* INTRO */
.intro-section {
    display: block;
    margin-bottom: 40px;
}

.intro-section .drop-cap {
    font-size: 1.2rem;
    color: #ccc;
}

.intro-section .drop-cap::first-letter {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    float: left;
    margin-right: 15px;
    line-height: 1;
}

.pull-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    border-left: 4px solid var(--primary);
    padding: 20px 40px;
    margin: 50px 0;
    background: rgba(255, 107, 0, 0.05);
    line-height: 1.4;
}

/* Hide Unnecessary Clutter */
.stat-row,
.timeline,
.section-label,
.chapter-number,
.strategy-number,
.masthead-title,
.ornament {
    display: none !important;
}

/* Chapters */
.chapter,
.strategy {
    padding: 40px 0;
    border-bottom: 1px solid #222;
    display: block;
    opacity: 1 !important;
    transform: none !important;
}

h2.chapter-title,
h2.strategy-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.chapter-subtitle,
.strategy-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--muted);
    font-size: 0.97rem;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.story-hook {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-style: italic;
    color: #ffffff;
    border-top: 2px solid var(--accent);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
    margin-bottom: 1.3rem;
    line-height: 1.5;
}

.chapter-body p,
.strategy-body p {
    font-size: 1.15rem;
    color: #bbb;
    margin-bottom: 25px;
}

.chapter-body ul,
.strategy-body ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.chapter-body li,
.strategy-body li {
    font-size: 1.15rem;
    color: #bbb;
    margin-bottom: 12px;
}

.chapter-body b,
.chapter-body strong,
.strategy-body b,
.strategy-body strong {
    color: #fff;
    font-weight: 700;
}

.inline-callout {
    background: #1a1a1a;
    border-left: 4px solid var(--accent);
    padding: 1rem 1.4rem;
    margin: 1.25rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.5;
}

.action-box {
    background: #1a1a1a;
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}

.action-box h4 {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.65rem;
}

.action-box ul {
    list-style: none;
    font-size: 0.88rem;
    line-height: 2;
    color: #cccccc;
}

.action-box ul li::before {
    content: '→ ';
    color: var(--accent);
    font-weight: 700;
}

/* CLOSER */
.ornament {
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent);
    padding: 0.75rem 0;
    letter-spacing: 0.6em;
}

.closer {
    padding: 80px 0;
    text-align: center;
}

.closer h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.action-box {
    margin-top: 40px;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 20px;
    background: #0a0a0a;
}

.action-box .btn {
    display: block;
    width: 100%;
}

.closer-rule {
    display: none;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .masthead {
        padding-top: 60px;
    }

    h1.hero-headline {
        font-size: 2.5rem;
    }

    .hero-deck {
        font-size: 1.1rem;
    }

    h2.chapter-title {
        font-size: 1.8rem;
    }

    .pull-quote {
        font-size: 1.4rem;
        padding: 20px;
    }
}