/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

/* Container */
.blog-wrapper {
    max-width: 1140px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Image */
.blog-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 18px;
    flex: 1;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.blog-meta span {
    margin-right: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.blog-title a {
    text-decoration: none;
    color: inherit;
}

.blog-title a:hover {
    color: #0073aa;
}

.blog-excerpt {
    font-size: 15px;
    color: #555;
}

.read-more {
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    color: #0073aa;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

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

.blog-pagination .page-numbers {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 14px;
    background: #f4f4f4;
    color: #333;
    border-radius: 5px;
    text-decoration: none;
}

.blog-pagination .current {
    background: #0073aa;
    color: #fff;
    font-weight: bold;
}

.hm_consec textarea.wpcf7-form-control.wpcf7-textarea {
    max-height: 100px;
}






