/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
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.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1770736836
Updated: 2026-02-10 15:20:36

*/



/* Aarogyam Blog */

/* --- Herbal Aarogyam Blog Grid Layout --- */
.ha-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

/* --- Individual Blog Card Styling --- */
.ha-blog-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden; /* Keeps image zoom within rounded corners */
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Card Hover Effect */
.ha-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* --- Thumbnail & Hover Zoom --- */
.ha-blog-thumb-link {
    display: block;
    overflow: hidden;
}

.ha-blog-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* Zoom the image slightly when the whole card is hovered */
.ha-blog-card:hover .ha-blog-thumb {
    transform: scale(1.05);
}

/* --- Content Area --- */
.ha-blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Aligns "Read More" buttons neatly if titles vary in length */
}

/* --- Typography & Links --- */
.ha-blog-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    line-height: 1.3;
}

.ha-blog-title a {
    color: #2c5e3b; /* Brand Green */
    text-decoration: none;
    transition: color 0.2s ease;
}



.ha-blog-excerpt {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- Read More Interaction --- */
.ha-blog-read-more {
    display: inline-block;
    font-weight: 700;
    color: #b07d3b; /* Brass/Gold Accent */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ha-blog-read-more:hover {
    color: #2c5e3b;
    transform: translateX(5px); /* Gentle slide-right effect */
}


/* --- Single Post Layout --- */
.ha-single-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 1. Featured Image */
.ha-single-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ha-single-feat-img {
    width: 100%;
    max-height: 600px; 
    object-fit: cover;
    display: block;
}

/* Reading Area Wrapper */
.ha-single-content-wrapper {
    max-width: 800px; 
    margin: 0 auto 60px;
    background: #ffffff;
}

/* 2. Title */
.ha-single-title {
    font-size: 42px;
    color: #2c5e3b !important; 
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

/* 3. Content Body */
.ha-single-body {
    font-size: 18px;
    line-height: 1.8;
    color: #2c5e3b;
}

.ha-single-body h2, 
.ha-single-body h3, 
.ha-single-body h4 {
    color: #2c5e3b;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* 4. Other Blogs Section */
.ha-related-blogs {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eaeaea;
}

.ha-related-blogs
.ha-related-title {
    text-align: center;
    font-size: 32px;
    color: #2c5e3b !important; 
    margin-bottom: 40px;
}

