
section.content {
  background: var(--color-gray-100);
  padding: var(--spacing-10) 0 var(--spacing-20) 0;
}


/* CONTACT SECTION */
section.contact {
  background: var(--color-yellow-200);
  padding: var(--spacing-20) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--spacing-10);
}
.contact h2 {
  margin-top: 0;
}
.contact p {
  margin-bottom: var(--spacing-6);
}
.contact-map {
  margin-top: var(--spacing-6);
}
.contact-form {
}

@media screen and (min-width: 40rem) {

}

@media screen and (min-width: 72rem) {
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--spacing-20);
  }
}


.prose p {
  max-width: 100%;
}
.service-locations-list {
}
.service-locations {
  margin: var(--spacing-12) auto;
}
.service-location:before {
  content: "📍";
}
.service-location h3 {
  display: inline-block;
  padding-left: var(--spacing-4);
}
.service-location h3 a {
  text-decoration: underline;
  text-decoration-color: var(--color-link);
  text-decoration-thickness: 2px;
}
.service-location:after {
  content: "→";
  color: var(--color-gray);
  font-weight: var(--font-line);
}
.service-location h3 a:hover {
  margin-right: 2px;
  transition: 0.05s;
  text-decoration-color: var(--color-link-hover);
}

@media all and (max-width: 48em) {

  .service-locations-list {
/*    display: block;
    max-width: 100%;*/
  }
}


.latest .prose {
	max-width: 100%;
}

.location_feed_list {
}

.location_feed_article {
}
.location_feed_list_image {
  height: 180px;
}
.location_feed_list_image img {
  width: 100%;
  height: 180px;

}

.location_feed_list_info {
/*  grid-column: 1;*/
}
.location_feed_list_info h3 {
  padding-top: 0;
  margin-top: 0;
}
.location_feed_list_info h3 a {
  color: black;
  text-decoration: none;
/*  text-decoration-color: #FFC312;*/
  transition: color 0.1s ease;
}
.location_feed_list_info h3 a:hover {
  color: rgb(237, 76, 103);
  transition: color 0.1s ease;
}
.location_feed_list_info h3 a:after {
  content: "»";
  padding-left: 0.5rem;
  transition: padding 0.1s ease;
}
.location_feed_list_info h3 a:hover:after {
  padding-left: 0.75rem;
}
.location_feed_list_info a.read_more {
/*  font-family: monospace;*/
  color: white;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  background: rgb(237, 76, 103);
  transition: padding 0.1s ease;
}
.location_feed_list_info a.read_more:hover {
  background: rgb(237, 76, 103);
  transition: padding 0.1s ease;
  padding-left: 1rem;
}