.location-cards-section {
  padding: 100px 20px;
  background-size: cover;
  background-position: center center;
  background: #F3EFE7;
}

.location-cards-section .section-wrap-centered {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.location-cards-section .section-wrap-centered .top-content h3 {
  color: #000;
  font-family: PT Serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 52px;
  text-align: center;
  margin: 0px;
}

.location-cards-section .section-wrap-centered .top-content>.wysiwyg-content {
  text-align: center;
}

.location-cards-section .section-wrap-centered .address-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.location-cards-section .section-wrap-centered .address-list .address-list-inner {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: calc(100% / 3 - 12px);
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 40px 0px rgba(108, 94, 21, 0.20);
}

.location-cards-section .section-wrap-centered .address-list .address-list-inner .address-bottom {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;

}

.location-cards-section .section-wrap-centered .address-list .address-list-inner h4 {
  color: #002345;
  font-family: PT Serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
  margin: 0;
  text-transform: capitalize;
}

.location-cards-section .section-wrap-centered .address-list .address-list-inner .map-embed {
  width: 100%;
  height: 300px;
}
.location-cards-section .section-wrap-centered .address-list .address-list-inner .map-embed a {
  height: 100%;
  display: flex;
}
.location-cards-section .section-wrap-centered .address-list .address-list-inner .map-embed a > img {
	object-fit: cover;
	object-position: left;
    height: 100%;
}
.location-cards-section .section-wrap-centered .address-list .address-list-inner .location-details {
  display: flex;
  gap: 12px;
}

.location-cards-section .section-wrap-centered .address-list .address-list-inner .location-details p,
.location-cards-section .section-wrap-centered .address-list .address-list-inner .location-details a {
  color: #545454;
  font-family: lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.location-cards-section .section-wrap-centered .address-list .address-list-inner .location-details a:hover {
  text-decoration: underline;
}

.location-cards-section .section-wrap-centered .address-list .address-list-inner .desc-wrap {
  display: flex;
  gap: 12px;
  flex-direction: column;
}


@media screen and (max-width: 767px) {
  .location-cards-section {
    padding: 40px 20px;
  }

  .location-cards-section .section-wrap-centered .top-content h3 {
    font-size: 32px;
    line-height: 42px;
  }

  .location-cards-section .section-wrap-centered {
    gap: 32px;
  }

  .location-cards-section .section-wrap-centered .address-list {
    gap: 12px;
  }

  .location-cards-section .section-wrap-centered .address-list .address-list-inner .desc-wrap,
  .location-cards-section .section-wrap-centered .address-list .address-list-inner .location-details {
    gap: 8px;
  }

  .location-cards-section .section-wrap-centered .address-list .address-list-inner {
    max-width: 100%;
    border-radius: 12px;
  }

  .location-cards-section .section-wrap-centered .address-list .address-list-inner .map-embed {
    overflow: hidden;
  }

  .location-cards-section .section-wrap-centered .address-list .address-list-inner .map-embed iframe {
    border: 0;
    max-width: unset;
    min-width: 400px;
    height: 350px;
  }
}

@media (min-width: 1280px) {
  .location-cards-section .section-wrap-centered .address-list .address-list-inner {
    max-width: 400px;
  }
}