/* -------------------- PAGINATION STYLES -------------------- */
.pagination-controls {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    justify-content: center;
    padding-top: 20px;
}

.pagination-button {
    position: relative;
    padding: 0.1rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #344555;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 10px;
    margin: 5px;
}
.pagination-next, .pagination-prev {
    background: none;
    color: #000;
}
.pagination-button:hover {
 background: var(--secondary-color);
 color: #fff;
  text-decoration: none;
}
.pagination-button.hidden{
    display:none !important;
}
.pagination-button.active {
color: #FFFFFF;
    background-color: #344555;
    border: solid 1px #344555;
}
button.pagination-button[disabled]{
background-color: #cccccc;
    cursor: not-allowed;
}


/* 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 {
    border: 0;
    border-top: 10px solid #00DCAB;
    margin-top: 50px;
    box-shadow: 0 2px 31px #E9E9E9;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}
.my-row {
display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media(max-width:687px){
    .my-row{
        grid-template-columns: repeat(1,1fr);
    }
}