.grid {
  display: grid;
  grid-gap: 3em;
}
strong {
  font-weight: 600;
}
.grid-3-cols {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-3-cols:not(:last-child), .grid-2-cols:not(:last-child) {
  padding-bottom: 3em;
}
.grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
}
.hoverText {
  position: relative;
  display: block;
}
.hoverText img {
  max-width: 100%;
  transition: filter 0.3s ease-in-out;
  height: auto;
  object-fit: cover;
  position: relative;
}
.hoverText p {
  border-bottom: none !important;
  text-decoration: none !important;
  text-align: center !important;
  line-height: 1.1;
  width: 100%;
  box-sizing: border-box;
}
.hoverText p {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: calc(100%);
  padding: 0 1em;
  z-index: 9;
  transition: all 0.3s ease-in-out;
  font-size: 1em;
  visibility: hidden;
  color: #fff;
  opacity: 0;
  font-size: 1.6em;
  height: 100%;
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
  display: flex;
  align-items: center;
}
.hoverText p span {
  width: 100%;
}
.hoverText:hover img {
  filter: brightness(0.5);
}
.hoverText:hover p {
  visibility: visible;
  opacity: 1;
}
.grid-4-cols article p,
.grid-3-cols article p {
  text-align: left;
}
article h2 {
  margin-top: 0.5em;
  text-align: left;
  font-size: 1.2em;
  margin-bottom: 1em;
}
article a {
  line-height: 0;
}
article p {
  line-height: 1.35;
}
article p + p,
article div,
article div + p {
  margin-top: 1.25em;
}
article div p,
article p.address + p {
  margin-top: 0;
}

.node-344 article p{
	line-height: 1.5;
}
#wrap .grid-3-cols:last-child {
  padding-bottom: 0;
}

@media only screen and (max-width: 1200px) {
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid article {
    margin-bottom: 2em;
  }
}

@media only screen and (max-width: 767px) {
  .grid-4-cols,
  .grid-3-cols {
    grid-template-columns: repeat(1, 1fr);
  }
}
