/*
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.7.1775477119
Updated: 2026-04-06 12:05:19

*/

/* HERO SECTION */
.blog-hero {
    position: relative;
    height: 569px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.blog-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-inner {
    position: relative;
    max-width: 1140px;
    margin-left: 90px;
    padding: 0 20px;
}

.blog-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    max-width: 600px;
    line-height: 1.2;
}

/* BOXED LAYOUT */
.boxed-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 15px;
}

/* TWO COLUMN LAYOUT */
.blog-content-area {
    display: flex;
    gap: 40px;
}
.blog-content-area {
    align-items: flex-start; /* 🔥 important fix */
}
.content-area {
    width: 65%;
}

.sidebar-area {
    width: 35%;
}

/* CONTENT STYLING */
.content-area h2 {
    font-size: 26px;
    margin-top: 25px;
}

.content-area p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* SIDEBAR */
.widget {
    margin-bottom: 30px;
}

.widget h3 {
    margin-bottom: 15px;
}

/* RECENT POSTS */
/* Common Box Style */
.sidebar-box {
    background: #fff;
    padding: 20px 20px 5px 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px #0000001A;
    margin-bottom: 25px;
}

/* Social Box spacing */
.social-box {
    text-align: left;
}
.recent-post {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.recent-post img {
    width: 125px;
    height: 88px;
    border-radius: 10px;
    max-width: 125px;
    object-fit: cover;
}

.recent-post .info a {
   font-family: Plus Jakarta Sans;
font-weight: 500;
font-style: Medium;
font-size: 16px;
leading-trim: CAP_HEIGHT;
line-height: 25px;
letter-spacing: 0%;
text-transform: capitalize;
    display: block;
    color: #000;
}

.recent-post .info span {
  font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 16px;
letter-spacing: 0%;
    color: #575757;
}
.search-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #FFF5EE; /* Peach color */
    border: 1px solid #EEDACE;
    border-radius: 8px;
    padding: 0px 15px;
}

.search-input-wrapper i {
    color: #f15a24; /* Orange icon */
    margin-right: 10px;
}

.search-field {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    width: 100%;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.hero-inner {
    margin-left: 0px;
   
}
    .blog-content-area {
        flex-direction: column;
    }

    .content-area,
    .sidebar-area {
        width: 100%;
    }

    .blog-hero h1 {
        font-size: 32px;
    }
}