/* -------------------------
 * events CSS
 * ------------------------- */

#contentBody h3.eventTitle {
  margin: 0 0 24px;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  color: #000;
  font-weight: bold;
  padding: 0;
  background: none;
}

#contentBody h3.eventTitle + span {
  display: block;
  margin: 0 10px 24px;
  font-size: 14px;
  line-height: 1.7;
}

.gallery {
  display: grid;
  row-gap: 20px;
  column-gap: 10px;
}

.row1 {
  display: grid;
  grid-template-columns: 1fr;
}

.row2 {
  display: grid;
  grid-template-columns: 3.13fr 6.87fr;
  column-gap: 10px;
}

.row3 {
  display: grid;
  grid-template-columns: 6.92fr 3.08fr;
  column-gap: 10px;
}

.row1 span,
.row2 span,
.row3 span {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

.photo-wrap {
  display: flex;
  flex-direction: column;
}

.photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #ccc;
}

