.single-location-card .location-item {
  width: 100%;
}

.single-location-card .location-item {
  margin-bottom: 30px;
  min-height: fit-content;
  box-shadow: 0px 8px 48px 12px rgba(0, 82, 51, 0.2);
}

.single-location-card .location-item:hover {
  box-shadow: 0px 8px 48px 12px rgba(0, 82, 51, 0.4);
}

.single-location-card .img-container {
  position: relative;
  height: 215px;
  overflow: hidden;
}

.single-location-card .img-container .post-image {
  object-fit: cover;
  transform: scale(1.0);
  width: 100%;
  height: 100%;
  -webkit-transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
}

.single-location-card .location-item:hover .img-container .post-image {
  transform: scale(1.1);
}

.single-location-card .location-item .post-content-wrapper {
  padding: 30px;
  background-color: #fff;
}


.single-location-card .location-item .post-content-wrapper {
  padding: 30px;
  background-color: #fff;
}

.single-location-card .location-item .post-content-wrapper .content-container .location-email-container,
.single-location-card .location-item .post-content-wrapper .content-container .location-telephone-container,
.single-location-card .location-item .post-content-wrapper .content-container .location-address-container {
  display: flex;
  margin-bottom: 5px;
}

.single-location-card .location-item .post-content-wrapper .content-container .location-email-container a,
.single-location-card .location-item .post-content-wrapper .content-container .location-telephone-container a {
  display: inline-flex;
}

.single-location-card .location-item .post-content-wrapper .content-container .location-email-container i,
.single-location-card .location-item .post-content-wrapper .content-container .location-telephone-container i ,
.single-location-card .location-item .post-content-wrapper .content-container .location-address-container i {
  margin: auto 10px auto 0;
  min-width: 18px;
  text-align: center;
  color: #3b3b31;
}


.single-location-card .location-item .post-content-wrapper .content-container .location-email-container p,
.single-location-card .location-item .post-content-wrapper .content-container .location-telephone-container p {
  margin-bottom: 0;
  color: #5994A1;
  text-decoration: underline;
  text-underline-offset: 2px;
}
 
.single-location-card .location-item .post-content-wrapper .content-container .location-address-container p {
  margin-bottom: 0;
  color: #3b3b31;
}

.single-location-card .location-item .post-content-wrapper .content-container .location-working-hours-container {
  position: relative;
}

.single-location-card .location-item .post-content-wrapper .content-container .location-working-hours-container i {
  margin: 5px 10px auto 0;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 18px;
  text-align: center;
  color: #3b3b31;
}

.single-location-card .location-item .post-content-wrapper .content-container .location-working-hours-container .working-hours-row {
  display: flex;
  margin-left: 28px;
}

.single-location-card .location-item .post-content-wrapper .content-container .location-working-hours-container .working-hours-row p {
  margin-bottom: 5px;
  color: #3b3b31;
}

.single-location-card .location-item .post-content-wrapper .content-container .location-working-hours-container .working-hours-row .working-days {
  min-width: 90px;
}

.single-location-card .post-meta {
  display: inline-flex;
}

.single-location-card .post-meta .post-type {
  background-color: #EFEEEA;
  margin-left: 20px;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 21px;
  position: relative;
}

.single-location-card .post-meta .post-type:before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #5994A1;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.single-location-card .event-location {
  display: flex;
}

.single-location-card .event-location .dashicons-location {
  font-size: 24px;
  margin-right: 5px;
}

.single-location-card .reading-time {
  display: flex;
}

.single-location-card .post-content-wrapper .btn-arrow {
  margin-top: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: -15px;
  transition: background-position-x 0.2s;
  width: 57px;
  height: 24px;
}

.single-location-card:hover .post-content-wrapper .btn-arrow {
  background-position-x: unset;
}