/**
 * 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.
 */


@font-face {
    font-family: 'Cerebri Sans';
    src: url('https://test.bgibhopal.com/__mcloud/attachment?pid=1336&nonce=05aa2b386a') format('woff2'),
         url('https://test.bgibhopal.com/__mcloud/attachment?pid=1336&nonce=05aa2b386a') format('woff'),
         url('https://test.bgibhopal.com/__mcloud/attachment?pid=1336&nonce=05aa2b386a') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, h1, h2, h3, h4, h5, h6, p, a, li {
    font-family: 'Cerebri Sans', sans-serif;
}

.sidebar-1 { order: 2; }
.sidebar-2 { order: 3; }
.sidebar-3 { order: 4; }
.sidebar-4 { order: 5; }
.sidebar-5 { order: 6; }

.widget-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}


.single-post-layout {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-main {
    flex: 3; /* The content area will take up more space */
    padding: 20px;
    background: #fff;
}

.sidebar-1 {
    flex: 1; /* Sidebar will take up less space */
    padding: 20px;
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .single-post-layout {
        flex-direction: column;
    }

    .site-main,
    .sidebar-1 {
        flex: unset;
        width: 100%;
        padding: 15px;
        border-left: none;
    }

    .sidebar-1 {
        border-top: 1px solid #ddd;
    }
}

.recent-posts-grid {
    display: flex;
    gap: 20px;
}

.recent-post-item {
    position: relative;
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.recent-post-image img:hover {
    transform: scale(1.05);
}

.recent-post-title {
    position: absolute; 
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.recent-post-title:hover {
    background: rgba(0, 0, 0, 0.8);
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
    margin-bottom: 15px;
    list-style-type: none;
    padding-left: 25px;
    position: relative;
}

.wp-block-latest-posts.wp-block-latest-posts__list li::before {
    content: '→'; /* Custom arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

.wp-block-latest-posts.wp-block-latest-posts__list li::after {
    content: ''; /* Empty content for the divider */
    display: block;
    width: 100%; /* Full width */
    height: 1px; /* Divider thickness */
    background-color: #eeeeee; /* Divider color */
    margin: 10px 0; /* Space around the divider */
}