/* Styling for post dynamic */
.dynamic-posts-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
}

.dynamic-posts-grid .dynamic-posts-item {
  padding: 10px 20px;
}

/*  Style title posts */
.items-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #113163;
}

/*  Style description posts */
.posts-excerpt {
  font-size: 16px;
  color: #49494A;
  margin-bottom: 15px;
}

/* Button view detail */
.btn-view-details {
  background-color: #0CA9E0;
  color: white;
  border-radius: 6px;
  padding: 4px 10px;
  text-decoration: none;
  text-transform: capitalize;
  transition-duration: 300ms;
}

/* Posts pagination */
.simple-pagination ul {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin-top: 40px;
}

.simple-pagination li a {
  height: 40px;
  width: 40px;
  background: #eee;
  color: #0CA9E0;
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.simple-pagination li a:hover {
  background-color: #e5e5e5;
  color: #0084b4;
}

.simple-pagination li.disabled a {
  background: #ccc;
  color: #999;
  pointer-events: none;
}

.simple-pagination li.disabled {
  cursor: not-allowed;
}

.simple-pagination li.page-info {
  background: transparent;
  font-weight: bold;
}

@media only screen and (max-width: 48em) {
  .section-content {
    .dynamic-posts-grid {
      row-gap: 0px;
    }
  }

  h2.items-title {
    font-size: 18px;
  }

}