/* MESSAGE */
.MESSAGE {
    background-color: #F6F6FB;
}

.MESSAGE .content {
    text-align: center;
}

.MESSAGE .content p {
    max-width: 650px;
    margin: 25px auto 0;
}


@media screen and (min-width: 1201px) {
    .MESSAGE .b-frame { padding: 150px 40px; }
}

/* POSTS */
.POSTS .b-card .content {
    flex: 1 0 auto;
    display: flex;
    flex-flow: column;
}
.POSTS .b-card .content h5 { margin: 0 0 20px 0; }
.POSTS .b-card .content .b-link { margin-top: auto; }






/* Single post/article */
.MESSAGE .post {
    height: 100%;
    flex-direction: column;   
    padding: 25px;
    /* padding-top: 30px;
    padding-bottom: 30px; */
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    background: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0px 5px 15px 0px #00000012;
    padding: 0;
    flex: 1 0 276px;
    flex-wrap: nowrap;
}

.MESSAGE .post .media {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    background-color: #eee;
}

.MESSAGE .post .content {
    text-align: left;
    flex: 1 1 auto;
    padding: 20px;
    box-sizing: border-box;
    font-family: Montserrat;
    display: flex;
    flex-direction: column;
}


.MESSAGE .post .content h6 {
    margin-top: 0;
    margin-bottom: 16px;
}

.MESSAGE .post .content a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post .content > *:last-child { margin-bottom: 0; }

.MESSAGE .head {
    text-align: center;
}

.MESSAGE .post .content .category,
.MESSAGE .post .content .read-time {
    color: #09101880;
    font-size: 14px;
    font-style: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.MESSAGE .post .content .read-time {
    font-weight: 500;
    line-height: 16px;
    margin-top: auto;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

