.post_grid-layout {
    margin-bottom: 100px;
}

.post_grid-layout .post-grid {
    column-gap: 1.5rem;
    row-gap: 1.5rem;
}

.post_grid-layout .post_article {
    border-radius: 12px;
    background: var(--pk-white);
    box-shadow: 0px 0px 12px 0px rgba(40, 45, 145, 0.102);
    overflow: hidden;
}

.post_grid-layout .post-image {
    aspect-ratio: 360/240;
}

.post_grid-layout .post_article .post-content {
    justify-content: space-between;
    position: relative;
    padding: 30px;
    gap: 10px;
    border: 2px solid var(--pk-white);
    border-top: unset;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: border 0.5s ease-in-out;
}

.post_grid-layout .post_article .post-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.post_grid-layout .post_article:hover .post-content {
    border: 2px solid var(--pk-primary-blue);
    border-top: unset;
}

.post_grid-layout .post_article .post-title {
    font-size: var(--heading-sm);
    line-height: 1.2;
    margin-bottom: 10px;
}

.post_grid-layout .post_article .post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-size: 13px;
    font-weight: 600;
}
.post_grid-layout .post_article .post-meta::after {
    content: "\f8ce";
    font-family: "Material Symbols outlined";
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--pk-primary-blue);
    border-radius: 999px;
    transition: transform 0.5s ease-in-out;
}

.post_grid-layout .post_article:hover .post-meta::after {
    transform: rotate(45deg);
}

.post_grid-layout .pk-button-group {
    margin-top: 50px;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .post_grid-layout {
        margin-bottom: 55px;
    }
    .post_grid-layout .pk-button-group {
        justify-content: flex-start;
    }
}
