.simple-blog {
  align-items: flex-start;
}
[data-type_title_text_align="left"] .simple-blog {
  text-align: left;
}
[data-type_title_text_align="center"] .simple-blog {
  text-align: center;
}
[data-type_title_text_align="right"] .simple-blog {
  text-align: right;
}
.simple-blog__title-wrap {
  display: block;
}
.simple-blog__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.6; 
}
.simple-blog__extra-info {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 12px;
}
.simple-blog__extra-info .text {
  max-width: calc(50% - 25px);
  opacity: 0.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.simple-blog__extra-info .separator {
  color: rgba(var(--color-text));
  margin-left: 15px;
  margin-right: 15px;
  font-size: 25px;
  line-height: 20px;
  overflow: hidden;
}
.simple-blog__extra-info :first-child {
  text-align: right;
}
.simple-blog__extra-info :last-child {
  text-align: inherit;
}
.simple-blog__extra-info .separator + span {
  text-align: left;
}
.simple-blog__image-wrapper {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  width: 100%;
}
.simple-blog__image-box {
  width: 100%;
  position: relative;
}
.simple-blog__main {
  text-align: center;
}
.simple-blog__image-box .simple-blog__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.simple-blog__empty-img {
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  background-color: rgb(var(--color-image-background));
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.simple-blog__empty-img svg {
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-image-background));
}
.simple-blog__image {
  position: relative;
}
@media (max-width: 959px) {
  .simple-blog__main {
    padding: 0 10px;
  }
}
.simple-blog__info {
  flex: 1 0 0;
}
.simple-blog__description {
  cursor: pointer;
  margin: 0;
  margin-top: 10px;
  word-break: break-word;
}
@media (min-width: 960px) {
  .simple-blog__description {
    margin: 0;
    margin-top: 12px;
    padding: 0 20px;
  }

  .simple-blog__title {
    font-size: calc(var(--title-font-size) * 1.2 * 0.4);
    line-height: 1.4; 
  }
}
.simple-blog__tags {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  word-break: break-all;
}
.simple-blog__image-large {
  padding-bottom: 86%;
}
.simple-blog__image-medium,
.simple-blog__noimage-auto {
  padding-bottom: 56%;
}
.simple-blog__image-small {
  padding-bottom: 26%;
}
.simple-blog__image-auto .simple-blog__image {
  position: relative;
}
@media (max-width: 959px) {
  .simple-blog__image-wrapper {
    margin-bottom: 12px;
  }

  .simple-blog__extra-info {
    margin-bottom: 0;
  }

  .simple-blog__title {
    text-decoration: none;
    font-size: calc(var(--title-font-size) * 0.733333 * 0.6);
  }
}
/* The ipad end responds to the mobile end in vertical screen */
/* @custom-media --tablet (max-width: 959px); */
/* @custom-media --gt-mobile (min-width: 751px); */
/* detectingScreen need to consider the configuration of the tablet */

/* Premium Blog Styling */
.simple-blog {
  position: relative;
  padding-bottom: 20px;
}

.simple-blog::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(var(--color-text), 0.2);
  transition: all 0.3s ease;
}

.simple-blog:hover::after {
  height: 2px;
  background-color: rgba(var(--color-text), 0.8);
}

.simple-blog__image-wrapper {
  margin-bottom: 0;
}

.simple-blog__main {
  text-align: left;
  padding-top: 20px;
}

.simple-blog__title {
  font-family: var(--title-font);
  font-style: var(--title-font-style);
  font-weight: var(--title-font-weight, 500);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
  text-transform: capitalize;
}

@media (min-width: 960px) {
  .simple-blog__title {
    font-size: 20px;
  }
  
  .simple-blog__description {
    padding: 0; /* Reset padding */
  }
}

.simple-blog__extra-info {
  display: none !important;
}

.simple-blog__description {
  display: none;
}

.simple-blog__btn-wrapper {
  margin-top: 0;
}

.simple-blog__read-more {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  cursor: pointer;
}

.simple-blog__read-more::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.simple-blog:hover .simple-blog__read-more::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Image Hover Effect */
.simple-blog__image-wrapper {
  overflow: hidden;
}

.simple-blog__image {
  transition: transform 0.6s ease;
}

.simple-blog:hover .simple-blog__image {
  transform: scale(1.05);
}
