
.block-listposts-item {
    margin-top: 1rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: var(--bs-dark);
    min-height: 300px;
    scale: 1;
    transition: all 200ms ease;
}
.block-listposts-item:hover,
.block-listposts-item:focus {
    scale: 1.05;
}
.block-listposts-item-figure {
    position: absolute;
    background-color: var(--bs-dark);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.block-listposts-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.block-listposts-item-overlay-primary {
    -moz-box-shadow: inset 0 -200px 400px rgba(152,135,85,0.6);
    -webkit-box-shadow: inset 0 -200px 400px rgba(152,135,85,0.6);
    box-shadow: inset 0 -200px 400px rgba(152,135,85,0.6);
}
.block-listposts-item-overlay-secondary {
    -moz-box-shadow: inset 0 -200px 400px rgba(69,85,96,0.6);
    -webkit-box-shadow: inset 0 -200px 400px rgba(69,85,96,0.6);
    box-shadow: inset 0 -200px 400px rgba(69,85,96,0.6);
}
.block-listposts-item-overlay-warning {
    -moz-box-shadow: inset 0 -200px 400px rgba(209,140,71,0.6);
    -webkit-box-shadow: inset 0 -200px 400px rgba(209,140,71,0.6);
    box-shadow: inset 0 -200px 400px rgba(209,140,71,0.6);
}
.block-listposts-item-overlay-danger {
    -moz-box-shadow: inset 0 -200px 400px rgba(152,82,86,0.6);
    -webkit-box-shadow: inset 0 -200px 400px rgba(152,82,86,0.6);
    box-shadow: inset 0 -200px 400px rgba(152,82,86,0.6);
}
.block-listposts-item-overlay-success {
    -moz-box-shadow: inset 0 -200px 400px rgba(109,152,82,0.6);
    -webkit-box-shadow: inset 0 -200px 400px rgba(109,152,82,0.6);
    box-shadow: inset 0 -200px 400px rgba(109,152,82,0.6);
}
.block-listposts-item-overlay-dark {
    -moz-box-shadow: inset 0 -200px 400px rgba(31,41,45,0.6);
    -webkit-box-shadow: inset 0 -200px 400px rgba(31,41,45,0.6);
    box-shadow: inset 0 -200px 400px rgba(31,41,45,0.6);
}
.block-listposts-item-content {
    z-index: 1;
    padding: 1.5rem;
    text-decoration: none;
}
.block-listposts-item-content h6 {
    font-size: 80%;
}
.block-listposts-item-content h6,
.block-listposts-item-content h1 {
    color: #fff;
    text-decoration: none;
}