.posts__title {
  margin: 0;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
.posts__title > a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  transition: all .3s ease;
}
.posts__title > a:hover {
  text-decoration: none;
  color: #01b0f0;
}

{#---------Quantity of Cards---------#}
.blog_posts_card__content {
  position: relative;
  width: 100%;
  padding: 16px 0;
  border-bottom: 2px solid #dbe4ed;
}
.blog_posts_card__content:last-child {
  border-bottom: none;
}
.blog_posts_card__content:hover{
  -webkit-transition: all .3s ease-in-out !important;
  -o-transition: all .3s ease-in-out !important;
  transition: all .3s ease-in-out !important;
}

@media only screen and (min-width: 600px) {
  .blog_posts_card__content {
    width: calc(50% - 34px);
  }
}

@media only screen and (min-width: 992px) {
  .blog_posts_card__content {
    width: calc(33.33% - 34px);
  }
}

{#---------General Styles---------#}
.blog_posts_card__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.blog_posts_card__container-title {
  border-bottom: 2px solid #067279;
  margin-bottom: 0;
  padding-bottom: 10px;
  color: #000000;
  width: 100%;
}

{#---------Card Image---------#}
.blog_posts_card__image {
  margin: 0;
}

.blog_posts_card__image img {
  height: 242px;
  display: block;
  object-fit: cover;
  width: 100%;
}

{#---------Tag and Time--------#}
.blog_posts_card__tag a {
  text-decoration: underline;
}

.blog_posts_card__tag-time {
  display: flex;
}

.blog_posts_card__tag-time > span {
  padding: 0 27px;
}
.blog_posts_card__author {
  display: flex;
  justify-content: space-between;
}
.blog_posts_card__author,
.blog_posts_card__author * {
  font-size: 14px;
  color: #767676;
}
.blog_posts_card__author a:hover,
.blog_posts_card__author a:focus{
  text-decoration: none;
}

{#---------Card Body---------#}
.blog_posts_card__body{
  position: relative;
  margin-bottom: 70px;
  width: 100%;
}

{#---------Button Style---------#}
.blog_posts_card__button {
  bottom: 32px;
  left: 0;
  position: absolute;
  margin: 0 32px;
  width: 83%;
}

.blog_posts_card__button a{
  text-decoration: none;
}

{#---------End General Styles---------#}

{#---------OVERLAY---------#}
.blog_posts_card__image--overlay {
  position: relative;
}

.blog_posts_card__image--overlay a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
} 

.blog_posts_card__title--overlay{
  position: absolute;
  top: 134px;
}

.blog_posts_card__author--overlay {
  position: absolute;
  top: 195px;
}

{#---------CLEAN---------#}
.blog_posts_card__image--clean{
  display: none;
}
.blog_posts_card__body_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .3s ease;
}
.blog_posts_card__body_container:hover {
  transform: translateX(10px);
}
.blog_posts_card__tag-time--clean {
  grid-area: tag;
}

.blog_posts_card__title--clean {
  grid-area: title;
}

.blog_posts_card__author--clean {
  grid-area: author;
  padding-bottom: 8px;
}

{#---------SIDEBAR---------#}
.blog_posts_card__content--sidebar_full,
.blog_posts_card__content--sidebar_compact {
  display: flex;
  gap: 20px;
  width: 100%;
}

.blog_posts_card__image--sidebar_full img,
.blog_posts_card__image--sidebar_compact img {
  width: 150px;
  height: 150px;
}

.blog_posts_card__image--sidebar_full img:hover,
.blog_posts_card__image--sidebar_compact img:hover {
  transform: scale(1.1);
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog_posts_card__image--sidebar_full,
.blog_posts_card__image--sidebar_compact{
  width: 150px;
  height: 150px;
  overflow: hidden;
}

@media only screen and (max-width: 767px){
  .blog_posts_card__image--sidebar_full,
  .blog_posts_card__image--sidebar_compact{
    width: 43%;
  }

  .blog_posts_card__body_container--sidebar_full,
  .blog_posts_card__body_container--sidebar_compact {
    width: 58%;
  }
}

.blog_posts_card__tag-time--sidebar_full,
.blog_posts_card__tag-time--sidebar_compact {
  grid-area: tag;
}

.blog_posts_card__author--sidebar_full,
.blog_posts_card__author--sidebar_compact,
.blog_posts_card__body--sidebar_full,
.blog_posts_card__body--sidebar_compact {
  display: none;
}

.blog_posts_card__button--sidebar_full,
.blog_posts_card__button--sidebar_compact {
  grid-area: button;
  position: inherit;
  margin: 0;
}

@media only screen and (max-width: 992px){
  .blog_posts_card__tag-time--sidebar_compact > span {
    padding: 0 16px;
  }
}

.blog_posts_card__image--sidebar_compact {
  display: none;
}