.common-list.achievements {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    gap: 7rem 4.7rem;

    @media screen and (max-width: 767px) {
        gap: 3rem 0;
    }

    & li a {
        width: 44.8rem;

        @media screen and (max-width: 767px) {
            width: 100%;
        }

        .post-thumbnail-wrapper {
            width: 44.8rem;
            height: 28.9rem;
            /* margin-bottom: 3.4rem; */
            margin-bottom: 3rem;

            @media screen and (max-width: 767px) {
                width: 100%;
                height: auto;
                margin-bottom: 1.5rem;
            }

            & img {
                border-radius: 2.3rem;
                height: 100%;
                object-fit: cover;
            }
        }

        .list-title {
            font-style: normal;
            font-weight: 700;
            font-size: 1.8rem;
            line-height: 2.6rem;
            letter-spacing: 0.08em;
            color: #242328;
            
            max-height: 5.3rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: normal;

            @supports (-webkit-line-clamp: 2) {
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                white-space: normal;
            }

            @media screen and (max-width: 767px) {
                font-size: 1.6rem;
                line-height: 2.2rem;
            }
        }
    }
}

#footer {
    margin-top: 17rem;
    @media screen and (max-width: 767px) {
        margin-top: 4rem;
    }
}