/*
Theme Name: Twenty Twenty-One Child
Theme URI: https://wordpress.org/themes/twentytwentyone/
Template: twentytwentyone
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Tags: one-column,accessibility-ready,custom-colors,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,blog,portfolio
Version: 2.5.1750330931
Updated: 2025-06-19 11:02:05

*/

h2 span.highlight-color{
	color: #0F2882 !important;
}

/* 1320px Container */
.custom-blog-listing {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-blog-listing header.entry-header {
    padding-bottom: 10px !important;
}

/* Blog Grid Layout */
.custom-blog-listing .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Blog Card Design */
.custom-blog-listing .blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-blog-listing .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.custom-blog-listing .blog-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.custom-blog-listing .blog-content {
    padding: 25px;
}

.custom-blog-listing .entry-title {
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.custom-blog-listing .entry-title a {
    color: #333;
    text-decoration: none;
}

.custom-blog-listing .entry-title a:hover {
    color: #0066cc;
}

.custom-blog-listing .entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.custom-blog-listing .entry-excerpt {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.custom-blog-listing .read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.custom-blog-listing .read-more:hover {
    background: #0055aa;
}

/* Pagination */
.custom-blog-listing .pagination {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 0;
}

p.breadcrubms a {
    color: #fff;
}

span.post-page.current-item {
    color: #FDC800;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img{
    outline: unset !important;
}

.full-height-img, img.wp-image-1052{
    height: 100% !important;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .custom-blog-listing .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 600px) {
    .custom-blog-listing .blog-grid {
        grid-template-columns: 1fr;
    }
}