.blog-section {
  padding: 72px 30px 96px;
}
.white {
  background-color: #fff;
}
.grey {
  background-color: #f3f3f6;
}
.light-pink {
  background-color: #fef6f9;
}
.centered {
  margin: 0 auto;
  text-align: center;
}
.blog-section h2 {
  margin: 0 auto;
  max-width: 1100px;
  padding-bottom: 36px;
  width: 100%;
}
.blog-section-container { 
  display: grid;
  grid-gap: 36px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}
.blog-post-card {
  background-color: #fff;
  border-radius: 0 45px 45px 45px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .12);
  transition: all .3s ease !important;
  width: 100%;
}
.blog-post-card:hover {
  box-shadow: 2px 2px 16px rgba(0, 0, 0, .24);
  transition: all .3s ease !important;
}
.blog-post-title a {
  transition: all .3s ease !important;
}
.blog-post-card:hover .blog-post-title a {
  color: #ed1f82; !important;
  transition: all .3s ease !important;
}
.blog-post-image {
  border-radius: 0 45px 0 0;
  height: auto;
  width: 100%;
}
.blog-post-content {
  padding: 24px 24px 36px;
}
.blog-post-summary {
  margin: 0;
}
.blog-post-title {
  margin: 0 0 .7rem;
}
.more-posts-cta {
    display: block;
    margin: 36px auto 0;
    max-width: 1100px;
  text-align: right;
  text-decoration: underline !Important;
    width: 100%;
}
.two-column-layout {
  display: flow-root !important;
}
.two-column-layout .blog-post-card {
  width: auto;
}
.two-column-layout .blog-post-card:first-of-type {
  float: left;
  margin-right: 36px;
  max-width: calc(33.33% - 24px);
}
.two-column-layout .blog-post-card:not(:first-child) {
  margin-bottom: 36px;
  margin-left: calc(33.33% + 12px);
}
.two-column-layout .blog-post-card:not(:first-child) img,
.two-column-layout .blog-post-card:not(:first-child) .blog-post-summary {
  display: none;
}
.two-column-layout .blog-post-card:not(:first-child) .blog-post-content { 
  padding: 36px 24px;
}
.two-column-layout + .more-posts-cta {
  margin: -12px auto 0;
  position: relative;
  z-index: 100;
}
.more-posts-cta:after {
  content: " >";
}
@media (max-width: 850px) {
  .blog-section-container.three-column-layout {
    display: flex;
    flex-flow: row wrap;
  }
  .blog-section-container.three-column-layout .blog-post-card:first-of-type {
    width: 100%;
  }
  .blog-section-container.three-column-layout .blog-post-card:not(:first-child) {
    width: calc(50% - 18px);
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 54px 30px;
  }
  .blog-section-container.three-column-layout,
  .blog-section-container.two-column-layout {
    display: grid;
    grid-template-columns: 1fr !important;
  }
  .blog-section-container.three-column-layout .blog-post-card {
    width: 100% !important;
  }
  .blog-section-container.two-column-layout .blog-post-card {
    float: none;
    max-width: 100%;
    margin: 0 0 36px;
  }
  .more-posts-cta {
    text-align: center;
  }
}