
/*.blog-content {
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.blog-category {
  color: #151514;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.blog-category:after {
  content: "";
  position: absolute;
  left: -49px;
  top: 11px;
  width: 40px;
  height: 2px;
  background: #151514;
}
.blog-date {
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1c;
}
.blog-timing {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog-title {
  font-size: 35px;
  line-height: 1.15em;
  font-weight: 600;
  color: #151514;
  cursor: pointer;
}
.blog-title:hover {
  color: var(--color-2);
}
.blog-image {
  overflow: hidden;
  transition: .3s ease-in-out;
}
.blog-image img:hover {
  transform: scale(1.1);
  transition: .3s ease-in-out;
}
.blog-image img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  transition: .3s ease-in-out;
}
.blog-wapper.blog-down {
  padding-top: 80px;
}
.hr-home-blog-inner {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
*/


/*new*/

.blog-img img {
  width: 100%;
}
.post-date {
  display: inline-block;
  width: 60px;
  height: 60px;
  padding: 0 7px;
  position: relative;
  margin-bottom: 20px;
  position: absolute;
  background: #fff;
  top: 20px;
  left: 20px;
}
.hr-home-blog-wapper {
  position: relative;
}
.day {
  display: block;
  line-height: 29px;
  font-size: 22px;
  font-weight: 600;
  padding-top: 3px;
  color: var(--black);
}
.month {
  display: block;
  line-height: 29px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: right;
  color: var(--black);
}
.post-date:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 56px;
  background: #000;
  top: 50%;
  left: calc(50% - 28px);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transform-origin: 50% 100%;
}


.post-categories a {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.entry-title a {
  font-size: 20px;
  line-height: 1.1;
  width: 100%;
  margin: 8px 0;
  color: var(--white);
}
.entry-meta-head {
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  font-size: 13px;
}
.entry-meta-link a {
  color: var(--white);
}
.post-content {
  z-index: 9;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 15px;
  left: 0;
}
.blog-img img {
  max-width: 306px;
  height: 270px;
  object-fit: cover;
}
.entry-meta-link i {
  margin-right: 5px;
}

.blog-img {
  position: relative;
  margin: 0;
  width: 100%;
  padding: 0;
}
.blog-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.4;
}