.grid-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  box-sizing: border-box;
}

     
  .itemTest img {
  display: block;
  width: 10%;    /* Image fills width of the column */
  height: auto;   /* Maintains aspect ratio */
  margin-bottom: 1rem;
}

.itemTest p {
  margin: 0;
  padding: 1rem;
  width: 100%;
  font-size: 14px;
  line-height: 24pt;
  text-align: center;
  font-weight: bold;  
}
  .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Makes three equal columns */
  max-width: 1271px;                     /* Restricts width to 1280px */
  width: 100vw;                          /* Grid stretches to viewport width */
  margin: 0 auto;                        /* Centers the container */
  gap: 92px;
  padding: 92px;
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.centerme {
  display: block;
  margin: 0 auto;
}
     
 .redAttribute{
  color: #ea0029;
}
 .reviewscontainerGrey {
  display: grid;
  grid-column: 1 / 9;
  grid-template-rows: auto;
  background: #fff;
  font-family: 'Source Sans Pro:300', sans-serif;
  font-weight: normal;
  padding: 50px 0 50px 0;
  background: #f3f3f3;  
  }   
   .grid-2 img {
  height: 38px !important;
  width: auto !important;
  display: block;     /* avoid inline gaps */
}
 .itemLink {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* keep cards from expanding beyond their column */
.itemTest img {
  max-width: 100%;
  height: auto;
  display: block;
}
.itemTest {
  padding-top: 0;
  margin-top: 30px;
  transition: background-color 0.2s ease, margin-top 0.2s ease, padding-top 0.2s ease;
}
.itemLink:hover .itemTest {
  padding-top: 30px;
  margin-top: 0;   /* gives back the same 30px of space */
  background-color: #f5f5f5;  
}

/*   .itemTest  {
 display: grid;
}*/

/*.itemLink:hover .itemTest {
  /* optional hover effect 
  background-color: #f5f5f5;
  transition: background-color 0.2s ease;
  padding-top: 30px;  
} */

