.blogCenteredContent {
  min-width: 0px;
  width: 95%;
}

#mainImageContainer,
#mainImage {
  width: 100%;
  aspect-ratio: 16/4;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.blogTitle {
  margin: 70px 0 10px;
  display: block;
}

#blogPostTitle {
  position: relative;
  font-size: 24px;
  line-height: 28px;
  margin: 10px auto 35px;
  font-weight: bold;
}

.blogSubtitle {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin: 15px auto;
}

.blogImage {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 40px auto 0;
}

.blogCaption {
  position: relative;
  width: 100%;
  margin: 10px auto 0;
  font-size: 12px;
  word-break: break-word;
}

.blogText {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  color: black;
  font-size: 15px;
  margin: 10px auto;
  line-height: 19px;
  word-break: break-word;
}

.blogGallery {
  position: relative;
  margin-top: 40px;
  height: auto;
  overflow: hidden;
  width: 100%;
}

.blogGallery.slick-dotted.slick-slider {
  margin-bottom: 40px;
}

.slick-dots {
  top: 20px;
  right: 20px;
  width: auto;
}

.slick-dots li {
  width: 14px;
  margin: 0 3px;
}

.slick-dots li button:before {
  border: 2px solid;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  font-size: 0px;
  opacity: 0.5;
  background: black;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

.blogSlider {
  position: relative;
  height: auto;
  overflow: hidden;
  width: 100%;
  margin: 40px 0;
}

.blogSliderWrapper {
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}

.blogSliderSlide {
  margin-right: 10px;
  margin-left: 10px;
}

.blogSliderLeftArrow {
  position: absolute;
  left: 0;
  height: 30px;
  top: calc(50% - 15px);
  z-index: 1;
}

.blogSliderRightArrow {
  position: absolute;
  height: 30px;
  right: 0;
  top: calc(50% - 15px);
  z-index: 1;
}

.slick-slide {
  height: auto;
}

.image-text-row {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  float: left;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin: 16px 0px;
  word-break: break-word;
}

.image-text-row img {
  display: block;
  position: relative;
  width: 50%;
}

.image-text-row .text {
  position: relative;
  display: block;
  padding: 50px;
  color: black;
  font-size: 14px;
  line-height: 20px;
}

.image-text-row:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {

  #mainImageContainer,
  #mainImage {
    aspect-ratio: 16/9;
  }

  .blogCenteredContent {
    margin-bottom: 40px;
    width: 90% !important;
  }

  .blogImage {
    margin: 20px auto 0px;
  }

  #blogPostTitle {
    line-height: 24px;
    font-size: 20px;
    margin: 40px auto 20px;
  }

  .blogSubtitle {
    margin: 10px auto;
    font-size: 15px;
  }

  .blogText {
    margin: 10px auto;
    line-height: 17px;
    font-size: 13px;
  }

  .slick-dots li button:before {
    width: 8px;
    height: 8px;
  }

  .slick-dots {
    top: 10px;
    right: 10px;
  }

  .blogSlider {
    margin: 20px auto;
  }

  .blogGallery.slick-dotted.slick-slider {
    margin: 20px auto;
  }

  .image-text-row {
    flex-direction: column-reverse;
  }

  .image-text-row:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  .image-text-row img {
    width: 100%;
  }

  .image-text-row .text {
    padding: 30px 0px;
    font-size: 14px;
    line-height: 21px;
  }
}