h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.thuCon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    /* margin-left: 7%; */
}

.post {
    flex-direction: column;
    width: 370px;
    height: 350px;
}

.thuFil {
    width: 370px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thuWra {
    position: relative;
}

.thuWra::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s ease;
    pointer-events: none;
}

@media (min-width :801px) {
    .thuWra:hover::after {
        background-color: rgba(255, 255, 255, 0.4);
    }
}

.thuImg {
    max-width: 100%;
    display: block;
    height: 180px;
    width: auto;
}

.status {
    margin-bottom: 15px;
}

.status p {
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hidden {
    display: none;
}

.btnCon {
    display: flex;
    justify-content: flex-end; 
    margin-top: 10px;
    margin-right: 5%;
}

#moreBtn {
    display: none;
    background-color: #bd924d;
    color: #faf0e6;
    font-size: 16px;
    border: solid 2px #997844;
    cursor: pointer;
    border-radius: 50px;
    height: 40px;
    width: 120px;
    transition: background-color 0.3s ease;
}

@media (min-width :801px) {
    #moreBtn:hover {
        background-color: #d6b47c;
    }
}
/* .category, .tag{
    text-align: center;
}

.tag {
    margin-left: 25%;
    width: 50%;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 2px solid #444444;
    border-radius: 20px;
    background-color: #444444;

}

.hashtag {
    margin-left: 10px;
    text-decoration: none;
} */

.info {
    width: 70%;
    margin-left: 15%;
    margin-bottom: 100px;
}

.date {
    margin-left: 15%;
}

.content {
    margin-top: 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 70%;
    margin-left: 17%;
}

.content a {
    margin: 0;
}

.title {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.titleItem {
    position: absolute;
    left: calc(50% + 290px);
}

.titleItem > img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.titleItem2 {
    position: absolute;
    right: calc(50% + 290px);
}

.titleItem2 > img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.titleLogo > img {
    width: 100%;
}

.day {
    margin-bottom: 25px;
}

.cm {
    text-align: center;
    margin-bottom: 20px;
}


