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

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

.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

.blog-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: #B0B0B0;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Montserrat', sans-serif;
    padding: 12px 24px;
    border: 2px solid #B0B0B0;
    background: white;
    color: #0C2340;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.filter-btn:hover {
    border-color: #9D2235;
    color: #9D2235;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(157, 34, 53, 0.2);
}

.filter-btn.active {
    background: #9D2235;
    border-color: #9D2235;
    color: white;
    box-shadow: 0 4px 12px rgba(157, 34, 53, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #B0B0B0;
    text-decoration: none;
    color: inherit;
    border-top: 4px solid transparent;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(12, 35, 64, 0.2);
    text-decoration: none;
    color: inherit;
    border-top-color: #D4AF37;
}

.blog-thumbnail {
    width: 100%;
    height: 240px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(12, 35, 64, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid #D4AF37;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #B0B0B0;
    font-weight: 500;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.blog-excerpt {
    font-family: 'Lora', serif;
    color: #0C2340;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #B0B0B0;
}

.author-avatar {
    width: 45px;
    height: 45px;
    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-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #0C2340;
    font-size: 0.9rem;
}

.author-title {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: #B0B0B0;
    font-style: italic;
}

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

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

.no-posts p {
    font-family: 'Lora', serif;
    color: #B0B0B0;
    font-size: 1.1rem;
}

.no-posts a {
    color: #9D2235;
    text-decoration: none;
    font-weight: 600;
}

.no-posts a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

/* Featured post styling */
.blog-post.featured {
    grid-column: span 2;
    border-top: 4px solid #D4AF37;
}

.blog-post.featured .blog-thumbnail {
    height: 320px;
}

.blog-post.featured .blog-post-title {
    font-size: 2.2rem;
}

.blog-post.featured .blog-excerpt {
    font-size: 1.05rem;
    -webkit-line-clamp: 4;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 15px;
    }
    
    .blog-header {
        padding: 40px 25px;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-post.featured {
        grid-column: span 1;
    }
    
    .blog-post.featured .blog-post-title {
        font-size: 1.8rem;
    }
    
    .blog-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .blog-content {
        padding: 25px;
    }
}

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

.blog-section {
    position: relative;
}