/* FRONTIERMIND_LATEST_BOOKS_CENTER_V3
   Targets the ACTUAL runtime books grid found by diagnostic.
   Title/link remain untouched.
*/

/* Real runtime structure:
   .fm-r3-books-grid
     > .fm-books.fm-r2-publication-grid.fm-r2-publication-card.fm-r3-book-card
*/
.fm-r3-books-grid > .fm-books.fm-r2-publication-grid.fm-r2-publication-card.fm-r3-book-card {
  width:100% !important;
  max-width:none !important;
  margin-left:auto !important;
  margin-right:auto !important;
  display:grid !important;
  grid-template-columns:repeat(5, 185px) !important;
  column-gap:30px !important;
  row-gap:30px !important;
  justify-content:center !important;
  align-items:end !important;
}

/* Tablet: keep the cards centered and allow fewer columns */
@media (min-width:769px) and (max-width:1100px){
  .fm-r3-books-grid > .fm-books.fm-r2-publication-grid.fm-r2-publication-card.fm-r3-book-card {
    grid-template-columns:repeat(3, 185px) !important;
    justify-content:center !important;
  }
}

/* Mobile */
@media (max-width:768px){
  .fm-r3-books-grid > .fm-books.fm-r2-publication-grid.fm-r2-publication-card.fm-r3-book-card {
    grid-template-columns:repeat(2, minmax(0, 185px)) !important;
    justify-content:center !important;
    column-gap:16px !important;
    row-gap:20px !important;
  }
}

@media (max-width:430px){
  .fm-r3-books-grid > .fm-books.fm-r2-publication-grid.fm-r2-publication-card.fm-r3-book-card {
    grid-template-columns:185px !important;
  }
}
