.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Styling for the event box */
.uni-logo-box {
  background-color: #ddd;
  border-radius: 1px solid #ddd;
  width: 100%; /* Full width of the parent container */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 0;
  font-size: 0.95em;
  text-align: left;
  margin-bottom: 15px auto;
}

/* Wrapper inside the box */
.events-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
}

.box-title {
  text-align: center;
  min-height: 3.6em;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-title a {
  color: #00539f;
  text-decoration: none;
}

.box-title a:hover {
  text-decoration: underline;
}

/* Image container */
.events-img {
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.events-img img {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 10%;
    min-height: 10%;
    max-width: 100%;
    max-height: 100%;
    max-width: 90%;
    max-height: 80%;
}
