/* ======================
   PUBLIC CONTAINER
====================== */

.public-site .container {
  max-width: 1200px;
  margin: 0 auto;              /* ✅ force center */
  padding: 0 16px;
}

/* images */
.public-site img {
  max-width: 100%;
  height: auto;
}

/* ======================
   RESPONSIVE (PUBLIC)
====================== */
@media (max-width: 768px) {

  .public-site .container {
    padding: 0 12px;
  }

  .public-site h1 {
    font-size: 24px;
  }

  .public-site h2 {
    font-size: 20px;
  }
}

/* ===============================
   HERO BANNER – MOBILE FIX
================================ */
@media (max-width: 768px) {

  .public-site .hero-slider {
    height: 240px;
    margin-left: 0;
    width: 100%;
  }

  .public-site .hero-slide {
    background-size: cover;
    background-position: center top;
  }

}

/* ===============================
   PAGINATION – CENTER + WRAP FIX
================================ */

.pagination {
    display: flex;
    flex-wrap: wrap;            /* allow next row */
    justify-content: center;    /* ✅ center horizontally */
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;        /* ✅ center block itself */
    width: 100%;
}

.pagination .page-link {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    white-space: nowrap;
}
