/* CSS for Address section */
.acf-layout-address-section {
  background-color: var(--color-1);
  color: var(--color-2);
  padding: 70px 0 100px 0;
}

.location-col {
  margin-bottom: 40px;
}

.location-heading {
  margin-bottom: 30px !important;
  font-family: var(--font-clash-display);
  font-weight: 500;
  color: var(--color-white);
  text-align: left !important; /* Override design system's default center text alignment */
}

.location-details {
  margin-bottom: 20px;
}

.location-detail-item {
  margin-bottom: 0;
  line-height: 1.6;
}

.location-detail-item a {
  color: var(--color-2) !important;
  text-decoration: none !important;
}

.address-detail {
  display: flex;
  gap: 10px;
}
.address-detail span {
  display: block;
}

.location-map {
  margin-bottom: 40px;
  border-radius: 0;
  overflow: hidden;
  height: 267px;
  max-width: 85%;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 267px !important;
  border: 0;
}

.location-timings {
  line-height: 1.6;
}

.location-timings p {
  margin-bottom: 5px;
}

/* RWD  */
@media (max-width: 991px) {
  .acf-layout-address-section {
    padding: 50px 0;
  }
  .location-map {
    max-width: 100%;
    height: 174px !important;
    margin: 25px 0;
  }
  .address-detail span {
    display: none;
  }
  .location-details,
  .location-detail-item,
  .address-detail,
  .location-timings {
    font-family: var(--font-clash-display) !important;
    margin: 0;
  }
}
