/* Base Styles */
body.blog-page {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #0b3103;
    color: #e7e1c8;
    min-height: 100vh;
}

.blog-container {
    min-height: 100vh;
}

.max-width-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Styles */
.blog-header {
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(to right, #1f3a4b, #0b3103);
    padding: 40px 0;
    border-radius: 12px;
}

.blog-title {
    font-size: 3rem;
    color: #e7e1c8;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    margin: 4px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 2px solid #6f8890;
    background: transparent;
    color: #6f8890;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #6f8890;
    color: #0b3103;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Post */
.blog-post {
    background: #1f3a4b;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 223, 199, 0.1);
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(111, 136, 144, 0.2), 0 4px 6px -2px rgba(111, 136, 144, 0.1);
}

.post-image {
    width: 100%;
    height: 192px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-title {
    font-size: 1.5rem;
    color: #e7e1c8;
    margin-bottom: 12px;
}

.post-excerpt {
    color: #758b93;
    margin-bottom: 16px;
    line-height: 1.5;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.post-date {
    color: #6f8890;
}

.read-more {
    background: #6f8890;
    color: #0b3103;
    padding: 8px 16px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background: #e7e1c8;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;
}

.page-btn {
    margin: 0 4px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 2px solid #6f8890;
    background: transparent;
    color: #6f8890;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn.active,
.page-btn:hover {
    background: #6f8890;
    color: #0b3103;
}

/* Back Home Button */
.back-home {
    text-align: center;
    margin-top: 64px;
}

.home-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #e7e1c8;
    color: #0b3103;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: #6f8890;
    color: #0b3103;
}