#partsGrid.list-group .list-group-item {
  border-radius: 8px;
  margin-bottom: 6px;
  border: 1px solid #e6e6e6;
}

#partsGrid.list-group .fw-bold {
  font-size: 1.1rem;
}

.news-hero {
  background: #0b1b2b center/cover no-repeat;
  color: #fff;
}

.news-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
}

/* Same width & no wrapping for all "Send Request" buttons */
.btn-request-fixed {
  min-width: 140px;        /* adjust to taste */
  text-align: center;
  white-space: nowrap;     /* double safety, in case Bootstrap is missing */
}

/* Optional: if you want them to be full-width on very small screens */
@media (max-width: 576px) {
  .btn-request-fixed {
    min-width: 140px;      /* keeps height consistent */
    /* or uncomment this if you want full-width mobile buttons:
    width: 100%;
    */
  }
}

/* Make the whole page a vertical flexbox */
body, html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* Make main content expand to push footer down */
main {
  flex: 1 0 auto;
}

/* Footer stays at bottom */
#site-footer {
  flex-shrink: 0;
}

