/** blog Cart **/
.default-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}
.post-item-image {
    position: relative;
    display: block;
    margin-bottom: 1rem;
}
.post-item-image img {
    border-radius: 20px;
    width: 100%;
}
.post-item-desc {
    padding-inline: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.post-item .post-item-title a {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: .4s;
    font-family: var(--Medium);
    line-height: 30px;
    min-height: 60px;
}
.post-item .post-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--gray3);
}
.post-item .post-date i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.post-item-image::before {
    display: flex;
    width: calc(100% + 1px);
    height: 100%;
    backdrop-filter: blur(6px);
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 24px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    background: rgb(247 182 97 / 50%);
    content: "\e93d";
    position: absolute;
    font-family: 'icomoon';
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.post-item:hover .post-item-image::before {
    opacity: 1;
    visibility: visible;
}
.post-item:hover .post-item-title a {
    color: var(--color1);
}