.blog-recent-post-section {
  padding: 72px 30px 96px;
}
.white {
  background-color: var(--white);
}
.grey {
  background-color: var(--lightGray);
}
.light-pink {
  background-color: var(--lightPink);
}
.blog-recent-post-section h1 {
  margin: 0 auto;
  max-width: 1100px;
  padding-bottom: 48px;
  text-align: center;
  width: 100%;
}
.blog-recent-post-container { 
  display: grid;
  grid-gap: 36px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  width: 100%;
}
.blog-recent-post-card {
  background-color: var(--white);
  border-radius: 0 45px 45px 45px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .12);
  transition: all .3s ease !important;
  width: 100%;
}
.blog-recent-post-card:hover {
  box-shadow: 2px 2px 16px rgba(0, 0, 0, .24);
  transition: all .3s ease !important;
}
.blog-recent-post-title a {
  transition: all .3s ease !important;
}
.blog-recent-post-card:hover .blog-recent-post-title a {
  color: var(--pink); !important;
  transition: all .3s ease !important;
}
.blog-recent-post-image {
  border-radius: 0 45px 0 0;
  height: auto;
  width: 100%;
}
.blog-recent-post-content {
  padding: 24px 24px 36px;
}
.blog-recent-post-title {
  margin: 0 0 .7rem;
}
.blog-recent-post-card:first-of-type .blog-recent-post-title:before {
  color: var(--blue);
  content: "FEATURED ARTICLE";
  display: block;
  font-size: 1rem;
  letter-spacing: 5px;
  margin-bottom: 18px;
}
.blog-recent-post-summary {
  margin: 0;
}
.blog-recent-post-card:first-of-type {
  background-color: transparent !important;
  box-shadow: none;
  flex: 0 0 100% !important;
  height: 450px;
  left: 0;
  margin: 0 auto 72px;
  max-width: 900px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.blog-recent-post-card:first-of-type .blog-recent-post-link {
  display: block;
  left: 0;
  max-width: 675px;
  position: relative;
  top: 0;
  width: 100%;
}
.blog-recent-post-card:first-of-type .blog-recent-post-link img {
  border-radius: 0 45px 45px 45px;
}
.blog-recent-post-card:first-of-type .blog-recent-post-content {
  background-color: var(--lightGray);
  border-radius: 0 45px 45px 45px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .12);
  height: auto;
  max-width: 450px;
  padding: 36px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease !important;
  width: 100%;
}
.blog-recent-post-card:first-of-type:hover .blog-recent-post-content {
  box-shadow: 2px 2px 16px rgba(0, 0, 0, .24);
  transition: all .3s ease !important;
}
.blog-recent-post-card:not(:first-child) {
  margin-top: 520px;
}
.blog-recent-post-card:not(:first-child) img,
.blog-recent-post-card:not(:first-child) .blog-recent-post-summary {
  display: none;
}
.blog-recent-post-card:not(:first-child) .blog-recent-post-content {
  padding: 36px 24px;
}
.more-posts-cta {
  display: block;
  margin: 36px auto 0;
  max-width: 1100px;
  text-align: right;
  text-decoration: underline !important;
  width: 100%;
}
.more-posts-cta:after {
  content: " >";
}
@media (max-width: 767px) {
  .blog-recent-post-section {
    padding: 54px 30px;
  }
  .blog-recent-post-container {
    display: grid;
    grid-template-columns: 1fr;
  }
  .blog-recent-post-card {
    margin: 0 !important;
  }
  .blog-recent-post-card:first-of-type {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .12);
    height: auto;
    left: 0;
    max-width: 100%;
    position: relative;
  }
  .blog-recent-post-card:first-of-type .blog-recent-post-link {
    display: flex;
    max-width: 100%;
  }
  .blog-recent-post-card:first-of-type .blog-recent-post-link img {
    border-radius: 0 45px 0 0;
  }
  .blog-recent-post-card:first-of-type .blog-recent-post-content {
    border-radius: 0 0 45px 45px;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    position: relative;
    top: 0;
    transform: translateY(0);
  }
  .more-posts-cta {
    text-align: center;
  }
}