/* BASIC css start */
.myp-top-area-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
}

.postList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.postList li {
    margin-bottom: 100px;
    text-align: center;
    width: 32%;
    margin-left: 2%;
}

.postList li:nth-child(3n+1) {
    margin-left: 0;
}

.postList li .thumbnail {
    border-radius: 16px;
    overflow: hidden;
}

.postList li .thumbnail img {
    width: 100%;
}

.postList li .subject {
    margin-top: 30px;
    font-size: 22px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 20px;
}

.postList li .desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
    max-height: 48px;
    margin-top: 5px;
    padding: 0 20px;
    word-break: keep-all;
}

.postList li .date {
    font-size: 14px;
    font-weight: 300;
    color: var(--3);
    margin-top: 15px;
    padding: 0 20px;
}

.postList li .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 25px;
    padding: 0 20px;
}

.postList li .btn a {
    font-size: 14px;
    font-weight: 600;
    background: var(--0);
    border: 1px solid var(--4);
    border-radius: 16px;
    width: 72px;
    height: 32px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.postList li .btn a+a {
    background: var(--4);
    color: var(--0);
}

@media only screen and (max-width: 1280px) {

    .myp-top-area-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .postList {
        margin-top: 0;
    }

    .postList li {
        width: 49%;
    }

    .postList li:nth-child(3n+1) {
        margin-left: 2%;
    }

    .postList li:nth-child(2n+1) {
        margin-left: 0;
    }
}

@media all and (max-width: 767px) {
    .postList li {
        width: 100%;
        margin-left: 0;
        margin-bottom: 55px;
    }

    .postList li:nth-child(3n+1) {
        margin-left: 0;
    }

    .postList li .subject {
        font-size: 23px;
        margin-top: 25px;
    }

    .postList li .desc {
        font-size: 15px;
        margin-top: 7px;
    }

    .postList li .date {
        font-size: 15px;
    }

    .postList li .btn {
        margin-top: 35px;
    }

    .postList li .btn a {
        width: 122px;
        height: 50px;
        border-radius: 40px;
    }
}
/* BASIC css end */

