.wizard_blog__single__item {
    position: relative;
}
.blog_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.wizard_blog__poster {
    border: none;
    outline: none;
    display: block;
    width: 100%;
    height: 100%;
}
.wizard_blog__poster::before {
    height: 0%;
}
.wizard_blog__poster img {
    border: none;
    outline: none;
    width: 100%;
}
.wizard_blog__post__meta {
    padding: 22px 20px 27px;
    background-color: var(--white);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
    position: relative;
}
.blog_two .wizard_blog__post__meta {
    height: 100%;
}
.wizard_blog__post__meta__head {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wizard_blog__post__meta__head .tertiary.date {
    color: var(--theme-primary-color);
}
.wizard_blog__post__meta__head .tertiary:last-of-type {
    position: relative;
    padding-left: 15px;
}
.wizard_blog__post__meta__head .tertiary:last-of-type::before {
    content: "";
    position: absolute;
    bottom: 8px;
    right: -40px;
    width: 30px;
    height: 1px;
    background-color: var(--theme-primary-color);
}
.wizard_blog__poster::before {
    height: 0%;
}
.wizard_blog__single__item:hover .wizard_blog__poster::before {
    width: 100%;
    height: 100%;
}
.wizard_overlay_secondary {
    position: relative;
    overflow: hidden;
}
.wizard_overlay_secondary::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background-color: var(--theme-primary-color);
    transition: all 0.2s ease-in;
    opacity: .7;
}