.main-site .post {
    margin-top: 30px;
}
.post {
    display: flex;
    padding-bottom: 30px;
    justify-content: space-between;
    max-width: 100%;
    padding-bottom: 40px;
}
.post h2 {
    font-size: 28px;
    font-weight: 300;
}
.post .post__content {
    padding-left: 30px;
}
.post .author {
    font-size: 15px;
    font-weight: bold;
    line-height: 26px;
}
.post .title {
    font-size: 40px;
    font-family: "iCiel Pony";
    line-height: 55px;
}
.post .content {
    text-align: justify;
    font-weight: var(--semi-bold);
    line-height: 24px;
    font-size: 20px;
    flex-grow: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: pre-wrap;
}
.post .create-time {
    font-size: 15px;
    font-weight: bold;
    float: right;
    padding-top: 10px;
}
.subs a {
    text-decoration: none;
}

.subs .btn-see-more {
    width: max-content;
    font-size: 15px;
    border: solid 3px var(--orange);
    border-radius: 30px;
    color: var(--brown);
    cursor: pointer;
    padding: 7px 10px;
    font-weight: bold;
    display: flex;
    margin: 0;
    position: relative;
    align-items: center;
    justify-content: space-between;
}
.subs .btn-see-more:after {
    content: "";
    background: url("../images/polygon.png") center center no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    margin-left: 10px;
}
.subs .btn-see-more:hover {
    transition: all 0.3s;
    background-color: rgba(239, 171, 23, 0.371);
}
.post__img {
    border-radius: 10px;
}
.justify-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.subs .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
}
.subs .row * {
    margin: 0;
}
@media screen and (max-width: 1023px) {
    .post .post__content {
        padding-left: unset;
    }
    .subs .btn-see-more {
        font-size: 12px;
    }
}
