/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */




.post-content a {
    text-decoration: none;
}

.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-post {
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s;
}
.blog-post:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.blog-post img {
    max-width: 100%;
    width: 100%;;
    height: 200px;
    object-fit: cover;
}
.blog-post h2 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
}
.post-content {
    padding: 25px 20px;
}
.meta
{
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
}
.post-content h2 {
    font-size: 24px;
    color: #f05c2b;
    margin: 0;
}
.excerpt {
    font-size: 16px;
}

.img-gallery .gallery-item img{
	height:300px;
	object-fit:cover;
}
.submit-btn ,.submit-btn:hover{
    background-color: #F05C2B;
    color: #fff;
}
/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .blog-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .blog-grid-container {
        grid-template-columns: 1fr;
        padding: 20px 10px;
    }
}