/**
 * "Recent earthquake nearby" banner on single webcam posts.
 * Reuses the theme's design tokens with safe fallbacks; scoped to .eqm-wq.
 */
.eqm-wq {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 14px 0;
	padding: 12px 14px;
	background: var(--bg-white, #ffffff);
	border: 1px solid var(--border, #dfdfdf);
	border-left: 4px solid #f46d43;
	border-radius: var(--radius-md, 8px);
	font-family: var(--font, 'Open Sans', sans-serif);
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-dark, #333);
}
.eqm-wq-ic { color: #d1481f; flex: 0 0 auto; margin-top: 1px; line-height: 0; }
.eqm-wq-txt { min-width: 0; }
.eqm-wq-link {
	color: var(--blue, #1e73be);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.eqm-wq-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
	.eqm-wq { font-size: 13.5px; }
	.eqm-wq-link { white-space: normal; }
}
