.blog-one__single .mos-img img {display: none !important;}

:root {
  --mxst-gray: #727272;
  --mxst-gray-rgb: 114, 114, 114;
  --mxst-white: #ffffff;
  --mxst-white-rgb: 255, 255, 255;
  --mxst-black: #16171a;
  --mxst-black-rgb: 22, 23, 26;
  --mxst-primary: #c00;
  --mxst-primary-rgb: 242, 237, 235;
  --mxst-bdr-color: #e3dbd8;
  --mxst-bdr-color-rgb: 227, 219, 216;

}

.blog-one__single {
  position: relative;
  display: block;
}

.blog-one__img-box {
  position: relative;
  display: block;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-one__img img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05);
}

.blog-one__img>a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--mxst-black-rgb), 0.3);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--thm-base);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
}

.blog-one__img>a>span {
  position: relative;
}

.blog-one__img>a>span::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--mxst-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.blog-one__img>a>span::after {
  content: '';
  transition: all 500ms ease;
  width: 2px;
  height: 20px;
  background-color: var(--mxst-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-one__img>a:hover>span::before,
.blog-one__img>a:hover>span::after {
  background-color: var(--mxst-white);
}

.blog-one__single:hover .blog-one__img>a {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.blog-one__date {
  position: absolute;
  left: 30px;
  bottom: 0;
  background-color: var(--mxst-black);
  padding: 9px 15px 5px;
  z-index: 2;
  color: #fff;
}


.blog-one__date p {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  color: var(--mxst-white);
}

.blog-one__date p span {
  font-size: 16px;
  position: relative;
  left: -3px;
}

.blog-one__content {
  position: relative;
  display: block;
  padding: 20px 30px 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.09);
}

.blog-one__tag-and-user {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__tag {
  position: relative;
  display: block;
  background-color: #f2edeb;
  padding: 4px 10px;
  font-size: 14px;
}

.blog-one__tag p {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
}

.blog-one__user {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.blog-one__user .img {
  position: relative;
  display: block;
  width: 29px;
}

.blog-one__user .img img {
  width: 100%;
  border-radius: 50%;
}

.blog-one__user .text {
  margin-left: 10px;
  font-size: 14px;
}

.blog-one__user .text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.blog-one__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--mxst-bdr-color);
}

.blog-one__title a {
  color: var(--mxst-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__title a:hover {
  color: var(--mxst-primary);
}

.blog-one__comment-and-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-one__comment {
  position: relative;
  display: block;
}

.blog-one__comment p {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.blog-one__comment p span {
  font-size: 14px;
  color: var(--mxst-primary);
  margin-right: 4px;
}

.blog-one__arrow {
  position: relative;
  display: block;  
}

.blog-one__arrow a {
  color: var(--mxst-white);
  background-color: var(--mxst-primary);
  padding: 7px 15px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__arrow a:hover {
  color: var(--mxst-primary);
  background-color: var(--mxst-bdr-color);
}