.post-item {
    position: relative;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.post-item img {
    width: 100%;
    border-radius: 0.75rem;
    height: auto;
    transition: 0.4s;
}
.post-date {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgb(255 255 255 / 30%);
    padding: 2px 0.5rem;
    color: var(--black);
    border-radius: 0.5rem;
    z-index: 1;
    backdrop-filter: blur(3px);
}
.post-item .post-date {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 12px;
}
.post-item .post-title a {
    color: black;
    transition: 0.4s;
    font-size: 1rem;
    font-family: var(--title);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}
.post-item:hover .post-title a {
    color: var(--color1);
}
.post-item .post-link {
    color: #767A8A;
    font-size: 14px;
    transition: 0.4s;
}
.post-item .post-link,
.post-item .post-title,
.post-item .post-item-desc {
    padding-inline: 0.5rem;
}
.post-item .post-item-desc {
    font-size: 14px;
}
.post-item .btn-5 {
    margin-right: 0.75rem;
}
.post-item .post-image {
    display: flex;
    overflow: hidden;
    z-index: 1;
    border-radius: 0.75rem;
    width: 100%;
}
.post-item .post-image:after {
    content: "";
    position: absolute;
    bottom: auto;
    border-radius: 0 0 75% 75% / 0 0 50% 50%;
    background: rgb(78 148 79 / 45%);
    width: 100%;
    left: 0;
    height: 0;
    transition: 0.5s;
    z-index: 0;
    top: 0;
    opacity: 1;
    backdrop-filter: blur(8px);
}
/*.post-item:hover .post-image img {*/
/*    filter: blur(4px);*/
/*}*/
.post-item:hover .post-image:after {
    transition: height 0.5s ease-in-out;
    height: 150%;
}
.archive-blogs .post-item {
    margin-bottom: 30px;
}