.bo-article-card {
	position: relative;
	min-height: var(--bo-card-height, 190px);
	overflow: hidden;
	background: #d8dde3;
}

.bo-article-card__image {
	position: absolute;
	inset: 0;
	display: block;
	background-position: center;
	background-size: cover;
	transition: transform .22s ease;
}

.bo-article-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .08) 43%, rgba(0, 0, 0, .68) 100%);
	pointer-events: none;
}

.bo-article-card:hover .bo-article-card__image {
	transform: scale(1.04);
}

.bo-article-card__tag,
.bo-article-card__title {
	position: absolute;
	z-index: 1;
	color: #fff;
	text-decoration: none;
}

.bo-article-card__tag {
	top: 10px;
	left: 10px;
	padding: 4px 8px;
	background: var(--bo-red, #c41f2f);
	font-size: .78rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.bo-article-card__title {
	right: 12px;
	bottom: 12px;
	left: 12px;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.16;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
}

.bo-article-card__tag:hover,
.bo-article-card__tag:focus,
.bo-article-card__title:hover,
.bo-article-card__title:focus {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 680px) {
	.bo-article-card {
		min-height: max(180px, var(--bo-card-height, 190px));
	}
}
