.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.post_content_box {
    padding: 15px;
}

.featured-wrap {
    position: relative;
}

.featured-wrap img {
    width: 100%;
    height: 280px !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    object-fit: cover;
    object-position: center;
}

.post-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px 6px 11px;
    border-radius: 15px 15px 15px 15px;
    background: white;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
}

.meta-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    margin: 0px 0 15px 0px;
    /* justify-content: end; */
}

.post-date {
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.3em;
    color: #000000;
}

h3.post-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.3em;
    color: #000000;
    margin: 0px 0px 15px 0px;
}

button#load-more-posts:hover {
    background: #212121;
}

.read_more_btn {
    margin-top: 35px;
    text-align: center;
    margin-bottom: 100px;
}

button#load-more-posts {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4em;
    border-radius: 0px 0px 0px 0px;
    padding: 12px 30px 12px 30px;
    color: white;
    background: #000000;
    border: 0px;
}


a.read-more {
    font-family: "Archivo", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1em;
    color: #000000;
}

.meta-text span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1em;
    color: #000000;
}

.static-img img {
    width: 50px;
}

.post-title {
    margin: 10px 0;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
}

/*Header Style Desktop*/
.dialog-prevent-scroll {
	max-height: unset !important;
    overflow: unset !important;
}

/* Responsive*/

@media (max-width: 1366px) {
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .post-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {
    .mobile_dropdown_menu  nav.elementor-nav-menu--dropdown {
        top: 75px !important;
    }
}

@media (max-width: 375px) {
    .mobile_dropdown_menu  nav.elementor-nav-menu--dropdown {
        top: 60px !important;
    }
}