.latest-posts__empty_mesage {
    font-size: 20px;
    display: flex;
    justify-content: center;
    color: var(--e-global-color-primary) !important;
    font-weight: 500;
}

/* Lates posts wraper */
.latest-posts__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) {
    .latest-posts__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 992px) {
    .latest-posts__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.latest-posts__inner {
    border: 1px solid var(--e-global-color-4a2477a);
    border-radius: 10px;
    padding: 15px;
    transition: 0.4s;
}

.latest-posts__inner:hover {
    border: 1px solid var(--e-global-color-primary) !important;
}

.latest-posts__media img {
    width: 100%;
    border-radius: 10px;
}

.latest-posts__meta_info {
    margin-top: 10px;
}

.latest-posts__auther {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.latest-posts__autherInfo {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.latest-posts__author_avatar {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    object-fit: cover;
}

.auther_display_name {
    color: #52565b;
    font-size: 16px;
    font-weight: 400;
}

.latest-post__category span {
    line-height: 1.2em;
    background-color: var(--e-global-color-8b4cc6a);
    border-radius: 5px;
    font-size: 16px;
    color: var(--e-global-color-primary);
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    padding: 8px 10px;
    transition: 0.3s;
}

.latest-post__category span:hover {
    background-color: var(--e-global-color-primary);
    color: white;
    cursor: pointer;
}

.latest-post__title {
    margin-top: 10px;
}

.latest-post__title h1 {
    font-size: 20px;
    font-weight: 500;
    color: #212832;
    margin-top: 13px;
    display: inline-block;
    line-height: 1.4;
    transition: 0.3s;
    cursor: pointer;
}

.latest-post__title p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--e-global-color-text);
    margin-bottom: 0;
}

.lates-post__read_more {
    line-height: 1.1em;
    background: var(--e-global-color-accent);
    color: var(--e-global-color-91498c0);
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    text-align: center;
    border-radius: 50px;
    padding: 10px 20px;
    transition: 0.4s;
    border: 1px solid var(--e-global-color-accent);
    stroke: var(--e-global-color-91498c0);
    margin-top: 12px !important;
}

.lates-post__read_more svg {
    font-size: 25px;
}

.lates-post__read_more:hover {
    background: transparent;
    border: 1px solid var(--e-global-color-secondary);
    color: var(--e-global-color-secondary);
    stroke: var(--e-global-color-secondary);
}


/* Blog post presenation style */

.blog_post_navigation {
    margin: 30px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-numbers {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
    background: #ddd;
    padding: 13px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: inline-flex;
    place-items: center;
    justify-content: center;
    color: var(--e-global-color-accent);
}

.page-numbers.current {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
    background: var(--e-global-color-primary);
    padding: 13px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: inline-flex;
    place-items: center;
    justify-content: center;
    color: var(--e-global-color-secondary);
}

.page-numbers svg{
    font-size: 25px;
    font-weight: 700;
}
.page-numbers:hover {
    background: var(--e-global-color-primary);
    color: var(--e-global-color-secondary);
}