.internships-page {
  display: grid;
  grid-template-columns: 1fr minmax();
}

.internships-page .entry-content section {
    margin-top: 3rem;
}

.internships-page .entry-content section > h3 {
    margin-bottom: 2rem;
    font-weight: 600;
}

.internships-page .content > h2 {
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 600;
}

.internships-page .content > ul {
    padding-left: 1rem;
    font-weight: 500;
}

.internships-page .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
  grid-gap: 2rem;
}

.internships-page .grid .box-logo {
  /* background: black; */
  padding: 1rem;
  position: relative;
}

.internships-page .grid .box-logo::before {
  /* for apsect ratio */
  content: "";
  display: block;
  padding-bottom: 100%;
}

.internships-page .grid .box-logo img {
  position: absolute;
  max-width: 100%;

  /* Alternate Version */
  /* top: 0; */
  /* bottom: 0; */
  /* right: 0; */
  /* left: 0; */
  /* margin: auto; */

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.internships-page .grid .box-desc p {
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: center;
    font-size: 12px;
}

.internships-page .grid .box-desc a {
    text-align: center;
    display: block;
    font-size: 12px;
}
