/* css styles */

/* Makes the embedded Google Maps iframe on the venue page
   responsive (16:9 ratio) instead of a fixed pixel size */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Aligns organiser photos with the top of their name/bio
   in the two-column grid layout on organisers.qmd */
.grid {
  align-items: start;
  margin-bottom: 2.5rem;
}

/* Removes extra top margin on organiser bio headings
   so they line up flush with the top of the photo */
.g-col-8 h3:first-child {
  margin-top: 0;
}
