/*
.left-block {
    width: 100%;
    
}

.right-block {
    width: 100%;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.blog-container a {
    display: contents;
}

.blog {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.blog-title {
    font-size: 20px;
    text-align: center;
}

.blog-img {
    border-radius: 8px 8px 0 0;
}

.cat-item {
    font-size: 13px;
    font-weight: bold;
    color: darkslateblue;
    display: block;
    margin: 8px 0 8px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid;
}

.blog-cat {
    text-align: center;
    display: block;
    padding: 8px;
    font-size: 12px;
    color: darkblue;
    font-weight: bold;
}

*/

/* Blog Page Container */
.blog-page-container {
    display: flex;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

/* Blog Content Section */
.blog-content {
    width: 70%;
}

/* Featured Blog Section */
.featured-blog-section {
    margin-bottom: 30px;
}

.featured-blog-section h2 {
    font-size: 1.6rem;
    color: #004080;
    margin-bottom: 15px;
}

.featured-blog {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
}

.featured-image {
    width: 40%;
    border-radius: 10px;
}

.featured-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #004080;
}

.featured-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-button {
    background-color: #004080;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.read-more-button:hover {
    background-color: #003366;
}

/* Blog Post Listing Section */
.blog-post-list h2 {
    font-size: 1.6rem;
    color: #004080;
    margin-bottom: 20px;
}

.blog-post-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
    margin-bottom: 20px;
}

.post-image {
    width: 30%;
    border-radius: 10px;
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #004080;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Pagination Section */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a {
    text-decoration: none;
    padding: 10px 15px;
    color: #004080;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.pagination a.active {
    background-color: #004080;
    color: white;
}

.pagination a:hover {
    background-color: #ffcc00;
    color: white;
}

/* Right Sidebar: Categories and Ad Space */
.right-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Blog Categories */
.blog-categories h2 {
    font-size: 1.6rem;
    color: #004080;
    margin-bottom: 10px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    display: inline-block;
    background-color: #004080;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.category-tag:hover {
    background-color: #ffcc00;
    color: #004080;
}


/* Footer Section */
.site-footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    

    

    .featured-blog {
        flex-direction: column;
    }

    .blog-post-card {
        flex-direction: column;
    }

    .featured-image,
    .post-image {
        width: 100%;
    }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
   

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
   
}

@media only screen and (max-width: 992px) {
    .blog-content,
    .right-sidebar {
        width: 100%;
    }

    .blog-page-container {
        flex-direction: column;
    }
}