/* -------------------- PAGINATION STYLES -------------------- */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.pagination-button {
    position: relative;
    float: left;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 200;
    filter: none !important;
    background: var(--primary-color) none no-repeat scroll left top;
    border-radius: 0;
    padding: 2px 7px;
    margin: 0 10px 0 0;
    font-size: 1em;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    border: none !important;
}
.pagination-next, .pagination-prev {
    background: none;
    color: #000;
}
.pagination-button:hover {
    background: #b0ab73;
}

.pagination-button.hidden{
    display:none !important;
}
.pagination-button.active {
      background: #b0ab73;
    color: #fff;
}
button.pagination-button[disabled]{
    opacity: 0.5;
    background-color: grey;
}


/* Desktop/tablet: show everything normally */
.pagination-controls .pagination-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: only show prev, current number, next number, and next */
@media (max-width: 767px) {
  .pagination-controls .pagination-button.number {
    display: none;
  }
  .pagination-controls .pagination-button.number.show-mobile {
    display: inline-flex; /* current and next numeric only */
  }
  .pagination-controls .pagination-prev,
  .pagination-controls .pagination-next {
    display: inline-flex;
  }
}
/* -------------------- NEWS PAGE STYLES -------------------- */
.my-post-card {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;

  /* default: col-12 */
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/* ≥ md (768px): col-md-6 */
@media (min-width: 768px) {
  .my-post-card {
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 50%;
  }
}
.my-row {
  display: -ms-flexbox;
  display: flex;
  justify-content:space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
