.simple-news {
    background-color: #F6F6F690;
     border: 1px solid #fff;
     height: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
}

.simple-news:hover {
    background-color: #D1F349;
}

[data-type_title_text_align="left"] .simple-news {
    text-align: left;
}

[data-type_title_text_align="center"] .simple-news {
    text-align: center;
}

[data-type_title_text_align="right"] .simple-news {
    text-align: right;
}

.simple-news__title-wrap {
    display: inline-block;
}

.simple-news__title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
}

.simple-news__extra-info {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.simple-news__extra-info img {
    width: auto;
    height: 15px;
    margin-right: 10px;
}

.simple-news__extra-info .text {
    max-width: calc(50% - 25px);
    opacity: 0.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.simple-news__extra-info .separator {
    color: #29252c;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 25px;
    line-height: 20px;
    overflow: hidden;
}

.simple-news__extra-info :first-child {
    text-align: right;
}

.simple-news__extra-info :last-child {
    text-align: inherit;
}

.simple-news__extra-info .separator+span {
    text-align: left;
}

.simple-news__image-wrapper {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
    border-radius: 0;
}

.simple-news__image-box {
    width: 100%;
    position: relative;
}

.simple-news__main {
    text-align: left;
    padding: 1vw 2vw;
}

.simple-news__image-box .simple-news__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.simple-news__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-news__empty-img svg {
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-image-background));
}

.simple-news__image {
    position: relative;
}

@media (max-width: 959px) {
    .simple-news__main {
        padding: 0 10px;
    }
}

.simple-news__info {
    flex: 1 0 0;
}

.simple-news__info h3 {
    font-family: Urbanist, Urbanist;
    font-weight: 800;
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.simple-news__description {
 cursor: pointer;
margin: 0;
margin-top: 10px;
word-break: break-word;
hyphens: auto;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
font-size: 0.7vw;
-webkit-box-orient: vertical;

}

@media (min-width: 960px) {
    .simple-news__description {
        margin: 0;
        margin-top: 12px;
        /* padding: 0 20px; */
    }

    .simple-news__title {
        /* font-size: calc(var(--title-font-size) * 1.2 * 0.6); */
        font-family: Urbanist, Urbanist;
        font-weight: 600;
        font-size: 0.81vw;
        color: #333333;
    }
}

.simple-news__tags {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    word-break: break-all;
}

.simple-news__image-large {
    padding-bottom: 86%;
}

.simple-news__image-medium,
.simple-news__noimage-auto {
    padding-bottom: 300px;
}

.simple-news__image-small {
    padding-bottom: 26%;
}

.simple-news__image-auto .simple-news__image {
    position: relative;
}

@media (max-width: 959px) {
    .simple-news__image-wrapper {
        margin-bottom: 12px;
    }

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

    .simple-news__title {
        text-decoration: underline;
        font-size: calc(var(--title-font-size) * 0.733333 * 0.6);
    }
}

@media (min-width: 1025px) {
    .simple-news__title{
        /* font-size: calc(var(--title-font-size) * 1.2 * 0.6); */
        font-family: Urbanist, Urbanist;
        font-weight: 600;
        font-size: 1.25vw; 
    }
}
/* 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 */