.bv-box {
    background: var(--color-white);
    border-radius: 10px;
    border: 1px solid var(--Navy-Blue);
    overflow: hidden;
}

/* Header */
.bv-header {
    padding: 12px 16px;
    font-weight: 700;
    border-bottom: 1px solid var(--Navy-Blue);
    font-size: 15px;
	color: var(--color-black);
}

/* Row */
.bv-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.25s;
}

.bv-row:last-child {
    border-bottom: none;
}

/* Image */
.bv-img {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.bv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Number on image */
.bv-number {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    background: var(--Navy-Blue);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Content */
.bv-info {
    flex: 1;
}

.bv-title-post {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bv-row:hover .bv-title-post {
    color: var(--Navy-Blue);
}

.bv-date {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* Mobile */
@media (max-width: 600px) {
    .bv-img {
        width: 50px;
        height: 50px;
    }

    .bv-title-post {
        font-size: 13px;
    }

    .bv-number {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}
