.featured-blog-widget {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  background-color: white;
  border: 1px solid #eaeaea;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: 250ms;
}
@media (max-width: 991.98px) {
  .featured-blog-widget {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.featured-blog-widget:hover {
  background-color: var(--color-green-l3);
}
.featured-blog-widget img {
  width: 100%;
  margin-left: auto;
  object-fit: cover;
  align-self: stretch;
  aspect-ratio: 624/326;
}
@media (max-width: 1199.98px) {
  .featured-blog-widget img {
    width: 100%;
    max-height: unset;
    margin-left: unset;
  }
}
.featured-blog-widget .content-wrapper {
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .featured-blog-widget .content-wrapper {
    align-items: center;
    text-align: center;
    order: 2;
  }
}
@media (max-width: 767.98px) {
  .featured-blog-widget .content-wrapper {
    padding: 1.5em;
  }
}
.featured-blog-widget .content-wrapper .heading {
  padding: 0;
  margin: 0;
}
.featured-blog-widget .content-wrapper .button-wrapper {
  margin-top: auto;
}
.featured-blog-widget .content-wrapper .button-wrapper .button {
  color: white;
  background-color: var(--color-secondary);
  z-index: 3;
}
.featured-blog-widget .content-wrapper .space {
  height: 4em;
}
@media (max-width: 1199.98px) {
  .featured-blog-widget .content-wrapper .space {
    height: 3em;
  }
}
@media (max-width: 991.98px) {
  .featured-blog-widget .content-wrapper .space {
    padding: 2em;
  }
}
