

.fl-theme-builder-archive-category-post .fl-post-feed-post {
    margin-bottom: 40px;
    padding-bottom: 40px;
}


.category-posts-grid.posts-grid-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-top:  10px;
}

.posts-grid-members .post-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.posts-grid-members .post-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.posts-grid-members .post-thumb {
    width: 120px;
}

.posts-grid-members .post-thumb img {
    width: 120px;
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
}

.posts-grid-members .post-content {
    width: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 0 15px;
}

.posts-grid-members .post-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #000;
}

.posts-grid-members .post-date {
    font-size: 13px;
    color: #777;
}

.show-more-container {
    text-align: center;
    margin-top: 20px;
}

.show-more-btn {
    background: #000;
    color: #fff;
    border: none!important;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
}

.show-more-btn:hover {
    background: #444;
}


.heading-style-1 {
    border-bottom: 1px solid #eeeeee;
}

.single-post .wp-block-heading {
    color: #000;
}

/* Responsive styles */
@media (max-width: 900px) {
    .category-posts-grid.posts-grid-members {
        grid-template-columns: 1fr;
        gap: 20px 0;
    }
    .posts-grid-members .post-content {
        padding-left: 10px;
    }
}

@media (max-width: 600px) {
    .category-posts-grid.posts-grid-members {
        grid-template-columns: 1fr;
        gap: 15px 0;
    }
    .posts-grid-members .post-item {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 12px;
    }

    .posts-grid-members .post-link {
        gap: 20px;
    }

    .posts-grid-members .post-thumb {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .posts-grid-members .post-thumb img {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 120/85;
    }
    .posts-grid-members .post-content {
        width: 100%;
        padding: 0;
    }
    .posts-grid-members .post-title {
        font-size: 15px;
    }
    .show-more-btn {
        width: 100%;
        font-size: 16px;
        padding: 12px 0;
    }
}

@media (max-width: 400px) {
    .posts-grid-members .post-title {
        font-size: 13px;
    }
    .posts-grid-members .post-date {
        font-size: 12px;
    }
}


@media (min-width: 767px) {
    .fl-page-nav-right .fl-page-nav-wrap .navbar-nav li>a {
        color: #fff !important;
    }

    .fl-page-nav-right .fl-page-nav-wrap.staticMenu .navbar-nav li>a {
        color:  #000;
    }
}