/* MRC Publisher — front-end styles for labels, attribution and the submit form. */

/* ---- Content label badge ------------------------------------------------- */
.mrc-label {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.35em 0.8em;
	border-radius: 999px;
	margin: 0 0 1.2em;
	color: #334155;
	background: #f1f5f9;
}
.mrc-label__dot {
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background: currentColor;
}
.mrc-label--press-release {
	color: #6d28d9;
	background: #f3e8ff;
}
.mrc-label--sponsored {
	color: #c2410c;
	background: #ffedd5;
}
.mrc-label--partner-content {
	color: #0f766e;
	background: #ccfbf1;
}

/* ---- Source attribution / disclaimer box --------------------------------- */
.mrc-attribution {
	margin: 2em 0 0;
	padding: 1em 1.2em;
	border-left: 3px solid #cbd5e1;
	background: #f8fafc;
	border-radius: 0 8px 8px 0;
	font-size: 0.9rem;
	color: #475569;
}
.mrc-attribution p {
	margin: 0 0 0.5em;
}
.mrc-attribution p:last-child {
	margin-bottom: 0;
}
.mrc-attribution a {
	color: #1f6feb;
}

/* ---- Submit News form ---------------------------------------------------- */
.mrc-submit {
	max-width: 720px;
}
.mrc-form .mrc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
@media (max-width: 600px) {
	.mrc-form .mrc-grid {
		grid-template-columns: 1fr;
	}
}
.mrc-field {
	margin: 0 0 1.1rem;
}
.mrc-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
	font-size: 0.92rem;
}
.mrc-field input[type="text"],
.mrc-field input[type="email"],
.mrc-field input[type="url"],
.mrc-field select,
.mrc-field textarea {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 1rem;
	box-sizing: border-box;
}
.mrc-field textarea {
	resize: vertical;
}
.mrc-consent label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-weight: 400;
}
.mrc-consent input {
	margin-top: 0.25rem;
}
.mrc-button {
	display: inline-block;
	background: #1f6feb;
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 0.7rem 1.4rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
}
.mrc-button:hover {
	background: #1a5fd0;
}
.mrc-disclaimer {
	font-size: 0.82rem;
	color: #64748b;
	margin-top: 0.75rem;
}

/* Honeypot — visually hidden but present for bots. */
.mrc-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---- Notices ------------------------------------------------------------- */
.mrc-notice {
	padding: 0.9rem 1.1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}
.mrc-notice--ok {
	background: #dcfce7;
	color: #166534;
}
.mrc-notice--error {
	background: #fee2e2;
	color: #991b1b;
}
