.bn-articles {
    /*display: grid;*/
    /*grid-gap: 30px;*/
    /*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
    /*grid-auto-flow: dense;*/
}
.bn-articles__item {
    position: relative;
    color: #fff;
    font-size: 16px;
    padding: 0;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
.bn-articles__item:hover {
    opacity: 0.8;
}
.bn-articles__date {
    color: var(--bs-success);
}
.bn-articles__name {
    color: #000;
}
.bn-articles__picture {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.bn-articles__picture img {
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
}

@media screen and ( max-width: 782px ) {

}