/* ===================================
   Blog Post Styles
   =================================== */

.blog-post {
    padding: 60px 0 80px;
    background-color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb span:last-child {
    color: var(--text-dark);
}

/* Post Header */
.post-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.post-category {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.post-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Featured Image */
.featured-image {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Body */
.post-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.post-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.crm-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.post-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-body ul li {
    margin-bottom: 0.75rem;
    list-style: disc;
}

.post-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Highlighted Boxes */
.highlight-box {
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 1rem;
}

.highlight-box ul {
    margin-bottom: 0;
}

.callout-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.callout-box p {
    margin-bottom: 0;
    color: var(--white);
}

.decision-box {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.decision-box p {
    color: var(--white);
    margin-bottom: 1rem;
}

.decision-box ul {
    margin-bottom: 0;
}

.decision-box ul li {
    color: var(--white);
}

.example-text {
    background-color: var(--light-bg);
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--primary-light);
    font-style: italic;
    margin: 1.5rem 0;
}

.final-note {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* Post CTA */
.post-cta {
    max-width: 800px;
    margin: 4rem auto 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2f1e 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.post-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.post-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.post-cta .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 18px 40px;
}

.post-cta .btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

/* Back to Blog */
.back-to-blog {
    max-width: 800px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 1.8rem;
    }

    .post-body {
        font-size: 1rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .post-body h2 {
        font-size: 1.6rem;
        margin-top: 2rem;
    }

    .post-body h3 {
        font-size: 1.3rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .highlight-box,
    .callout-box,
    .decision-box {
        padding: 1.5rem;
    }

    .post-cta {
        padding: 2rem 1.5rem;
    }

    .post-cta h3 {
        font-size: 1.5rem;
    }
}
