.cbe-featured-news-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
}
.cbe-featured-news-image {
	position: relative;
	border: 1px solid var(--accent-color);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	flex-basis: 100%;
}
.cbe-featured-news-image .label {
	position: absolute;
	top: 10px;
	left: -10px;
	background-color: var(--accent-color);
	color: #ffffff;
	padding: 5px 25px;
	font-weight: bold;
	border-radius: 3px;
}
.cbe-featured-news-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.cbe-featured-news-content {
  	padding-right: 20%;
}
.cbe-featured-news-title {
  	margin: 0 0 10px 0;
}
.cbe-featured-news-title a {
	text-decoration: none;
	color: var(--accent-color-dark);
	font-weight: 400;
}
.cbe-featured-news-excerpt {
	color: var(--text-color);
}

@media screen and (max-width: 1024px) {
	.cbe-featured-news-wrapper {
		flex-direction: column;
	}
	.cbe-featured-news-image,
	.cbe-featured-news-content {
		flex-basis: 100%;
	}
	.cbe-featured-news-content {
		padding-right: 0;
	}
}

@media screen and (min-width: 1025px) {
	.cbe-featured-news-content {
		padding-right: 10%;
	}
}