.blog-related .container {
  padding: 0px;
} 

.blog-related a {
  text-decoration: none;
}

.blog-related__title{
  margin: 0;  
  max-width: 809px;  
  text-align: left;
}

.blog-related__grid {
  display: grid;
  grid-column-gap: 24px;
  grid-row-gap: 20px;
  grid-template-columns: repeat(3, 1fr);  
  grid-template-rows: 1fr;
  margin: 0 auto;
}

@media (max-width: 992px) { 
  .blog-related__grid {
    grid-template-columns: repeat(2, 1fr);  
    padding: 0px 20px;
  }
}

@media (max-width: 650px) { 
  .blog-related__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.blog-related__post { 
  background-color: #343434;  
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  display: flex; 
  flex-direction: column;  
  width: 100%;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: .3s all ease-in-out;
}

@media (max-width: 992px) { 
  .blog-related__post:last-child {    
    margin-left: auto;
    margin-right: auto;    
  }
}

@media (max-width: 650px) { 
  .blog-related__post:last-child {
    grid-column: auto;
    max-width: 100%;
  }
}

.blog-related__post-image img {
  display: inline-block;
  height: 204px;
  object-fit: cover;
  vertical-align: middle; 
  width: 100%;
  border-radius: 12px;
}

.blog-related__post-content {
  padding: 32px 0 0 0;    
}

.blog-related__post-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;  
  padding-bottom: 16px;
}

.blog-related__post-tags > *,
.blog-related__post-tags h6,
.blog-related__post-title {
  margin-bottom: 0;
}

.blog-related__post-tags a {  
  color: #FFFFFF;
  font-weight: 400;
  padding: 4px 12px;    
}

a.blog-related__post-tags:hover{
  text-decoration: none;
}

a.blog-related__post-title:hover{
  text-decoration: none;
}

.blog-related__post-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-post__layout-4 .blog-related__post-data {
  align-items: center;
  column-gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 32px;
  row-gap: 12px;
  margin-bottom: 0;
}

.blog-post__layout-4 .blog-related__meta-time,
.blog-post__layout-4 .blog-related__meta-date {
  align-items: center;
  column-gap: 12px;
  display: flex; 
  position: relative;
  font-size: 16px;
}

.blog-post__layout-4 .blog-related__meta-time {
  padding-right: 12px;
}

.blog-post__layout-4 .blog-related__meta-time:after {
  content: "";
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.blog-related__post-data span{
  font-size: 16px;
}

.blog-related__post-summary{    
  font-weight: 400;
  color: #ffffff;
}

.blog-related__post-read-more {
  margin-top: 28px;
  width: fit-content;
}

.blog-related__post-read-more:hover,
.blog-related__post-read-more:focus {
  transform: none;
}

/* Setup for Layouts */
.blog-post__layout-2 .blog-related__content{
  padding: 32px;
}

.blog-post__layout-2 .blog-related__post-tags {
  margin-bottom: 16px;
}

.blog-post__layout-2 .blog-related__post-tags,
.blog-post__layout-2 .blog-related__post-content {
  padding: 0;
}

.blog-post__layout-1 .blog-related__post-content,
.blog-post__layout-3 .blog-related__post-content,
.blog-post__layout-4 .blog-related__post-content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.blog-related__post.blog-post__layout-2{
  justify-content: space-between;
}

.blog-post__layout-3 .blog-related__post-tags {
  padding-bottom: 8px;
}

.blog-post__layout-3 .blog-related__post-data,
.blog-post__layout-1 .blog-related__post-data,
.blog-post__layout-3 .blog-related__post-title,
.blog-post__layout-1 .blog-related__post-title {
  margin-bottom: 8px;
}

a.blog-related__post-title h5 {
    color: #ffffff !important;
}

a.blog-related__post-read-more-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

{#  Hover #}
.blog-related__post:hover {
    background: #cccccc;
}

.blog-related__post-title h5, .blog-related__post-summary {
    transition: .3s all ease-in-out;
}

.blog-related__post:hover .blog-related__post-title h5, 
.blog-related__post:hover .blog-related__post-summary{
    color: #000001!important;
}