.barbu-articles {
	width: 100%;
}

.barbu-articles__list {
	display: flex;
	flex-direction: column;
}

.barbu-articles__row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	min-height: 320px;
	color: #ffffff;
	overflow: hidden;
}

.barbu-articles__row--dark {
	background-color: #2b2b2b;
}

.barbu-articles__row--gray {
	background-color: #6e6e6e;
}

.barbu-articles__image {
	display: block;
	flex: 0 0 45%;
	max-width: 45%;
	min-height: 320px;
	background-color: rgba(255, 255, 255, 0.06);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.barbu-articles__content {
	flex: 1 1 55%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	text-align: right;
	padding: 40px 5%;
	box-sizing: border-box;
}

.barbu-articles__title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
}

.barbu-articles__title a {
	color: #ffffff;
	text-decoration: none;
}

.barbu-articles__title a:hover,
.barbu-articles__title a:focus {
	text-decoration: underline;
}

.barbu-articles__excerpt {
	margin: 0 0 24px;
	max-width: 520px;
	font-size: 1rem;
	line-height: 1.5;
}

.barbu-articles__button {
	display: inline-block;
	background: #ffffff;
	color: #111111;
	text-decoration: none;
	font-weight: 600;
	padding: 14px 40px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.2s ease, color 0.2s ease;
}

.barbu-articles__button:hover,
.barbu-articles__button:focus {
	background: #111111;
	color: #ffffff;
}

.barbu-articles__empty {
	text-align: center;
	padding: 40px 0;
}

.barbu-articles__load-more-wrap {
	text-align: center;
	padding: 32px 0;
	background: #ffffff;
}

.barbu-articles__load-more {
	background: #111111;
	color: #ffffff;
	border: none;
	padding: 14px 48px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	font-size: 1rem;
}

.barbu-articles__load-more:hover,
.barbu-articles__load-more:focus {
	background: #333333;
}

.barbu-articles__load-more[disabled] {
	opacity: 0.6;
	cursor: default;
}

@media (max-width: 782px) {
	.barbu-articles__row {
		flex-direction: column;
		min-height: auto;
	}

	.barbu-articles__image,
	.barbu-articles__content {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.barbu-articles__image {
		min-height: 220px;
	}

	.barbu-articles__content {
		align-items: flex-start;
		text-align: left;
		padding: 24px 6%;
	}

	.barbu-articles__excerpt {
		max-width: 100%;
	}
}
