.venue-intro {
  padding: 80px 20px;
  background-color: #fff;
}

.container {
  font-size: 0;
  max-width: 1440px;
  margin: 0 auto;
}
.repeatables{
    display: flex;
    flex-direction: column;
    row-gap: 70px;
}
.venue-main-header {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 41px;
    line-height: 52px;
    color: #4B4D53;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 150px;
}
.venue-block {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}

.venue-block.reverse {
  flex-direction: row-reverse;
}

.venue-image {
  flex: 1 1 50%;
  max-width: 800px;
}

.venue-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.venue-text {
  flex: 1 1 50%;
  max-width: 380px;
}

.venue-header {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: #4B4D53;
  margin-bottom: 20px;
}

.venue-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #4B4D53;
}

/* Responsive */
@media (max-width: 768px) {
    .venue-block {
        flex-wrap: wrap;
    }

  .venue-block,
  .venue-block.reverse {
    flex-direction: column;
  }

  .venue-image,
  .venue-text {
    flex: 1 1 100%;
    padding: 10px;
  }

  .venue-main-header {
    font-size: 32px;
    line-height: 42px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .venue-header {
    font-size: 28px;
  }

  .venue-paragraph {
    font-size: 18px;
  }
  .venue-intro {
    padding: 20px !important;
  }
  .venue-main-header {
    font-size: 20px !important;
    line-height: 22px !important;
    padding: 0px 0px 30px !important;
  }

}
