@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue:wght@400&family=Lora:wght@400;500;600;700&family=Montserrat:wght@400;500;600&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: #0C2340;
    background: #f5f5f5;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Military-inspired section divider */
.single-post-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9D2235 0%, #D4AF37 50%, #0C2340 100%);
}

.post-navigation {
    margin-bottom: 30px;
}

.breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #B0B0B0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.breadcrumb a {
    color: #9D2235;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #D4AF37;
}

.breadcrumb span {
    margin: 0 10px;
    color: #B0B0B0;
}

.post-header {
    background: white;
    border-radius: 8px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
    border-top: 4px solid #9D2235;
    text-align: center;
}

.post-category {
    display: inline-block;
    background: rgba(12, 35, 64, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-left: 4px solid #D4AF37;
}

.post-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #0C2340;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #B0B0B0;
    font-weight: 500;
    flex-wrap: wrap;
}

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

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(12, 35, 64, 0.15);
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.post-content {
    background: white;
    border-radius: 8px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
    border-left: 4px solid #D4AF37;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-family: 'Bebas Neue', sans-serif;
    color: #0C2340;
    margin: 30px 0 20px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.post-content h2 {
    font-size: 2.2rem;
    border-bottom: 2px solid #B0B0B0;
    padding-bottom: 10px;
}

.post-content h3 {
    font-size: 1.8rem;
}

.post-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #9D2235;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #0C2340;
    border-radius: 0 8px 8px 0;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.post-content a {
    color: #9D2235;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

.post-author-bio {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
    border-top: 4px solid #0C2340;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0C2340 0%, #9D2235 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #0C2340;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.author-title {
    font-family: 'Montserrat', sans-serif;
    color: #9D2235;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-bio-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #0C2340;
}

.post-tags {
    background: white;
    border-radius: 8px;
    padding: 30px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
}

.tags-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #0C2340;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: #f8f9fa;
    color: #0C2340;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #B0B0B0;
}

.tag-item:hover {
    background: #9D2235;
    color: white;
    border-color: #9D2235;
    text-decoration: none;
}

.related-posts {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
    border-top: 4px solid #D4AF37;
}

.related-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #0C2340;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid #B0B0B0;
}

.related-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(12, 35, 64, 0.15);
    text-decoration: none;
    color: inherit;
    border-color: #9D2235;
}

.related-thumbnail {
    width: 100%;
    height: 150px;
    background: #e9ecef;
    overflow: hidden;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-thumbnail img {
    transform: scale(1.05);
}

.related-content {
    padding: 20px;
}

.related-post-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #0C2340;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-excerpt {
    font-size: 0.9rem;
    color: #B0B0B0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-navigation-links {
    background: white;
    border-radius: 8px;
    padding: 30px 40px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9D2235;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37;
    text-decoration: none;
}

.nav-link.prev::before {
    content: '←';
    font-size: 1.2rem;
}

.nav-link.next::after {
    content: '→';
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .single-post-container {
        padding: 20px 15px;
    }

    .post-header,
    .post-content,
    .post-author-bio,
    .related-posts {
        padding: 30px 25px;
    }

    .post-title {
        font-size: 2.5rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 15px;
    }

    .author-header {
        flex-direction: column;
        text-align: center;
    }

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

    .post-navigation-links {
        flex-direction: column;
        text-align: center;
    }

    .post-featured-image img {
        height: 250px;
    }
}