.simple-blog {
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
}

[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: inline-block;
}

.simple-blog__title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    text-align: left;
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px !important;
    line-height: 1.2;
    min-height: 72px;
}

.simple-blog__title span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.simple-blog__extra-info {
    align-items: center;
    display: flex;
    justify-content: left;
    margin-top: 10px;

}

.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: #29252c;
    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;
    overflow: hidden;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.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;
    border-radius: 10px 10px 0 0;
}

.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;
}

.simple-blog__info {
    flex: 1 0 0;
    padding: 20px 16px;
    text-align: left;
}

.simple-blog__description {
    cursor: pointer;
    margin: 0;
    margin-top: 10px;
    word-break: break-word;
}

@media (min-width: 960px) {
    .simple-blog {
        transition: box-shadow .3s ease-out;
    }

    .simple-blog__description {
        margin: 0;
        margin-top: 12px;
        padding: 0 20px;
    }

    .simple-blog__title {
        font-size: calc(var(--title-font-size) * 0.833333 * 0.6);
    }
}

.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__extra-info {
        margin-bottom: 0;
    }

    .simple-blog__info {
        padding: 20px 16px;
    }
}

/* 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 */