/*---------------------------------------------------
 UPDATING BOOTSTRAP STYLES FOR ADA COMPLIANCE TO v5.1 
 ----------------------------------------------------*/
.tribute-ns {
  /* Parent: 3 equal columns, equal row heights, responsive */
  /* Each card is a flex column so we can pin the button */
  /* Force consistent image height so the headline top aligns across cards */
  /* Normalize default margins so spacing is consistent */
  /* Pin button to the bottom & center horizontally without stretching */
}
.tribute-ns #body-container {
  background: #FFF;
}
.tribute-ns #top img {
  margin-left: 15px;
}
.tribute-ns ul.nav.nav-pills.text-center.secondary {
  background: #984216;
  padding: 8px 10px 8px 10px;
  text-align: center;
}
.tribute-ns .nav-left {
  border-radius: 0px;
  background: transparent;
  margin-right: 5px;
}
.tribute-ns .nav-left a {
  color: white;
}
.tribute-ns .nav > li > a:hover {
  background-color: transparent;
}
.tribute-ns .pad-top-forty {
  padding-top: 40px;
}
.tribute-ns .pad-bottom-forty {
  padding-bottom: 40px;
}
.tribute-ns h1 {
  margin-bottom: 20px;
}
.tribute-ns .collage {
  background-color: #3c3c3c;
}
.tribute-ns .btm-border-margin {
  border-bottom: 1px solid #000;
  padding-bottom: 25px;
  margin-bottom: 50px;
}
.tribute-ns #wall .wall-content div {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.tribute-ns #wall .wall-content div:after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.tribute-ns #wall .wall-content div p {
  line-height: 1.6;
}
.tribute-ns #wall .wall-content div p.pull-right {
  font-style: italic;
}
.tribute-ns .news-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.tribute-ns .news-blocks > div,
.tribute-ns .news-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* children take full card width unless overridden */
  padding: 10px;
  /* optional aesthetics */
  border: 1px solid rgba(0, 0, 0, 0.2);
  /* optional */
  background: #fff;
  /* optional */
}
.tribute-ns .news-blocks > div > img,
.tribute-ns .news-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Choose a ratio that fits your design: 4/3, 3/2, 1/1… */
  object-fit: cover;
  /* crops edges to keep composition */
  display: block;
}
.tribute-ns .news-blocks > div h3,
.tribute-ns .news-card h3 {
  margin: 12px 0 8px;
}
.tribute-ns .news-blocks > div p,
.tribute-ns .news-card p {
  margin: 0 0 12px;
}
.tribute-ns .news-blocks > div .btn,
.tribute-ns .news-card .btn {
  margin-top: auto;
  /* pushes it to the bottom of the card */
  align-self: center;
  /* centers horizontally */
  width: auto;
  /* keep natural width */
  display: inline-block;
  /* avoid stretch due to flex */
}
