.post-item {
    position: relative;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.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: var(--color2);
    padding: 2px 0.5rem;
    color: var(--white);
    border-radius: 0.5rem;
    z-index: 1;
}
.post-item .post-date {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 12px;
}
.post-item .post-title a {
    font-size: 1rem;
    transition: 0.4s;
}
.post-item:hover .post-title a {
    color: var(--color2);
}
.post-item .post-title,
.post-item .post-item-desc {
    padding-inline: 0.75rem;
}
.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;
}
.post-item .post-image:after {
    content: "";
    position: absolute;
    bottom: auto;
    border-radius: 0 0 75% 75% / 0 0 50% 50%;
    background: var(--color2);
    width: 100%;
    left: 0;
    height: 0;
    transition: 0.5s;
    z-index: 0;
    top: 0;
    opacity: 0.4;
}
.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;
}