.post-item {
    position: relative;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: white;
    padding: 1rem;
    border: 1px solid var(--gray2);
}
.post-item p {
    font-size: 12px;
    color: #757575;
}
.post-item img {
    width: 100%;
    border-radius: 0.75rem;
    height: auto;
    transition: 0.4s;
}
.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(--Medium);
    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 .card-post-hr__views,
.post-item .post-title,
.post-item p,
.post-item .post-item-desc {
    padding-inline: 4px;
}
.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(251 186 0 / 40%);
    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: 1rem;
}
.latest-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card-post-hr {
    padding: 10px 8px;
    border-bottom: 1px solid var(--gray3);
}
.card-post-hr:nth-last-child(1) {
    padding-bottom: 0;
    border-bottom: 0;
}
.card-post-hr__link {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.4;
}
.card-post-hr__link i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.card-post-hr__thumb {
    max-width: 80px;
    max-height: 80px;
    flex: 0 0 80px;
    border-radius: 8px;
    overflow: hidden;
}
.card-post-hr__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-post-hr__title {
    font-size: clamp(12px, 2vw, 16px);
    color: var(--gray9);
    margin-bottom: 12px;
    transition: 0.4s;
    font-family: var(--Medium);
}
.card-post-hr__link:hover .card-post-hr__title {
    color: var(--color1);
}
.card-post-hr__meta {
    display: flex;
    gap: 1rem;
}
.card-post-hr__views {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray6);
    font-size: 14px;
}
.post-item .btn-2 {
    max-height: 32px !important;
    min-height: 32px !important;
    width: 100%;
    display: flex;
    font-size: 14px;
}