/* ===== BLOG POST SPECIFIC STYLES ===== */

/* Breadcrumb Navigation */
.blog-breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
}

.breadcrumb-nav a {
    color: #309B42;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #267A33;
}

.breadcrumb-separator {
    color: #999999;
}

.breadcrumb-current {
    color: #333333;
    font-weight: 500;
}

/* Article Header */
.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.article-title {
    font-size: 42px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.article-meta-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    font-weight: 600;
    color: #333333;
}

.article-category-badge {
    display: inline-block;
    background-color: #309B42;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-time {
    color: #999999;
    font-style: italic;
}

/* Featured Image */
.article-featured-image {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-featured-image .pending-text {
    font-size: 14px;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Article Body */
.article-content {
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.article-content p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 28px;
    color: #1B2A4A;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.article-content h3 {
    font-size: 22px;
    color: #1B2A4A;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 24px 30px;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content a {
    color: #309B42;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #267A33;
}

/* Pull Quote */
.pull-quote {
    background-color: #f7f7f7;
    border-left: 4px solid #309B42;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
    font-size: 18px;
    font-style: italic;
    color: #333333;
    font-family: Georgia, serif;
    line-height: 1.8;
}

.pull-quote::before {
    content: '\201C';
    font-size: 48px;
    color: #309B42;
    opacity: 0.3;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 8px;
}

/* Share Buttons */
.share-buttons-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 50px 0;
}

.share-label {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.share-button.facebook {
    background-color: #1877F2;
}

.share-button.facebook:hover {
    background-color: #165FD6;
    transform: translateY(-2px);
}

.share-button.twitter {
    background-color: #000000;
}

.share-button.twitter:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.share-button.linkedin {
    background-color: #0A66C2;
}

.share-button.linkedin:hover {
    background-color: #084CA4;
    transform: translateY(-2px);
}

.share-button.pinterest {
    background-color: #E60023;
}

.share-button.pinterest:hover {
    background-color: #AD081B;
    transform: translateY(-2px);
}

/* Author Bio Box */
.author-bio {
    background-color: #f7f7f7;
    padding: 40px 30px;
    border-radius: 8px;
    margin: 60px 0;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.author-avatar {
    width: 100px;
    height: 100px;
    background-color: #e0e0e0;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999999;
    font-weight: 600;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.author-title {
    font-size: 13px;
    color: #309B42;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.author-bio-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

/* Related Articles Section */
.related-articles {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.related-title {
    font-size: 28px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.related-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 25px;
}

.related-article-title {
    font-size: 16px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
    min-height: 40px;
}

.related-date {
    font-size: 13px;
    color: #999999;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #1B2A4A 0%, #0D1321 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-box .cta-button {
    background-color: #309B42;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-box .cta-button:hover {
    background-color: #267A33;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }

    .article-meta-info {
        gap: 15px;
        font-size: 13px;
    }

    .article-featured-image {
        height: 250px;
    }

    .article-content {
        margin: 0 0 40px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .author-bio {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .share-buttons-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .share-label {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 24px;
    }

    .article-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .article-featured-image {
        height: 200px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

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

    .article-content ul,
    .article-content ol {
        margin-left: 20px;
    }
}
