/**
 * Blog Styles
 * Styles for archives and single posts
 */

/* Archive Page */
.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-title {
    color: #005480;
    font-size: 42px;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.archive-description {
    color: #666;
    font-size: 18px;
    line-height: 1.5;
}

/* Pagination */
.navigation.pagination {
    margin: 40px 0;
    text-align: center;
}

.nav-links {
    display: inline-block;
}

.page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #005480;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers.current {
    background-color: #005480;
    color: #fff;
    border-color: #005480;
}

.page-numbers:hover {
    background-color: #f5f5f5;
}

.page-numbers.prev, .page-numbers.next {
    padding: 8px 16px;
}

/* Single Post */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    color: #005480;
    font-size: 38px;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.entry-meta {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.entry-meta .posted-on {
    margin-right: 15px;
}

.post-category a {
    color: #005480;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-category a:hover {
    color: #003d5e;
}

.featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    color: #005480;
    margin: 30px 0 15px;
}

.entry-content ul, 
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content a {
    color: #005480;
    text-decoration: underline;
}

.entry-content a:hover {
    color: #003d5e;
}

.entry-content blockquote {
    border-left: 4px solid #005480;
    padding: 15px 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    font-style: italic;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags-links {
    display: block;
    margin-bottom: 30px;
    color: #666;
}

.tags-links a {
    display: inline-block;
    margin-right: 8px;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #005480;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tags-links a:hover {
    background-color: #e8e8e8;
}

/* Post Navigation */
.post-navigation {
    margin-top: 30px;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    max-width: 48%;
}

.post-navigation a {
    display: block;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background-color: #f0f0f0;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 600;
    color: #005480;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-title, .entry-title {
        font-size: 32px;
    }
    
    .post-navigation .nav-links {
        flex-direction: column;
    }
    
    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .single-post-content {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .page-title, .entry-title {
        font-size: 28px;
    }
    
    .entry-content {
        font-size: 16px;
    }
} 