/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

#site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    padding: 32px 20px 0px;
}

.header-button {
    border-radius: 43.632px;
    background: var(--Orange, #F18131);

    color: #FFF !important;
    font-size: 17px;
    font-weight: 700 !important;
    line-height: 30.799px;

    text-align: center;
    vertical-align: middle;

    padding: 12px 20px;
}

.site-header .site-branding .site-logo img {
    width: 300px;
    max-width: 300px;
}

.site-header .header-inner {
    align-items: center;
    max-width: 1320px;
}

.site-navigation ul.menu li a {
    color: #FFF;
}

.site-navigation {
    margin-left: auto;
    margin-right: 50px;
}

.site-navigation-toggle-holder .site-navigation-toggle {
    background: none;
    color: #FFFFFF;
}

/* Blog Style */
.grid-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.grid-posts .post {
    border-radius: 12.967px;
    border: 1.081px solid #E8E8EA;
    background: #FFF;
    padding: 18px;
}

.author-date {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.blog .post .entry-title a {
    color: #2D2D2D;
}

.featured-post {
    cursor: pointer;
    min-height: 500px;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 45px;
    color: #FFFFFF;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
}

.featured-post h2 {
    color: #FFFFFF;
}

.blog-main,
.post-container {
    max-width: 1320px !important;
    padding: 130px 20px 75px;
}

.content-title-blog {
    margin-bottom: 35px;
}

.blog-pagination .page-numbers {
    display: flex;
    list-style: none;
    gap: 5px;
    justify-content: center;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
    padding: 12px 18px;
    color: #FFB988;
    font-weight: normal;
}

.blog-pagination .current,
.blog-pagination .page-numbers li a:hover {
    border-radius: 8px;
    background: #FFF2E8;
    color: #F18131 !important;
}

.blog-pagination {
    margin-top: 50px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.blog-header h1,
.post-container h1 {
    color: #000000;
    margin-top: 0px;
}

.post-container {
    margin: auto;
}

.post-container .author-date {
    justify-content: flex-start;
    margin-bottom: 30px;
}

.post-container .page-header img {
    margin-bottom: 20px;
}

.post-container img {
    max-height: 460px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

.post-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

a.post-nav-link {
    color: #F18131;
}

hr.post-nav-divider {
    border: 1px solid rgb(241 129 49 / 30%);
    margin-top: 35px;
    margin-bottom: 25px;
}

.related-posts {
    margin-top: 50px;
}

.entry-title a {
    color: #2D2D2D;
}

/* End Blog */

@media only screen and (max-width: 1024px) {
    .site-header .site-branding .site-logo img {
        width: 250px;
        max-width: 250px;
    }
}

@media only screen and (max-width: 992px) {
    .header-button {
        display: none;
    }

    .grid-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .grid-posts {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .featured-post {
        min-height: 300px;
        margin-bottom: 25px;
        padding: 25px;
    }

    .content-title-blog {
        margin-bottom: 20px;
    }

    .blog-main, .post-container {
        padding: 110px 20px 60px;
    }

    .blog-header {
        margin-bottom: 30px;
    }

    .post-container img {
        max-height: 300px;
    }
}