.blog-post__button__wrapper {
  position: relative;
}

.blog-post-listings__title h2 {
  color: var(--Dark-Blue);
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.12px;
  margin-top: 56px;
}

.blog-widget__wrapper {
  z-index: 9;
  position: relative;
}

.blog-widget__wrapper .view-all--button {
  position: absolute;
  right: 0;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.36px;
}

  .blog-widget__wrapper .view-all--button img {
    margin-left: 7px
  }


.blog-post-listings {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 450px);
  margin: 44px 0 124px;
}

.blog-post-listings .blog-post {
  border-radius: 24px;
  background: var(--Grey);
  box-shadow: 0px 0px 10.5px 0px rgba(0, 51, 118, 0.15);
  padding: 32px 32px 12px;
  display: flex;
  flex-direction: column;
}

.blog-post-listings .blog-post__image, 
.blog-post-listings .blog-post__image a {
    width: 100%;
}

  .blog-post-listings .blog-post__image img {
    width: 100%;
    object-fit: cover;
    height: 244px;
    border-radius: 24px;
  }

.blog-post__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  justify-content: space-between;
  height: 100%;
}

.blog-post-listings .blog-post-tag {
  color: var(--Blue) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 4px 4px 4px 0;
  border-radius: 24px;
  border: 1px solid var(--Blue);
  padding: 8px;
}

  .blog-post-listings .blog-post-tag:hover {
    color: #1d6dd4 !important;
    border-color: #1d6dd4 !important;
  }

.blog-post-listings .blog-post__title {
  min-height: 40px;
}

  .blog-post-listings .blog-post__title a {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.4px;
  }

.blog-post__description {
  color: var(--Text-Blue);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.4px;
}

.blog-post__end-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 21px;
  position: relative;
  z-index: 9;
  margin-bottom: 12px;
}
  
.blog-post-listings .blog-post__author a > img {
  height: 45px;
  width 45px;
  border-radius: 50%;
}


.blog-post-listings .blog-post__data {
  color: var(--Dark-Blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.26px;
  text-transform: uppercase;
}

.blog-post__reading-time {
color: var(--Dark-Grey);
font-size: 13px;
font-weight: 500;
line-height: 20px;
letter-spacing: -0.26px;
}

.blog-post-listings .blog-post__button {
  position: absolute;
  right: -16px;
  bottom: 10px;
}


.blog-post-listings .blog-post__button img {
  width: 16px;
  height: 16px;
}


@media only screen and (max-width: 1680px) {
  .blog-post-listings {
    gap: 20px;
    grid-template-columns: repeat(3, 400px);
  }
}


@media only screen and (max-width: 768px) {
  .blog-post-listings {
    grid-template-columns: repeat(1, auto) !important;
    margin: 0 0 48px;
  }
  
  .blog-post-listings__title h2 {
    font-size: 36px;
    line-height: 105%;
    letter-spacing: -0.72px;
    margin: 0 !important;
  }
  
  .blog-post__button__wrapper {
    padding: 48px 0 !important;
  }
  
  .blog-widget__wrapper .view-all--button {
    font-size: 14px;
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
    right: initial;
    top: initial;    
  }
  
  .blog-widget__wrapper .view-all--button img {
    margin-top: -3px;
  }
  
  .blog-post__title a {
    font-size: 16px !important;
    line-height: 20px;
    letter-spacing: -0.32px;
  }
  
  .blog-post__description {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.28px; 
  }

  .blog-post-listings .blog-post__data {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.24px;
  }
  
  .blog-post__reading-time {
    font-size: 12px;
  }
  
}

