/**
 * Nsem SEO Monitor - front-end styles (breaking news banner, trending topics).
 */

/* Breaking news banner. */
.nsem-breaking-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #b32d2e;
	color: #fff;
	padding: 10px 16px;
	font-size: 15px;
	line-height: 1.4;
}

.nsem-breaking-banner__label {
	display: inline-block;
	background: #fff;
	color: #b32d2e;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 3px;
	white-space: nowrap;
}

.nsem-breaking-banner__link {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.nsem-breaking-banner__link:hover,
.nsem-breaking-banner__link:focus {
	text-decoration: underline;
	color: #fff;
}

/* Trending topics list. */
.nsem-trending {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nsem-trending__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 6px 0;
	border-bottom: 1px solid rgba( 0, 0, 0, 0.08 );
}

.nsem-trending__link {
	text-decoration: none;
}

.nsem-trending__count {
	font-size: 12px;
	font-weight: 700;
	color: #666;
	background: rgba( 0, 0, 0, 0.06 );
	border-radius: 10px;
	padding: 1px 8px;
}
