/*
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.5.1768244572
Updated: 2026-01-12 19:02:52

*/
:root{
    --white: #fff;
    --black: #000;
}
/*BLOG CARDS*/
    .grid-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.grid-blog .post-container:first-of-type {
    grid-area: 1 / 1 / 3 / 3;
    min-height: 600px;
}

.grid-blog .post-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 20px;
    padding: 30px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.grid-blog .post-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.grid-blog .post-container .post-content {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: end;
    color: var(--white);
    width: 100%;
}

.grid-blog .post-container:first-of-type .post-content {
    flex-direction: column;
    justify-content: end;
    align-items: start;
    width: 100%;;
}

.grid-blog .post-container .post-content h3 {
    font-size: 32px;
    font-weight: bold;
    max-width: 80%;
    color: var(--white);
    margin: 0;
}

.grid-blog .post-container .post-content .bottom {
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: end;
   
}

.grid-blog .post-container:first-of-type .post-content .bottom {
    align-items: end;
     justify-content: space-between;
    width: 100%;
}

.grid-blog .post-container .post-content p {
    font-size: 16px;
    max-width: 100%;
    display: none;
}

.grid-blog .post-container:first-of-type .post-content p {
    display: block;
    max-width: 85%;
    margin: 0;
}

.grid-blog .post-container .post-content svg {
    width: 23px;
    height: 23px;
}

@media(max-width: 880px){
    .grid-blog {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-blog .post-container{
        min-height: 350px;
    }
    .grid-blog .post-container:first-of-type {
        grid-area: auto;

    }
}
/*BLOG CARDS END*/

/* COPYRIGTH */
.copyright{
    color: var(--white);
    text-align: center;
    margin: 0;
}
/* COPYRIGTH END*/