/* Wrapper */
.sbp-posts {
    max-width: 1200px;
    margin: auto;
}

/* Single post */
.sbp-post {
    margin-bottom: 50px;
}

/* Image wrapper */
.sbp-thumb {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

/* Image full size */
.sbp-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover zoom */
.sbp-thumb:hover img {
    transform: scale(1.1);
}

/* Title */
.sbp-title {
    font-size: 26px;
    margin: 20px 0 10px;
}

.sbp-title a {
    text-decoration: none;
    color: #144A7F;
}

.sbp-title a:hover {
    color: #144A7F;
}

/* Excerpt */
.ebgp-excerpt {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Read more button */
.ebgp-open {
    display: inline-block;
    background:#5ad602;
    color: #fff;
    text-decoration: none;
   z-index: 1;
  border-radius: 5px;
  transition: all 0.4s;
  padding: 13px 42px 13px 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}

.ebgp-open:hover {
    background:#144A7F; color: #fff;
}

/* Pagination */
.sbp-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.sbp-pagination a,
.sbp-pagination span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
}

.sbp-pagination .current {
    background: #2ecc71;
    color: #fff;
    border-color: #2ecc71;
}

/* Mobile */
@media (max-width: 768px) {
    .sbp-title {
        font-size: 22px;
    }
}
