.blog-header {
    background: url(../images/movie-theater.webp) center center / cover no-repeat;
    padding-top: 100px;
    position: relative;
}

.blog-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff55a5 0%, #ff5860 100%);
}

.blog-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Mobile First Styles */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.post img {
    width: 100%;
    height: auto;
}

.post-title {
    display: block;
    font-size: 1.3em;
    color: var(--link-color);
    text-decoration: none;
}

.post-meta {
    font-size: 0.9em;
    color: #bcbcbc;
    font-style: italic;
}

.post-excerpt {
    font-size: .9rem;
    color: var(--text-color);
}

/* Two columns for screens 750px and up */
@media (min-width: 750px) {
    .posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Four columns for screens 1199px and up */
@media (min-width: 1199px) {
    .posts-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* Pagination */
.list-paginate {
    margin-top: 2.5rem;
}

.list-paginate .pagination {
  display: flex; /* Add this line */
  justify-content: center; /* Center the items */
}

.list-paginate ul {
  list-style: none;
  margin-bottom: 0;
}

.list-paginate ul li {
  font-size: 0.7rem;
  border-top: 1px solid rgba(204, 204, 204, 0.6);
  border-bottom: 1px solid rgba(204, 204, 204, 0.6);
  padding: 0.1rem .8rem;
  cursor: pointer;
  background-color: #28282d;
}

.list-paginate ul li:hover {
  background-color: #ff569f;
}

.list-paginate ul li:hover a {
  color: #fff;
}

.list-paginate ul li:not(:first-child) {
  border-right: 1px solid rgba(204, 204, 204, 0.6);
}

.list-paginate ul li:first-child {
  border-left: 1px solid rgba(204, 204, 204, 0.6);
  border-right: 1px solid rgba(204, 204, 204, 0.6);
}

.list-paginate ul li a {
  font-size: 0.7rem;
}

.list-paginate ul li.disabled {
  background-color: #28282d;
  line-height: 1.8rem;
}

.list-paginate ul li.active {
  background-color: #303036;
  border-top: 2px solid #ff569f;
  color: #ff569f;
  font-weight: 600;
  line-height: 1.8rem;
}