/*-----------------------------------
    - Blog CSS
-----------------------------------*/
/* Blog Item */
.blog {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: 1px solid #E5E5E5;
  background-color: #fff;
}
.blog:hover {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.blog:hover .blog-thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-thumb {
  display: block;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.blog-content {
  padding: 25px 18px 30px 18px;
}
.blog-categories a {
  color: rgba(var(--primary-color));
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.6px;
  margin-bottom: 15px;
}
.blog-content h4 {
  line-height: 1.46;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 22px;
}
.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
.blog-meta li {
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.blog-meta li span {
  margin-left: 5px;
}
.blog-meta li:last-child {
  font-style: normal;
  color: #1f2226;
}

.blog.text-center .blog-meta {
  justify-content: center;
}
.blog.text-end .blog-meta {
  justify-content: flex-end;
}






