.latest-posts .top {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-bottom: 16px;
    border-top: 1px solid var(--light-grey-2);
}
.latest-posts .top .title {
    color: var(--black);
    font-family: "Crimson Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px; /* 113.333% */
}
.latest-posts .see-more {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.latest-posts .see-more.mobile {
    display: none;
}
.latest-posts .see-more span {
    color: var(--light-grey-2);
    text-align: center;
    /* Global styles/Button cb */
    font-family: "Crimson Text";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 146.667% */
    padding-bottom: 3px;
}
.latest-posts .post-list-container .post-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}
.latest-posts .post-list-container .post-list .post-item {
    text-decoration: none;
}
.latest-posts .post-list-container .post-list .post-item .post-item-thumb {
    display: block;
    width: 100%;
    height: 197px;
}
.latest-posts .post-list-container .post-list .post-item .post-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.latest-posts .post-list-container .post-list .post-item .title {
    color: var(--black);
    font-family: "Crimson Text";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 127.273% */
    letter-spacing: -0.22px;
    margin-top: 16px;
}
@media(max-width: 900px) {
    .latest-posts .post-list-container .post-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width: 628px) {
    .latest-posts .top .title {
        font-size: 24px;
        line-height: 30px; /* 125% */
    }
    .latest-posts .see-more {
        display: none;
    }
    .latest-posts .see-more.mobile {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }
    .latest-posts .post-list-container .post-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .latest-posts .post-list-container .post-list .post-item {
        display: flex;
        gap: 16px;
    }
    .latest-posts .post-list-container .post-list .post-item:not(:first-child) {
        padding-top: 16px;
        border-top: 1px solid var(--light-grey-4);
    }
    .latest-posts .post-list-container .post-list .post-item .post-item-thumb {
        width: 82px;
        height: 82px;
    }
    .latest-posts .post-list-container .post-list .post-item .title {
        width: calc(100% - (82px + 16px));
        margin-top: unset;
        font-size: 20px;
        line-height: 24px; /* 120% */
        letter-spacing: -0.2px;
    }
}