.bnw-list {
    display: grid;
}

.bnw-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #e2e7ed;
}

.bnw-item:last-child {
    border-bottom: 0;
}

.bnw-thumb {
    width: 72px;
    height: 55px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #0b294d;
}

.bnw-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.bnw-thumb span,
.bnw-number {
    color: #c9a227;
    font-size: 18px;
    font-weight: 800;
}

.bnw-copy h3 {
    margin: 0;
    color: #071e3d;
    font-size: 12px;
    line-height: 1.5;
}

.bnw-copy h3 a {
    color: inherit;
}

.bnw-copy h3 a:hover {
    color: #a47e0d;
}

.bnw-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin: 6px 0 0;
    color: #7a8696;
    font-size: 9px;
}

.bnw-empty {
    color: #7a8696;
    font-size: 12px;
}

