:root {
	--dnscheck-blue: #2563eb;
	--dnscheck-blue-dark: #1d4ed8;
	--dnscheck-navy: #0f172a;
	--dnscheck-muted: #64748b;
	--dnscheck-soft: #f8fafc;
	--dnscheck-line: #e2e8f0;
	--dnscheck-white: #ffffff;
	--dnscheck-card-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
	--dnscheck-card-shadow-hover: 0 26px 76px rgba(15, 23, 42, 0.11);
	--dnscheck-radius: 20px;
	--dnscheck-radius-lg: 24px;
}

* {
	box-sizing: border-box;
}

body.dnscheck-content-page {
	margin: 0;
	background: var(--dnscheck-soft);
	color: var(--dnscheck-navy);
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

.dnscheck-content-page a {
	color: inherit;
	text-decoration: none;
}

.dnscheck-content-page button,
.dnscheck-content-page input {
	font: inherit;
}

.dnscheck-page {
	min-height: 100vh;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 50% 0%, rgba(219, 234, 254, 0.55), transparent 34rem),
		var(--dnscheck-soft);
}

.dnscheck-container {
	width: min(100% - 48px, 1320px);
	margin: 0 auto;
}

.dnscheck-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(203, 213, 225, 0.78);
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.dnscheck-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 28px;
}

.dnscheck-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 11px;
	color: var(--dnscheck-navy);
}

.dnscheck-logo__mark {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	place-items: center;
}

.dnscheck-logo__mark > svg {
	display: block;
	width: 38px;
	height: 38px;
	max-width: 38px;
	max-height: 38px;
	flex: 0 0 38px;
}

.dnscheck-logo__text {
	display: grid;
	gap: 2px;
	line-height: 1;
}

.dnscheck-logo__text strong {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0;
	white-space: nowrap;
}

.dnscheck-logo__text strong span {
	color: var(--dnscheck-blue);
	font-weight: 600;
}

.dnscheck-logo__text strong .dnscheck-logo__pl {
	position: relative;
	display: inline;
	color: var(--dnscheck-navy);
	font-weight: 600;
}

.dnscheck-logo__text strong .dnscheck-logo__pl::after {
	content: "";
	position: absolute;
	left: calc(100% + 3px);
	top: 0.12em;
	width: 12px;
	height: 7px;
	border: 1px solid #94a3b8;
	border-radius: 2px;
	background: linear-gradient(to bottom, #ffffff 0 50%, #dc2626 50% 100%);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
	opacity: 0.86;
	pointer-events: none;
}

.dnscheck-logo__text small {
	color: #475569;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}

.dnscheck-nav {
	display: flex;
	justify-content: center;
	flex: 1 1 auto;
	min-width: 0;
}

.dnscheck-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2vw, 32px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.dnscheck-nav-list a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: #020617;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	transition: color 160ms ease, transform 160ms ease;
}

.dnscheck-nav-list a:hover,
.dnscheck-nav-list a:focus-visible {
	color: var(--dnscheck-blue);
	transform: translateY(-1px);
}

.dnscheck-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.dnscheck-icon-button,
.dnscheck-lang {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	border: 1px solid var(--dnscheck-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.78);
	color: #0f172a;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
	cursor: pointer;
	transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.dnscheck-icon-button {
	width: 38px;
	padding: 0;
}

.dnscheck-lang {
	gap: 7px;
	min-width: 68px;
	padding: 0 12px;
	font-weight: 600;
}

.dnscheck-icon-button > svg {
	display: block;
	width: 17px;
	height: 17px;
	max-width: 17px;
	max-height: 17px;
	flex: 0 0 17px;
}

.dnscheck-lang > svg {
	display: block;
	width: 15px;
	height: 15px;
	max-width: 15px;
	max-height: 15px;
	flex: 0 0 15px;
}

.dnscheck-header .dnscheck-lang:hover,
.dnscheck-header .dnscheck-lang:focus-visible,
.dnscheck-header .dnscheck-lang[aria-expanded="true"] {
	border-color: #cbd5e1;
	background: #f8fafc;
	color: var(--dnscheck-blue);
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
	transform: translateY(-1px);
}

.dnscheck-header .dnscheck-lang:hover span,
.dnscheck-header .dnscheck-lang:focus-visible span,
.dnscheck-header .dnscheck-lang:hover > svg,
.dnscheck-header .dnscheck-lang:focus-visible > svg {
	color: var(--dnscheck-blue);
}

.dnscheck-main,
.dnscheck-content-main {
	background: transparent;
}

.dnscheck-content-hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0 66px;
	border-bottom: 1px solid var(--dnscheck-line);
	background:
		radial-gradient(circle at 50% 0%, rgba(191, 219, 254, 0.86), transparent 34%),
		radial-gradient(circle at 15% 78%, rgba(219, 234, 254, 0.62), transparent 28%),
		radial-gradient(circle at 84% 36%, rgba(224, 242, 254, 0.72), transparent 25%),
		linear-gradient(180deg, #ffffff 0%, #eef7ff 58%, #f8fafc 100%);
}

.dnscheck-content-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	background-image: radial-gradient(circle, rgba(37, 99, 235, 0.18) 1.1px, transparent 1.1px);
	background-position: left 44px top 44px;
	background-size: 20px 20px;
	opacity: 0.34;
	pointer-events: none;
}

.dnscheck-content-hero::after {
	position: absolute;
	right: 10%;
	bottom: -90px;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(37, 99, 235, 0.14);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.dnscheck-tool-hero__orb,
.dnscheck-tool-hero__dots {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.dnscheck-tool-hero__orb {
	width: 138px;
	height: 138px;
	border: 1px solid rgba(37, 99, 235, 0.16);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.34);
	box-shadow: 0 28px 70px rgba(37, 99, 235, 0.09);
}

.dnscheck-tool-hero__orb--left {
	left: 9%;
	top: 28%;
}

.dnscheck-tool-hero__orb--right {
	right: 11%;
	top: 18%;
	width: 96px;
	height: 96px;
}

.dnscheck-tool-hero__dots {
	right: 4%;
	bottom: 20px;
	width: 220px;
	height: 180px;
	opacity: 0.38;
	background-image: radial-gradient(circle, rgba(37, 99, 235, 0.28) 1.2px, transparent 1.2px);
	background-size: 19px 19px;
}

.dnscheck-content-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.dnscheck-eyebrow {
	margin: 0 0 12px;
	color: var(--dnscheck-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.dnscheck-content-hero h1 {
	max-width: 980px;
	margin: 0;
	color: #020617;
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-content-hero p:not(.dnscheck-eyebrow) {
	max-width: 760px;
	margin: 18px 0 0;
	color: #475569;
	font-size: 18px;
	line-height: 1.65;
	font-weight: 500;
}

.dnscheck-content-shell,
.dnscheck-single-shell {
	padding: 52px 0 70px;
}

.dnscheck-standard-shell {
	display: grid;
	justify-items: center;
}

.dnscheck-page-card {
	width: min(100%, 960px);
	padding: clamp(34px, 4vw, 52px);
	border-radius: var(--dnscheck-radius-lg);
}

.dnscheck-legal-card section + section {
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid var(--dnscheck-line);
}

.dnscheck-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: 32px;
	width: 100%;
}

.dnscheck-contact-card {
	padding: clamp(28px, 4vw, 42px);
}

.dnscheck-contact-card h2,
.dnscheck-contact-aside h2 {
	margin-top: 0;
}

.dnscheck-contact-form {
	display: grid;
	gap: 18px;
	margin-top: 24px;
}

.dnscheck-contact-field {
	display: grid;
	gap: 8px;
}

.dnscheck-contact-field span {
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
}

.dnscheck-contact-field input,
.dnscheck-contact-field textarea {
	width: 100%;
	border: 1px solid var(--dnscheck-line);
	border-radius: 14px;
	background: #ffffff;
	color: #0f172a;
	font: inherit;
	font-size: 15px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dnscheck-contact-field input {
	min-height: 52px;
	padding: 0 16px;
}

.dnscheck-contact-field textarea {
	min-height: 170px;
	padding: 14px 16px;
	resize: vertical;
}

.dnscheck-contact-field input:focus,
.dnscheck-contact-field textarea:focus {
	border-color: rgba(37, 99, 235, 0.55);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	outline: none;
}

.dnscheck-contact-field--honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.dnscheck-contact-submit,
.dnscheck-contact-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid rgba(37, 99, 235, 0.22);
	border-radius: 12px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: #ffffff;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dnscheck-contact-form .dnscheck-turnstile {
	order: 1;
	justify-content: flex-start;
	margin-top: 2px;
}

.dnscheck-contact-submit {
	order: 2;
}

.dnscheck-contact-secondary {
	background: #eff6ff;
	color: var(--dnscheck-blue);
	box-shadow: none;
}

.dnscheck-contact-submit:hover,
.dnscheck-contact-submit:focus-visible,
.dnscheck-contact-secondary:hover,
.dnscheck-contact-secondary:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.2);
	outline: none;
}

.dnscheck-contact-secondary:hover,
.dnscheck-contact-secondary:focus-visible {
	background: #dbeafe;
	color: var(--dnscheck-blue-dark);
}

.dnscheck-contact-aside {
	display: grid;
	gap: 18px;
}

.dnscheck-standard-page .dnscheck-content-hero {
	padding: 62px 0 54px;
}

.dnscheck-tool-page .dnscheck-content-shell {
	padding-top: 0;
}

.dnscheck-archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
	gap: 32px;
}

.dnscheck-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) 320px;
	justify-content: center;
	align-items: start;
	gap: 34px;
}

.dnscheck-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
	gap: 34px;
}

.dnscheck-main-column,
.dnscheck-archive-content {
	display: grid;
	gap: 26px;
	min-width: 0;
}

.dnscheck-card,
.dnscheck-sidebar-card,
.dnscheck-article,
.dnscheck-post-card,
.dnscheck-related-post,
.dnscheck-placeholder-box,
.dnscheck-tool-panel,
.dnscheck-step-card {
	border: 1px solid var(--dnscheck-line);
	border-radius: var(--dnscheck-radius);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--dnscheck-card-shadow);
}

.dnscheck-card {
	padding: 30px;
}

.dnscheck-card h2,
.dnscheck-section__header h2,
.dnscheck-sidebar-card h2,
.dnscheck-article h2,
.dnscheck-tool-panel h2 {
	margin: 0;
	color: #020617;
	font-size: 24px;
	line-height: 1.22;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-prose,
.dnscheck-entry-content {
	color: #334155;
	font-size: 17px;
	line-height: 1.8;
}

.dnscheck-prose > *:first-child,
.dnscheck-entry-content > *:first-child {
	margin-top: 0;
}

.dnscheck-prose > *:last-child,
.dnscheck-entry-content > *:last-child {
	margin-bottom: 0;
}

.dnscheck-prose h2,
.dnscheck-prose h3,
.dnscheck-entry-content h2,
.dnscheck-entry-content h3 {
	color: #020617;
	line-height: 1.25;
}

.dnscheck-prose a,
.dnscheck-entry-content a {
	color: var(--dnscheck-blue);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.dnscheck-placeholder-box {
	margin-top: 18px;
	padding: 24px;
	background: #f8fafc;
	box-shadow: none;
}

.dnscheck-placeholder-box p {
	margin: 0;
	color: #64748b;
	font-weight: 600;
}

.dnscheck-tool-panel {
	display: grid;
	gap: 22px;
	position: relative;
	z-index: 3;
	width: min(100%, 900px);
	padding: 32px;
	margin: -46px auto 34px;
	border-radius: var(--dnscheck-radius-lg);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
		radial-gradient(circle at 85% 20%, rgba(219, 234, 254, 0.8), transparent 30%);
	box-shadow: 0 30px 90px rgba(15, 23, 42, 0.13);
}

.dnscheck-tool-panel__content {
	max-width: 760px;
}

.dnscheck-tool-panel__content p:not(.dnscheck-eyebrow) {
	margin: 10px 0 0;
	color: #475569;
	font-size: 16px;
	line-height: 1.65;
}

.dnscheck-tool-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	padding: 10px;
	border: 1px solid #cbd5e1;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12), 0 0 0 6px rgba(219, 234, 254, 0.26);
}

.dnscheck-tool-form input {
	width: 100%;
	min-width: 0;
	height: 58px;
	padding: 0 18px;
	border: 0;
	outline: 0;
	border-radius: 10px;
	background: #f8fafc;
	color: #0f172a;
	font-size: 17px;
	font-weight: 600;
}

.dnscheck-tool-form select {
	width: 100%;
	min-width: 0;
	height: 58px;
	padding: 0 42px 0 16px;
	border: 0;
	outline: 0;
	border-radius: 10px;
	background: #f8fafc;
	color: #0f172a;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
}

.dnscheck-tool-form input::placeholder {
	color: #8a95a7;
}

.dnscheck-tool-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 158px;
	height: 58px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, #2563eb 0%, #1557e4 52%, #0b49cf 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.dnscheck-tool-form button:hover,
.dnscheck-tool-form button:focus-visible {
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.42);
	transform: translateY(-2px);
}

.dnscheck-tool-form button.is-loading {
	cursor: progress;
	opacity: 0.94;
	pointer-events: none;
	transform: none;
}

.dnscheck-dns-propagation-form {
	grid-template-columns: minmax(0, 1fr) minmax(210px, 0.34fr) auto;
	align-items: end;
}

.dnscheck-propagation-type-field {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.dnscheck-propagation-type-field label {
	color: #334155;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
}

.dnscheck-propagation-select-wrap {
	position: relative;
	display: block;
	min-width: 0;
}

.dnscheck-propagation-select-wrap::after {
	content: "▼";
	position: absolute;
	top: 50%;
	right: 16px;
	color: #2563eb;
	font-size: 10px;
	font-weight: 850;
	pointer-events: none;
	transform: translateY(-50%);
}

.dnscheck-propagation-select-wrap select {
	appearance: none;
	padding-right: 40px;
}

.dnscheck-propagation-record-help {
	margin: 12px 4px 0;
	color: #475569;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
}

.dnscheck-button-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.52);
	border-top-color: #ffffff;
	border-radius: 999px;
	animation: dnscheck-spin 0.72s linear infinite;
	flex: 0 0 16px;
}

@keyframes dnscheck-spin {
	to {
		transform: rotate(360deg);
	}
}

.dnscheck-tool-output-placeholder {
	padding: 18px 20px;
	border: 1px dashed #cbd5e1;
	border-radius: 16px;
	background: #f8fafc;
	color: #64748b;
}

.dnscheck-tool-output-placeholder p {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
}

.dnscheck-tool-examples {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 14px;
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
}

.dnscheck-tool-examples a {
	color: var(--dnscheck-blue);
	font-weight: 800;
	transition: color 160ms ease;
}

.dnscheck-tool-examples a:hover,
.dnscheck-tool-examples a:focus-visible {
	color: var(--dnscheck-blue-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.dnscheck-dns-intro {
	margin-top: 18px;
}

.dnscheck-tool-alert {
	display: grid;
	gap: 6px;
	margin-top: 18px;
	padding: 18px 20px;
	border: 1px solid #cbd5e1;
	border-radius: 16px;
	background: #f8fafc;
	color: #334155;
}

.dnscheck-tool-alert strong {
	color: #0f172a;
	font-size: 15px;
	font-weight: 800;
}

.dnscheck-tool-alert p {
	margin: 0;
	color: #475569;
	font-size: 14px;
	line-height: 1.65;
	font-weight: 600;
}

.dnscheck-tool-alert--error {
	border-color: #fecaca;
	background: #fff1f2;
}

.dnscheck-tool-alert--error strong {
	color: #be123c;
}

.dnscheck-tool-alert--notice {
	border-color: #bfdbfe;
	background: #eff6ff;
}

.dnscheck-tool-alert--warning {
	border-color: #fde68a;
	background: #fffbeb;
}

.dnscheck-tool-alert--warning strong {
	color: #b45309;
}

.dnscheck-tool-alert--success {
	border-color: #bbf7d0;
	background: #ecfdf5;
}

.dnscheck-tool-alert--success strong {
	color: #047857;
}

.dnscheck-rate-limit-alert__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.dnscheck-rate-limit-alert__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 10px;
	border: 1px solid #fecaca;
	border-radius: 999px;
	background: #ffffff;
	color: #991b1b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.25;
}

.dnscheck-back-to-top {
	position: fixed;
	right: calc(var(--dnscheck-float-right, 24px) + var(--dnscheck-report-float-width, 116px) + var(--dnscheck-float-gap, 10px));
	bottom: var(--dnscheck-float-bottom, 24px);
	z-index: 997;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	aspect-ratio: 1 / 1;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: linear-gradient(135deg, #2563eb 0%, #1557e4 100%);
	color: #ffffff;
	font-size: 0;
	font-weight: 850;
	line-height: 1;
	text-align: center;
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.2s ease, transform 0.2s ease, bottom 0.2s ease, box-shadow 0.2s ease;
}

.dnscheck-back-to-top::before {
	content: "\2191";
	display: block;
	font-size: 22px;
	line-height: 1;
	transform: translateY(-1px);
}

.dnscheck-back-to-top:hover,
.dnscheck-back-to-top:focus-visible {
	box-shadow: 0 22px 46px rgba(37, 99, 235, 0.38);
	transform: translateY(8px);
}

.dnscheck-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.dnscheck-back-to-top.is-visible:hover,
.dnscheck-back-to-top.is-visible:focus-visible {
	transform: translateY(-2px);
}

.dnscheck-back-to-top.is-near-footer {
	bottom: var(--dnscheck-float-bottom, 24px);
}

.dnscheck-dns-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-dns-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border: 1px solid #bfdbfe;
	border-radius: 18px;
	background:
		radial-gradient(circle at 90% 10%, rgba(219, 234, 254, 0.7), transparent 30%),
		linear-gradient(135deg, #ffffff, #f8fbff);
}

.dnscheck-dns-summary span {
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.dnscheck-dns-summary strong {
	color: #0f172a;
	font-size: 20px;
	font-weight: 800;
}

.dnscheck-dns-status {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-dns-status__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 7px 11px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.dnscheck-dns-status__item strong {
	color: #0f172a;
	font-weight: 850;
}

.dnscheck-dns-status__item span {
	color: inherit;
}

.dnscheck-dns-status__item--ok {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-dns-status__item--missing {
	border-color: #fed7aa;
	background: #fff7ed;
	color: #c2410c;
}

.dnscheck-dns-records {
	display: grid;
	gap: 18px;
}

.dnscheck-dns-record-section {
	overflow: hidden;
	border: 1px solid var(--dnscheck-line);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055);
}

.dnscheck-dns-record-section--empty {
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.035);
}

.dnscheck-dns-record-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--dnscheck-line);
	background: #f8fafc;
}

.dnscheck-dns-record-section__title {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.dnscheck-dns-record-section--empty .dnscheck-dns-record-section__header {
	padding-bottom: 12px;
	border-bottom: 0;
}

.dnscheck-dns-record-section__header h3 {
	margin: 0;
	color: #0f172a;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-dns-record-count {
	padding: 6px 10px;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--dnscheck-blue);
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.dnscheck-dns-empty {
	margin: 0 20px 18px;
	padding: 11px 14px;
	border: 1px dashed #e2e8f0;
	border-radius: 12px;
	background: #f8fafc;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 600;
}

.dnscheck-dns-table-wrap {
	max-width: 100%;
	overflow-x: auto;
}

.dnscheck-dns-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-size: 14px;
	line-height: 1.55;
}

.dnscheck-dns-table tr:not(.dnscheck-dns-table__separator):nth-child(odd) {
	background: #f8fafc;
}

.dnscheck-dns-table th,
.dnscheck-dns-table td {
	padding: 13px 20px;
	border-bottom: 1px solid #edf2f7;
	text-align: left;
	vertical-align: top;
}

.dnscheck-dns-table th {
	width: 142px;
	color: #64748b;
	font-weight: 800;
	white-space: nowrap;
}

.dnscheck-dns-table td {
	color: #0f172a;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 600;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-dns-value-cell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 10px;
	min-width: 0;
}

.dnscheck-dns-table tr:last-child th,
.dnscheck-dns-table tr:last-child td {
	border-bottom: 0;
}

.dnscheck-dns-table__separator td {
	height: 8px;
	padding: 0;
	border-bottom: 1px solid var(--dnscheck-line);
	background: #f8fafc;
}

.dnscheck-dns-value {
	display: block;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-dns-value--code {
	overflow-x: auto;
	min-width: 0;
	padding: 11px 12px;
	border: 1px solid #dbeafe;
	border-radius: 12px;
	background: #f8fafc;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.65;
	white-space: pre-wrap;
}

.dnscheck-copy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 7px 10px;
	border: 1px solid #cbd5e1;
	border-radius: 999px;
	background: #ffffff;
	color: var(--dnscheck-blue);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dnscheck-copy-button:hover,
.dnscheck-copy-button:focus-visible {
	border-color: var(--dnscheck-blue);
	background: #eff6ff;
	color: #1d4ed8;
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.14);
	transform: translateY(-1px);
}

.dnscheck-copy-button.is-copied {
	border-color: #86efac;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-copy-button:disabled {
	opacity: 0.48;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.dnscheck-copy-button:disabled:hover,
.dnscheck-copy-button:disabled:focus-visible {
	border-color: #cbd5e1;
	background: #ffffff;
	color: var(--dnscheck-blue);
	box-shadow: none;
	transform: none;
}

.dnscheck-copy-button--record {
	min-height: 34px;
	padding: 8px 12px;
	background: #eff6ff;
	border-color: #bfdbfe;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.dnscheck-copy-button--record.is-copied {
	border-color: #86efac;
	background: #ecfdf5;
	color: #047857;
	box-shadow: 0 10px 22px rgba(4, 120, 87, 0.12);
}

.dnscheck-spf-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-spf-summary {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid #dbeafe;
	border-radius: 20px;
	background:
		radial-gradient(circle at 96% 10%, rgba(191, 219, 254, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f8fbff);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.055);
}

.dnscheck-spf-summary span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-spf-summary strong {
	color: #0f172a;
	font-size: 24px;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-spf-summary p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-spf-summary--valid {
	border-color: #bbf7d0;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
}

.dnscheck-spf-summary--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-spf-summary--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-spf-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-spf-badge {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

.dnscheck-spf-badge--valid,
.dnscheck-spf-badge--lookup-ok {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-spf-badge--warning {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-spf-badge--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-spf-state-messages {
	display: grid;
	gap: 12px;
}

.dnscheck-spf-record-list {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
}

.dnscheck-spf-record-code {
	margin: 0;
}

.dnscheck-spf-lookup-card {
	display: grid;
	grid-template-columns: auto minmax(180px, 1fr);
	align-items: center;
	gap: 18px;
	padding: 20px;
	border: 1px solid #dbeafe;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.045);
}

.dnscheck-spf-lookup-card--valid {
	border-color: #bbf7d0;
}

.dnscheck-spf-lookup-card--warning {
	border-color: #fde68a;
}

.dnscheck-spf-lookup-card--error {
	border-color: #fecaca;
}

.dnscheck-spf-lookup-card div {
	display: grid;
	gap: 4px;
}

.dnscheck-spf-lookup-card span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-spf-lookup-card strong {
	color: #0f172a;
	font-size: 28px;
	font-weight: 850;
	line-height: 1;
}

.dnscheck-spf-lookup-card p {
	grid-column: 1 / -1;
	max-width: 520px;
	margin: 0;
	color: #475569;
	font-size: 14px;
	line-height: 1.65;
}

.dnscheck-spf-progress {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.dnscheck-spf-progress__bar {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 10px;
	border-radius: 999px;
	background: #e2e8f0;
}

.dnscheck-spf-progress__bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: #16a34a;
	transition: width 0.25s ease;
}

.dnscheck-spf-lookup-card--warning .dnscheck-spf-progress__bar span {
	background: #f59e0b;
}

.dnscheck-spf-lookup-card--error .dnscheck-spf-progress__bar span {
	background: #dc2626;
}

.dnscheck-spf-progress small {
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
}

.dnscheck-spf-mechanism-row {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr) minmax(170px, auto);
	align-items: start;
	gap: 12px;
	min-width: 0;
}

.dnscheck-spf-mechanism-row span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.dnscheck-spf-mechanism-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 7px;
	min-width: 0;
}

.dnscheck-spf-mechanism-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 6px 9px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #f8fafc;
	color: #64748b;
	font-size: 11px;
	font-weight: 850;
	white-space: nowrap;
}

.dnscheck-spf-mechanism-badge--dns {
	border-color: #bfdbfe;
	background: #eff6ff;
	color: var(--dnscheck-blue);
}

.dnscheck-spf-mechanism-badge--external {
	border-color: #c4b5fd;
	background: #f5f3ff;
	color: #6d28d9;
}

.dnscheck-spf-mechanism-badge--no-lookup {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-spf-mechanism-badge--policy {
	border-color: #fed7aa;
	background: #fff7ed;
	color: #c2410c;
}

.dnscheck-spf-messages {
	display: grid;
	gap: 14px;
}

.dnscheck-spf-messages ul {
	display: grid;
	gap: 8px;
	margin: 4px 0 0;
	padding-left: 20px;
	color: #475569;
	line-height: 1.65;
}

.dnscheck-dmarc-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-dmarc-target strong {
	overflow-wrap: anywhere;
}

.dnscheck-dmarc-summary {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.dnscheck-dmarc-summary span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-dmarc-summary strong {
	color: #0f172a;
	font-size: 24px;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-dmarc-summary p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-dmarc-summary--valid {
	border-color: #bbf7d0;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
}

.dnscheck-dmarc-summary--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-dmarc-summary--missing,
.dnscheck-dmarc-summary--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-dmarc-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-dmarc-badge {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	overflow-wrap: anywhere;
	text-align: left;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

.dnscheck-dmarc-badge--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-dmarc-badge--warning,
.dnscheck-dmarc-badge--notice {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-dmarc-badge--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-dmarc-record-list,
.dnscheck-dmarc-param-list {
	display: grid;
	gap: 10px;
	padding: 18px 20px;
	min-width: 0;
}

.dnscheck-dmarc-record-code,
.dnscheck-dmarc-param-code {
	display: block;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	overflow-x: auto;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-dmarc-record-code {
	max-height: 150px;
	overflow-y: auto;
	overflow-wrap: anywhere;
	word-break: break-all;
}

.dnscheck-dmarc-param-row {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.dnscheck-dmarc-param-row > div {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.dnscheck-dmarc-param-row strong {
	color: #0f172a;
	font-size: 14px;
	font-weight: 850;
}

.dnscheck-dmarc-param-row span {
	color: #64748b;
	font-size: 13px;
	line-height: 1.45;
}

.dnscheck-dmarc-param-code {
	padding: 11px 12px;
	border: 1px solid #dbeafe;
	border-radius: 12px;
	background: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.65;
}

.dnscheck-dmarc-recommendations {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #fde68a;
	border-radius: 18px;
	background: #fffbeb;
}

.dnscheck-dmarc-recommendations h3 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 850;
}

.dnscheck-dmarc-recommendations ul,
.dnscheck-dmarc-messages ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
	color: #475569;
	line-height: 1.65;
}

.dnscheck-dmarc-messages {
	display: grid;
	gap: 14px;
}

.dnscheck-whois-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-whois-target strong,
.dnscheck-whois-target small {
	overflow-wrap: anywhere;
}

.dnscheck-whois-summary {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid #bbf7d0;
	border-radius: 20px;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
}

.dnscheck-whois-summary--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-whois-summary--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-whois-summary--missing {
	border-color: #bfdbfe;
	background:
		radial-gradient(circle at 96% 10%, rgba(191, 219, 254, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #eff6ff);
}

.dnscheck-whois-summary span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.dnscheck-whois-summary strong {
	color: #0f172a;
	font-size: 24px;
	font-weight: 850;
	line-height: 1.25;
}

.dnscheck-whois-summary p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-whois-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-whois-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--dnscheck-blue);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.dnscheck-whois-badge--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-whois-badge--warning,
.dnscheck-whois-badge--notice {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-whois-badge--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-whois-param-list {
	display: grid;
	gap: 10px;
	padding: 18px 20px;
	background: #ffffff;
}

.dnscheck-whois-param-row {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 13px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.dnscheck-whois-param-row--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
}

.dnscheck-whois-param-row--valid strong {
	color: #047857;
}

.dnscheck-whois-param-row--warning {
	border-color: #fde68a;
	background: #fffbeb;
}

.dnscheck-whois-param-row--warning strong {
	color: #b45309;
}

.dnscheck-whois-param-row--error {
	border-color: #fecaca;
	background: #fef2f2;
}

.dnscheck-whois-param-row--error strong {
	color: #b91c1c;
}

.dnscheck-whois-param-row--notice {
	border-color: #bfdbfe;
	background: #eff6ff;
}

.dnscheck-whois-param-row--notice strong {
	color: #1d4ed8;
}

.dnscheck-whois-param-row span {
	color: #64748b;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.45;
}

.dnscheck-whois-param-row strong {
	min-width: 0;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.dnscheck-whois-nameservers {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 20px;
}

.dnscheck-whois-nameservers code {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	max-width: 100%;
	padding: 7px 10px;
	border: 1px solid #dbeafe;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 13px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.dnscheck-whois-recommendations {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #bfdbfe;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.dnscheck-whois-recommendations h3 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 850;
}

.dnscheck-whois-recommendations ul,
.dnscheck-whois-messages ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
	color: #475569;
	line-height: 1.65;
}

.dnscheck-whois-messages {
	display: grid;
	gap: 14px;
}

.dnscheck-whois-raw {
	overflow: hidden;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.045);
}

.dnscheck-whois-raw summary {
	cursor: pointer;
	padding: 16px 20px;
	border-bottom: 1px solid #e2e8f0;
	color: #0f172a;
	font-size: 15px;
	font-weight: 850;
}

.dnscheck-whois-raw pre {
	max-height: 360px;
	margin: 0;
	padding: 18px 20px;
	overflow: auto;
	background: #f8fafc;
	color: #334155;
	font-size: 12px;
	line-height: 1.65;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
}

.dnscheck-whois-raw code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.dnscheck-ssl-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-ssl-target {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.dnscheck-ssl-target strong,
.dnscheck-ssl-target small {
	overflow-wrap: anywhere;
}

.dnscheck-ssl-target small {
	grid-column: 1 / -1;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.dnscheck-ssl-summary {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid #bbf7d0;
	border-radius: 20px;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
}

.dnscheck-ssl-summary--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-ssl-summary--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-ssl-summary span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.dnscheck-ssl-summary strong {
	color: #0f172a;
	font-size: 24px;
	font-weight: 850;
	line-height: 1.25;
}

.dnscheck-ssl-summary p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-ssl-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-ssl-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--dnscheck-blue);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.dnscheck-ssl-badge--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-ssl-badge--warning,
.dnscheck-ssl-badge--notice {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-ssl-badge--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-ssl-param-list {
	display: grid;
	gap: 10px;
	padding: 18px 20px;
	background: #ffffff;
}

.dnscheck-ssl-param-row {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 13px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.dnscheck-ssl-param-row--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
}

.dnscheck-ssl-param-row--valid strong {
	color: #047857;
}

.dnscheck-ssl-param-row--warning {
	border-color: #fde68a;
	background: #fffbeb;
}

.dnscheck-ssl-param-row--warning strong {
	color: #b45309;
}

.dnscheck-ssl-param-row--error {
	border-color: #fecaca;
	background: #fef2f2;
}

.dnscheck-ssl-param-row--error strong {
	color: #b91c1c;
}

.dnscheck-ssl-param-row--notice {
	border-color: #bfdbfe;
	background: #eff6ff;
}

.dnscheck-ssl-param-row--notice strong {
	color: #1d4ed8;
}

.dnscheck-ssl-param-row span {
	color: #64748b;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.45;
}

.dnscheck-ssl-param-row strong {
	min-width: 0;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.55;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-ssl-san-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-height: 220px;
	overflow: auto;
	padding: 18px 20px;
}

.dnscheck-ssl-san-list code {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	max-width: 100%;
	padding: 7px 10px;
	border: 1px solid #dbeafe;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 13px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.dnscheck-ssl-recommendations {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #fde68a;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-ssl-recommendations h3 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 850;
}

.dnscheck-ssl-recommendations ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
	color: #475569;
	line-height: 1.65;
}

.dnscheck-ssl-raw {
	overflow: hidden;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.045);
}

.dnscheck-ssl-raw summary {
	cursor: pointer;
	padding: 16px 20px;
	border-bottom: 1px solid #e2e8f0;
	color: #0f172a;
	font-size: 15px;
	font-weight: 850;
}

.dnscheck-ssl-raw pre {
	max-height: 360px;
	margin: 0;
	padding: 18px 20px;
	overflow: auto;
	background: #f8fafc;
	color: #334155;
	font-size: 12px;
	line-height: 1.65;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
}

.dnscheck-ssl-raw code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.dnscheck-my-ip-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-my-ip-auto-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 18px;
	padding: 16px 18px;
	border: 1px solid #bfdbfe;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.dnscheck-my-ip-auto-panel p {
	margin: 0;
	color: #475569;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
}

.dnscheck-my-ip-refresh {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid #bfdbfe;
	border-radius: 12px;
	background: linear-gradient(135deg, #ffffff, #eff6ff);
	color: #2563eb;
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.dnscheck-my-ip-refresh:hover,
.dnscheck-my-ip-refresh:focus-visible {
	border-color: #93c5fd;
	background: linear-gradient(135deg, #f8fbff, #dbeafe);
	color: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
}

.dnscheck-my-ip-hero-card {
	display: grid;
	gap: 16px;
	padding: 30px;
	border: 1px solid #bbf7d0;
	border-radius: 24px;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 32%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
	box-shadow: 0 22px 56px rgba(15, 23, 42, 0.08);
}

.dnscheck-my-ip-hero-card--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 32%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-my-ip-hero-card--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 32%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-my-ip-top-result {
	display: grid;
	gap: 12px;
	padding: 24px;
	border: 1px solid #bbf7d0;
	border-radius: 22px;
	background:
		radial-gradient(circle at 96% 12%, rgba(187, 247, 208, 0.68), transparent 34%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.dnscheck-my-ip-top-result--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 12%, rgba(253, 230, 138, 0.68), transparent 34%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-my-ip-top-result--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 12%, rgba(254, 202, 202, 0.68), transparent 34%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-my-ip-top-result > span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.dnscheck-my-ip-top-result > strong {
	color: #020617;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 900;
	line-height: 1.08;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-my-ip-top-result__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.dnscheck-my-ip-hero-card > span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.dnscheck-my-ip-hero-card > strong {
	color: #020617;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 900;
	line-height: 1.08;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-my-ip-hero-card__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.dnscheck-my-ip-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-my-ip-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--dnscheck-blue);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.dnscheck-my-ip-badge--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-my-ip-badge--warning,
.dnscheck-my-ip-badge--notice {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-my-ip-badge--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-my-ip-param-list {
	display: grid;
	gap: 10px;
	padding: 18px 20px;
	background: #ffffff;
}

.dnscheck-my-ip-param-row {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 13px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.dnscheck-my-ip-param-row--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
}

.dnscheck-my-ip-param-row--valid strong {
	color: #047857;
}

.dnscheck-my-ip-param-row--warning {
	border-color: #fde68a;
	background: #fffbeb;
}

.dnscheck-my-ip-param-row--warning strong {
	color: #b45309;
}

.dnscheck-my-ip-param-row--error {
	border-color: #fecaca;
	background: #fef2f2;
}

.dnscheck-my-ip-param-row--error strong {
	color: #b91c1c;
}

.dnscheck-my-ip-param-row span {
	color: #64748b;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.45;
}

.dnscheck-my-ip-param-row strong {
	min-width: 0;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.55;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-my-ip-geo-placeholder {
	padding: 18px 20px;
	background: #ffffff;
}

.dnscheck-my-ip-geo-placeholder p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.65;
}

.dnscheck-my-ip-inline-ad {
	margin: 0 auto;
}

.dnscheck-ip-asn-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.dnscheck-ip-geo-note {
	margin: 0;
	padding: 0 20px 18px;
	background: #ffffff;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
}

.dnscheck-my-ip-headers {
	overflow: hidden;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.045);
}

.dnscheck-my-ip-headers summary {
	cursor: pointer;
	padding: 16px 20px;
	border-bottom: 1px solid #e2e8f0;
	color: #0f172a;
	font-size: 15px;
	font-weight: 850;
}

.dnscheck-my-ip-header-list {
	display: grid;
	gap: 10px;
	padding: 18px 20px;
	background: #f8fafc;
}

.dnscheck-my-ip-header-row {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 14px;
	padding: 12px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #ffffff;
}

.dnscheck-my-ip-header-row span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.5;
}

.dnscheck-my-ip-header-row code {
	min-width: 0;
	color: #0f172a;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.55;
	overflow-wrap: anywhere;
	white-space: normal;
}

.dnscheck-my-ip-header-note {
	margin: 0;
	padding: 0 20px 18px;
	background: #f8fafc;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
}

.dnscheck-my-ip-privacy {
	display: grid;
	gap: 8px;
	padding: 18px 20px;
	border: 1px solid #bfdbfe;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.dnscheck-my-ip-privacy h3 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 850;
}

.dnscheck-my-ip-privacy p {
	margin: 0;
	color: #475569;
	font-size: 14px;
	line-height: 1.7;
}

.dnscheck-blacklist-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-blacklist-loader,
.dnscheck-mx-loader,
.dnscheck-ip-loader,
.dnscheck-propagation-loader,
.dnscheck-whois-loader,
.dnscheck-ssl-loader {
	display: grid;
	gap: 10px;
	margin-top: 14px;
	padding: 16px 18px;
	border: 1px solid #bfdbfe;
	border-radius: 16px;
	background: linear-gradient(135deg, #ffffff, #eff6ff);
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.08);
}

.dnscheck-blacklist-loader[hidden],
.dnscheck-mx-loader[hidden],
.dnscheck-ip-loader[hidden],
.dnscheck-propagation-loader[hidden],
.dnscheck-whois-loader[hidden],
.dnscheck-ssl-loader[hidden] {
	display: none;
}

.dnscheck-blacklist-loader__header,
.dnscheck-mx-loader__header,
.dnscheck-ip-loader__header,
.dnscheck-propagation-loader__header,
.dnscheck-whois-loader__header,
.dnscheck-ssl-loader__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.dnscheck-blacklist-loader__header strong,
.dnscheck-mx-loader__header strong,
.dnscheck-ip-loader__header strong,
.dnscheck-propagation-loader__header strong,
.dnscheck-whois-loader__header strong,
.dnscheck-ssl-loader__header strong {
	color: #0f172a;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.4;
}

.dnscheck-blacklist-loader__header span,
.dnscheck-mx-loader__header span,
.dnscheck-ip-loader__header span,
.dnscheck-propagation-loader__header span,
.dnscheck-whois-loader__header span,
.dnscheck-ssl-loader__header span {
	color: #2563eb;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
}

.dnscheck-blacklist-loader__track,
.dnscheck-mx-loader__track,
.dnscheck-ip-loader__track,
.dnscheck-propagation-loader__track,
.dnscheck-whois-loader__track,
.dnscheck-ssl-loader__track {
	overflow: hidden;
	height: 9px;
	border-radius: 999px;
	background: #dbeafe;
}

.dnscheck-blacklist-loader__track span,
.dnscheck-mx-loader__track span,
.dnscheck-ip-loader__track span,
.dnscheck-propagation-loader__track span,
.dnscheck-whois-loader__track span,
.dnscheck-ssl-loader__track span {
	position: relative;
	display: block;
	width: 0%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #2563eb, #38bdf8);
	box-shadow: 0 0 18px rgba(37, 99, 235, 0.35);
	transition: width 0.35s ease;
}

.dnscheck-blacklist-loader__track span::after,
.dnscheck-mx-loader__track span::after,
.dnscheck-ip-loader__track span::after,
.dnscheck-propagation-loader__track span::after,
.dnscheck-whois-loader__track span::after,
.dnscheck-ssl-loader__track span::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
	transform: translateX(-100%);
	animation: dnscheck-blacklist-progress-shine 1.1s infinite;
}

.dnscheck-blacklist-loader small,
.dnscheck-mx-loader small,
.dnscheck-ip-loader small,
.dnscheck-propagation-loader small,
.dnscheck-whois-loader small,
.dnscheck-ssl-loader small {
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

@keyframes dnscheck-blacklist-progress-shine {
	to {
		transform: translateX(100%);
	}
}

.dnscheck-mx-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-mx-target {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.dnscheck-mx-target small {
	grid-column: 1 / -1;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.dnscheck-mx-summary {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.dnscheck-mx-summary span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-mx-summary strong {
	color: #0f172a;
	font-size: 24px;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-mx-summary p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-mx-summary--valid {
	border-color: #bbf7d0;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
}

.dnscheck-mx-summary--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-mx-summary--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-mx-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-mx-badge {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	overflow-wrap: anywhere;
	text-align: left;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

.dnscheck-mx-badge--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-mx-badge--warning {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-mx-badge--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-mx-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	border: 1px solid #bfdbfe;
	border-radius: 18px;
	background:
		radial-gradient(circle at 92% 12%, rgba(219, 234, 254, 0.8), transparent 34%),
		linear-gradient(135deg, #ffffff, #eff6ff);
}

.dnscheck-mx-stats div {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.dnscheck-mx-stats span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-mx-stats strong {
	color: #0f172a;
	font-size: 18px;
	font-weight: 850;
	line-height: 1.3;
}

.dnscheck-mx-table {
	width: 100%;
	min-width: 0;
	table-layout: fixed;
}

.dnscheck-mx-table__col--priority {
	width: 72px;
}

.dnscheck-mx-table__col--host {
	width: 20%;
}

.dnscheck-mx-table__col--ttl {
	width: 72px;
}

.dnscheck-mx-table__col--a {
	width: 15%;
}

.dnscheck-mx-table__col--aaaa {
	width: 11%;
}

.dnscheck-mx-table__col--reverse {
	width: 28%;
}

.dnscheck-mx-table__col--status {
	width: 78px;
}

.dnscheck-mx-table thead th {
	background: #f8fafc;
	color: #475569;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.dnscheck-mx-table th,
.dnscheck-mx-table td {
	width: auto;
	min-width: 0;
	padding: 11px 9px;
	vertical-align: middle;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-mx-table th:nth-child(6),
.dnscheck-mx-table td:nth-child(6) {
	padding-right: 16px;
}

.dnscheck-mx-table th:nth-child(7),
.dnscheck-mx-table td:nth-child(7) {
	padding-left: 14px;
	text-align: center;
}

.dnscheck-mx-table code {
	display: inline-block;
	max-width: 100%;
	padding: 5px 7px;
	border: 1px solid #dbeafe;
	border-radius: 8px;
	background: #ffffff;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	font-weight: 700;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-mx-table th[scope="row"] code,
.dnscheck-mx-table td:nth-child(6) code {
	font-size: 12px;
	line-height: 1.45;
}

.dnscheck-mx-table code + .dnscheck-mx-status {
	margin-top: 6px;
}

.dnscheck-mx-table .dnscheck-mx-status {
	padding: 6px 8px;
	font-size: 11px;
	white-space: normal;
	line-height: 1.2;
}

.dnscheck-mx-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 7px 10px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
}

.dnscheck-mx-status--valid {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-mx-status--warning {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-propagation-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-propagation-target {
	grid-template-columns: minmax(0, 1fr) auto;
}

.dnscheck-propagation-summary {
	display: grid;
	gap: 8px;
	padding: 24px;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.dnscheck-propagation-summary span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-propagation-summary strong {
	color: #0f172a;
	font-size: 28px;
	font-weight: 850;
	line-height: 1.15;
}

.dnscheck-propagation-summary p {
	margin: 0;
	color: #475569;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.65;
}

.dnscheck-propagation-summary--valid {
	border-color: #bbf7d0;
	background: linear-gradient(135deg, #ffffff, #ecfdf5);
}

.dnscheck-propagation-summary--warning {
	border-color: #fde68a;
	background: linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-propagation-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-propagation-badge,
.dnscheck-propagation-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 7px 10px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
}

.dnscheck-propagation-badge--valid,
.dnscheck-propagation-status--ok {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-propagation-badge--warning,
.dnscheck-propagation-status--warning {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-propagation-status--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-propagation-badge--info,
.dnscheck-propagation-status--info {
	border-color: #bfdbfe;
	background: #eff6ff;
	color: #1d4ed8;
}

.dnscheck-propagation-status--unavailable {
	border-color: #e2e8f0;
	background: #f8fafc;
	color: #64748b;
}

.dnscheck-propagation-progress-card {
	display: grid;
	gap: 12px;
	padding: 20px;
	border: 1px solid #bfdbfe;
	border-radius: 20px;
	background:
		radial-gradient(circle at 92% 10%, rgba(219, 234, 254, 0.9), transparent 34%),
		linear-gradient(135deg, #ffffff, #eff6ff);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.045);
}

.dnscheck-propagation-progress-card > div:first-child {
	display: grid;
	gap: 4px;
}

.dnscheck-propagation-progress-card span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-propagation-progress-card strong {
	color: #0f172a;
	font-size: 32px;
	font-weight: 850;
	line-height: 1;
}

.dnscheck-propagation-progress-card p {
	margin: 0;
	color: #475569;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
}

.dnscheck-propagation-progress {
	overflow: hidden;
	width: 100%;
	height: 12px;
	border-radius: 999px;
	background: #dbeafe;
}

.dnscheck-propagation-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #2563eb, #22c55e);
	box-shadow: 0 0 18px rgba(37, 99, 235, 0.24);
	transition: width 0.25s ease;
}

.dnscheck-propagation-progress-status {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 32px;
	padding: 7px 11px;
	border: 1px solid #dbeafe;
	border-radius: 999px;
	background: #ffffff;
	color: #0f172a !important;
	font-size: 13px !important;
	font-weight: 850 !important;
}

.dnscheck-propagation-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
	padding: 18px;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.045);
}

.dnscheck-propagation-stats div {
	display: grid;
	align-content: center;
	gap: 5px;
	padding: 13px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.dnscheck-propagation-stats span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-propagation-stats strong {
	color: #0f172a;
	font-size: 18px;
	font-weight: 850;
	line-height: 1.3;
}

.dnscheck-propagation-table {
	width: 100%;
	table-layout: fixed;
}

.dnscheck-propagation-table-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid #e2e8f0;
	background: #ffffff;
}

.dnscheck-propagation-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.dnscheck-propagation-filters button,
.dnscheck-propagation-refresh {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #f8fafc;
	color: #475569;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dnscheck-propagation-filters button:hover,
.dnscheck-propagation-filters button:focus-visible,
.dnscheck-propagation-filters button.is-active,
.dnscheck-propagation-refresh:hover,
.dnscheck-propagation-refresh:focus-visible {
	border-color: #bfdbfe;
	background: #eff6ff;
	color: #2563eb;
	transform: translateY(-1px);
}

.dnscheck-propagation-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
	min-width: 0;
}

.dnscheck-propagation-actions > span {
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.dnscheck-propagation-table__col--location {
	width: 22%;
}

.dnscheck-propagation-table__col--server {
	width: 18%;
}

.dnscheck-propagation-table__col--value {
	width: 45%;
}

.dnscheck-propagation-table__col--status {
	width: 15%;
}

.dnscheck-propagation-table thead th {
	background: #f8fafc;
	color: #475569;
	font-size: 12px;
	text-transform: uppercase;
}

.dnscheck-propagation-table th,
.dnscheck-propagation-table td {
	min-width: 0;
	padding: 12px 14px;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-propagation-table tr[hidden] {
	display: none !important;
}

.dnscheck-propagation-table th[scope="row"] {
	width: auto;
	white-space: normal;
}

.dnscheck-propagation-table th[scope="row"] strong,
.dnscheck-propagation-table th[scope="row"] small,
.dnscheck-propagation-table th[scope="row"] em {
	display: block;
}

.dnscheck-propagation-table th[scope="row"] strong {
	color: #0f172a;
	font-size: 14px;
	font-weight: 850;
}

.dnscheck-propagation-table th[scope="row"] small {
	margin-top: 4px;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
}

.dnscheck-propagation-table th[scope="row"] em {
	margin-top: 5px;
	color: #2563eb;
	font-size: 12px;
	font-style: normal;
	font-weight: 850;
}

.dnscheck-propagation-table code {
	display: inline-block;
	max-width: 100%;
	padding: 5px 7px;
	border: 1px solid #dbeafe;
	border-radius: 8px;
	background: #ffffff;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	font-weight: 700;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-propagation-values {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.dnscheck-propagation-empty {
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
}

.dnscheck-propagation-txt-value,
.dnscheck-propagation-mx-value,
.dnscheck-propagation-copy-value {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.dnscheck-propagation-txt-value {
	align-items: flex-start;
}

.dnscheck-propagation-full-record {
	width: 100%;
	min-width: 0;
}

.dnscheck-propagation-full-record summary {
	width: fit-content;
	margin-top: 3px;
	color: #2563eb;
	font-size: 12px;
	font-weight: 850;
	cursor: pointer;
}

.dnscheck-propagation-full-record code {
	display: block;
	max-height: 150px;
	overflow-y: auto;
	margin-top: 8px;
	white-space: pre-wrap;
}

.dnscheck-propagation-mx-priority {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 5px 8px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 11px;
	font-weight: 850;
	white-space: nowrap;
}

.dnscheck-copy-button--mini {
	min-height: 28px;
	padding: 6px 8px;
	font-size: 11px;
}

.dnscheck-propagation-recommendations {
	padding: 20px 22px;
	border: 1px solid #dbeafe;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.dnscheck-propagation-recommendations h3 {
	margin: 0 0 10px;
	color: #0f172a;
	font-size: 18px;
	font-weight: 850;
}

.dnscheck-propagation-recommendations ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 18px;
	color: #475569;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.65;
}

.dnscheck-email-header-form {
	grid-template-columns: 1fr;
	gap: 12px;
}

.dnscheck-email-header-form label {
	color: #334155;
	font-size: 13px;
	font-weight: 850;
}

.dnscheck-email-header-form textarea {
	width: 100%;
	min-height: 260px;
	padding: 16px;
	border: 0;
	outline: 0;
	border-radius: 12px;
	background: #f8fafc;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.65;
	resize: vertical;
	overflow-wrap: anywhere;
}

.dnscheck-email-header-form textarea::placeholder {
	color: #94a3b8;
}

.dnscheck-email-header-form__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.dnscheck-email-header-form__actions a {
	color: #2563eb;
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.dnscheck-email-header-form__actions a:hover,
.dnscheck-email-header-form__actions a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.dnscheck-email-privacy-note {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid #dbeafe;
	border-radius: 12px;
	background: #eff6ff;
	color: #475569;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
}

.dnscheck-email-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-email-summary {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.dnscheck-email-summary > span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-email-summary strong {
	color: #0f172a;
	font-size: 24px;
	font-weight: 850;
	line-height: 1.2;
}

.dnscheck-email-summary p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-email-summary .dnscheck-copy-button {
	justify-self: start;
	margin-top: 6px;
}

.dnscheck-email-summary--valid {
	border-color: #bbf7d0;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
}

.dnscheck-email-summary--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-email-summary--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-email-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-email-badge,
.dnscheck-email-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 7px 10px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
}

.dnscheck-email-badge--valid,
.dnscheck-email-status--ok {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-email-badge--warning,
.dnscheck-email-status--warning {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-email-badge--error,
.dnscheck-email-status--error,
.dnscheck-email-status--fail {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-email-badge--missing,
.dnscheck-email-status--notice {
	border-color: #cbd5e1;
	background: #f8fafc;
	color: #64748b;
}

.dnscheck-email-status--info {
	border-color: #bae6fd;
	background: #f0f9ff;
	color: #0369a1;
}

.dnscheck-email-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: 18px 20px;
}

.dnscheck-email-field {
	display: grid;
	gap: 6px;
	min-width: 0;
	padding: 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.dnscheck-email-field--wide {
	grid-column: 1 / -1;
}

.dnscheck-email-field span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-email-field strong {
	color: #0f172a;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.55;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-email-auth-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: 18px 20px;
}

.dnscheck-email-auth-card {
	display: grid;
	gap: 7px;
	min-width: 0;
	padding: 16px;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: #f8fafc;
}

.dnscheck-email-auth-card--valid {
	border-color: #bbf7d0;
	background: #f0fdf4;
}

.dnscheck-email-auth-card--missing {
	border-color: #cbd5e1;
	background: #f8fafc;
}

.dnscheck-email-auth-card--warning {
	border-color: #fde68a;
	background: #fffbeb;
}

.dnscheck-email-auth-card--error {
	border-color: #fecaca;
	background: #fef2f2;
}

.dnscheck-email-auth-card span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-email-auth-card strong {
	color: #0f172a;
	font-size: 18px;
	font-weight: 850;
	line-height: 1.15;
}

.dnscheck-email-auth-card p,
.dnscheck-email-auth-card small {
	margin: 0;
	color: #475569;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.dnscheck-email-auth-card__hash code {
	display: block;
	margin-top: 6px;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	line-height: 1.65;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-email-auth-details {
	margin-top: 4px;
	padding: 12px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.72);
}

.dnscheck-email-auth-details summary {
	cursor: pointer;
	color: #2563eb;
	font-size: 13px;
	font-weight: 850;
}

.dnscheck-email-auth-details p {
	margin-top: 10px;
}

.dnscheck-email-received-timeline {
	display: grid;
	gap: 14px;
	padding: 18px 20px 20px;
	background: #ffffff;
}

.dnscheck-email-hop {
	display: grid;
	gap: 14px;
	min-width: 0;
	padding: 18px;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.dnscheck-email-hop--ok {
	border-color: #bbf7d0;
}

.dnscheck-email-hop--warning {
	border-color: #fde68a;
	background: linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-email-hop--error {
	border-color: #fecaca;
	background: linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-email-hop--info {
	border-color: #bae6fd;
	background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.dnscheck-email-hop__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
}

.dnscheck-email-hop__header h4 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 850;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.dnscheck-email-hop__fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.dnscheck-email-hop__field {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	align-items: start;
	column-gap: 14px;
	gap: 5px;
	min-width: 0;
	padding: 12px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.78);
}

.dnscheck-email-hop__field:nth-child(1),
.dnscheck-email-hop__field:nth-child(2),
.dnscheck-email-hop__field:nth-child(4) {
	grid-column: 1 / -1;
}

.dnscheck-email-hop__field span {
	color: #64748b;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.dnscheck-email-hop__field .dnscheck-email-status {
	justify-self: start;
	color: #047857;
	font-size: 12px;
	letter-spacing: 0;
}

.dnscheck-email-hop__field .dnscheck-email-status--warning {
	color: #b45309;
}

.dnscheck-email-hop__field .dnscheck-email-status--error,
.dnscheck-email-hop__field .dnscheck-email-status--fail {
	color: #b91c1c;
}

.dnscheck-email-hop__field .dnscheck-email-status--info {
	color: #0369a1;
}

.dnscheck-email-hop__field code,
.dnscheck-email-hop__field strong {
	display: block;
	min-width: 0;
	color: #0f172a;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.55;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-email-hop__field code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.dnscheck-email-panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.dnscheck-email-panel {
	padding: 20px;
	border: 1px solid #fde68a;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-email-panel h3 {
	margin: 0 0 10px;
	color: #0f172a;
	font-size: 18px;
	font-weight: 850;
}

.dnscheck-email-panel p,
.dnscheck-email-panel li {
	color: #475569;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.65;
}

.dnscheck-email-panel ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 18px;
}

.dnscheck-email-panel li {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-email-issue-label {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	margin-right: 8px;
	padding: 3px 7px;
	border: 1px solid #cbd5e1;
	border-radius: 999px;
	background: #f8fafc;
	color: #64748b;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	vertical-align: baseline;
}

.dnscheck-email-issue-label--info {
	border-color: #bae6fd;
	background: #f0f9ff;
	color: #0369a1;
}

.dnscheck-email-issue-label--warning {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-email-issue-label--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-email-issue--error {
	color: #b91c1c !important;
}

.dnscheck-email-issue--warning {
	color: #b45309 !important;
}

.dnscheck-mx-host-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 18px 20px;
	background: #ffffff;
}

.dnscheck-mx-host-card {
	display: grid;
	gap: 8px;
	padding: 16px;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: #f8fafc;
}

.dnscheck-mx-host-card--valid {
	border-color: #bbf7d0;
	background: #f0fdf4;
}

.dnscheck-mx-host-card--warning {
	border-color: #fde68a;
	background: #fffbeb;
}

.dnscheck-mx-host-card strong {
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 14px;
	font-weight: 850;
	overflow-wrap: anywhere;
}

.dnscheck-mx-host-card p {
	margin: 0;
	color: #475569;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.dnscheck-mx-recommendations {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #bfdbfe;
	border-radius: 18px;
	background: #eff6ff;
}

.dnscheck-mx-recommendations h3 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 850;
}

.dnscheck-mx-recommendations ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
	color: #475569;
	line-height: 1.65;
}

.dnscheck-blacklist-target {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.dnscheck-blacklist-target small {
	grid-column: 1 / -1;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.dnscheck-blacklist-summary {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.dnscheck-blacklist-summary span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-blacklist-summary strong {
	color: #0f172a;
	font-size: 24px;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-blacklist-summary p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-blacklist-summary--clean {
	border-color: #bbf7d0;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
}

.dnscheck-blacklist-summary--warning,
.dnscheck-blacklist-summary--auxiliary {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-blacklist-summary--listed {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-blacklist-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-blacklist-badge {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	overflow-wrap: anywhere;
	text-align: left;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

.dnscheck-blacklist-badge--clean {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-blacklist-badge--warning {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-blacklist-badge--listed {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-blacklist-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	border: 1px solid #bfdbfe;
	border-radius: 18px;
	background:
		radial-gradient(circle at 92% 12%, rgba(219, 234, 254, 0.8), transparent 34%),
		linear-gradient(135deg, #ffffff, #eff6ff);
}

.dnscheck-blacklist-stats div {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.dnscheck-blacklist-stats span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-blacklist-stats strong {
	color: #0f172a;
	font-size: 18px;
	font-weight: 850;
	line-height: 1.3;
}

.dnscheck-blacklist-table {
	min-width: 720px;
}

.dnscheck-blacklist-table thead th {
	background: #f8fafc;
	color: #475569;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.dnscheck-blacklist-table th,
.dnscheck-blacklist-table td {
	width: auto;
}

.dnscheck-blacklist-table td code {
	display: inline-block;
	max-width: 100%;
	padding: 5px 7px;
	border: 1px solid #dbeafe;
	border-radius: 8px;
	background: #ffffff;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	font-weight: 700;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-blacklist-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 7px 10px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
}

.dnscheck-blacklist-status--clean {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-blacklist-status--listed {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-blacklist-status--warning {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-blacklist-muted {
	color: #94a3b8;
	font-size: 13px;
	font-weight: 700;
}

.dnscheck-blacklist-recommendations {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #bfdbfe;
	border-radius: 18px;
	background: #eff6ff;
}

.dnscheck-blacklist-recommendations h3 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 850;
}

.dnscheck-blacklist-recommendations ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
	color: #475569;
	line-height: 1.65;
}

.dnscheck-dkim-checker-form {
	align-items: start;
	grid-template-columns: minmax(0, 1fr) minmax(160px, 0.42fr) auto;
}

.dnscheck-dkim-domain-field,
.dnscheck-dkim-selector-field {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.dnscheck-dkim-checker-form > button {
	align-self: start;
	margin-top: 21px;
}

.dnscheck-dkim-field-label {
	color: #334155;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
}

.dnscheck-dkim-domain-field input,
.dnscheck-dkim-selector-field input {
	height: 58px;
	padding: 0 18px;
	border-radius: 10px;
	align-self: start;
}

.dnscheck-dkim-selector-field small {
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

.dnscheck-dkim-presets {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.dnscheck-dkim-presets button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 12px;
	border: 1px solid #dbeafe;
	border-radius: 999px;
	background: #ffffff;
	color: var(--dnscheck-blue);
	font-size: 13px;
	font-weight: 850;
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dnscheck-dkim-presets button:hover,
.dnscheck-dkim-presets button:focus-visible {
	border-color: #2563eb;
	background: #eff6ff;
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.14);
	transform: translateY(-2px);
}

.dnscheck-dkim-examples {
	margin-top: 12px;
}

.dnscheck-dkim-results {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.dnscheck-dkim-target strong {
	overflow-wrap: anywhere;
}

.dnscheck-dkim-summary {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid #dbeafe;
	border-radius: 20px;
	background:
		radial-gradient(circle at 96% 10%, rgba(191, 219, 254, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f8fbff);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.055);
}

.dnscheck-dkim-summary span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-dkim-summary strong {
	color: #0f172a;
	font-size: 24px;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-dkim-summary p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-dkim-summary--valid {
	border-color: #bbf7d0;
	background:
		radial-gradient(circle at 96% 10%, rgba(187, 247, 208, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #f0fdf4);
}

.dnscheck-dkim-summary--warning {
	border-color: #fde68a;
	background:
		radial-gradient(circle at 96% 10%, rgba(253, 230, 138, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fffbeb);
}

.dnscheck-dkim-summary--not_found {
	border-color: #bfdbfe;
	background:
		radial-gradient(circle at 96% 10%, rgba(191, 219, 254, 0.68), transparent 30%),
		linear-gradient(135deg, #ffffff, #eff6ff);
}

.dnscheck-dkim-summary--error {
	border-color: #fecaca;
	background:
		radial-gradient(circle at 96% 10%, rgba(254, 202, 202, 0.72), transparent 30%),
		linear-gradient(135deg, #ffffff, #fef2f2);
}

.dnscheck-dkim-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-dkim-badge {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

.dnscheck-dkim-badge--valid,
.dnscheck-dkim-badge--strong {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-dkim-badge--warning,
.dnscheck-dkim-badge--recommended,
.dnscheck-dkim-badge--weak {
	border-color: #fde68a;
	background: #fffbeb;
	color: #b45309;
}

.dnscheck-dkim-badge--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}

.dnscheck-dkim-checked-selectors {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.dnscheck-dkim-checked-selectors h3 {
	margin: 0;
	color: #0f172a;
	font-size: 16px;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-dkim-selector-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dnscheck-dkim-selector-badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 10px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #f8fafc;
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
}

.dnscheck-dkim-selector-badge--found {
	border-color: #bbf7d0;
	background: #ecfdf5;
	color: #047857;
}

.dnscheck-dkim-diagnostics {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #dbeafe;
	border-radius: 18px;
	background: #f8fbff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.035);
}

.dnscheck-dkim-diagnostics h3 {
	margin: 0;
	color: #0f172a;
	font-size: 16px;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-dkim-diagnostics__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.85fr);
	gap: 12px;
}

.dnscheck-dkim-diagnostics__grid div {
	display: grid;
	gap: 5px;
	min-width: 0;
	padding: 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #ffffff;
}

.dnscheck-dkim-diagnostics span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-dkim-diagnostics strong,
.dnscheck-dkim-diagnostics li {
	color: #0f172a;
	font-size: 13px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.dnscheck-dkim-diagnostics p {
	margin: 0;
	color: #475569;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.65;
}

.dnscheck-dkim-diagnostics ul {
	display: grid;
	gap: 6px;
	margin: 0;
	padding-left: 18px;
}

.dnscheck-dkim-record-list {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	min-width: 0;
}

.dnscheck-dkim-record-code,
.dnscheck-dkim-param-code {
	display: block;
	max-width: 100%;
	margin: 0;
	overflow-x: auto;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.dnscheck-dkim-record-code {
	max-height: 220px;
	overflow-y: auto;
}

.dnscheck-dkim-param-code {
	min-width: 0;
	max-height: 160px;
	padding: 11px 12px;
	border: 1px solid #dbeafe;
	border-radius: 12px;
	background: #ffffff;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.65;
	overflow-y: auto;
}

.dnscheck-dkim-param-code--public-key {
	max-height: 190px;
	background: #f8fafc;
}

.dnscheck-dkim-meta-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.dnscheck-dkim-meta-card {
	display: grid;
	gap: 7px;
	min-width: 0;
	padding: 18px;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.dnscheck-dkim-meta-card span {
	color: #64748b;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.dnscheck-dkim-meta-card strong {
	color: #0f172a;
	font-size: 18px;
	font-weight: 850;
	overflow-wrap: anywhere;
}

.dnscheck-dkim-meta-card--valid,
.dnscheck-dkim-meta-card--strong {
	border-color: #bbf7d0;
	background: #f0fdf4;
}

.dnscheck-dkim-meta-card--warning,
.dnscheck-dkim-meta-card--recommended,
.dnscheck-dkim-meta-card--weak {
	border-color: #fde68a;
	background: #fffbeb;
}

.dnscheck-dkim-meta-card--error {
	border-color: #fecaca;
	background: #fef2f2;
}

.dnscheck-dkim-param-list {
	display: grid;
	gap: 10px;
	padding: 18px 20px;
}

.dnscheck-dkim-param-row {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.dnscheck-dkim-param-row > div {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.dnscheck-dkim-param-row strong {
	color: #0f172a;
	font-size: 14px;
	font-weight: 850;
}

.dnscheck-dkim-param-row span {
	color: #64748b;
	font-size: 13px;
	line-height: 1.45;
}

.dnscheck-dkim-messages {
	display: grid;
	gap: 14px;
}

.dnscheck-dkim-messages ul {
	display: grid;
	gap: 8px;
	margin: 4px 0 0;
	padding-left: 20px;
	color: #475569;
	line-height: 1.65;
}

.dnscheck-tool-top-ad {
	margin-bottom: 34px;
	margin-left: auto;
	margin-right: auto;
}

.dnscheck-tool-mid-ad,
.dnscheck-tool-bottom-ad,
.dnscheck-blog-bottom-ad,
.dnscheck-blog-list-ad {
	margin-left: auto;
	margin-right: auto;
}

.dnscheck-blog-sidebar > .dnscheck-sidebar__ad {
	margin-top: 0;
}

.dnscheck-tool-description h2 {
	margin-bottom: 18px;
}

.dnscheck-tool-description p {
	max-width: 760px;
}

.dnscheck-dns-interpretation {
	margin-top: 24px;
	padding: 20px;
	border: 1px solid #dbeafe;
	border-radius: 18px;
	background:
		radial-gradient(circle at 94% 8%, rgba(191, 219, 254, 0.7), transparent 28%),
		linear-gradient(135deg, #ffffff, #f8fbff);
}

.dnscheck-dns-interpretation h3 {
	margin: 0 0 14px;
	color: #0f172a;
	font-size: 18px;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-dns-interpretation ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dnscheck-dns-interpretation li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin: 0;
	padding: 10px 12px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	color: #475569;
	font-size: 14px;
	line-height: 1.55;
}

.dnscheck-dns-interpretation strong {
	min-width: 54px;
	color: var(--dnscheck-blue);
	font-weight: 850;
}

.dnscheck-step-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 20px;
}

.dnscheck-step-card {
	display: grid;
	gap: 9px;
	padding: 20px;
	box-shadow: none;
}

.dnscheck-step-card span {
	color: var(--dnscheck-blue);
	font-size: 13px;
	font-weight: 800;
}

.dnscheck-step-card strong {
	color: #0f172a;
	font-size: 16px;
	font-weight: 800;
}

.dnscheck-step-card p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.58;
}

.dnscheck-sidebar {
	display: grid;
	gap: 24px;
	width: 100%;
	min-width: 0;
}

.dnscheck-single-sidebar {
	gap: 22px;
}

.dnscheck-sidebar__sticky {
	position: sticky;
	top: 112px;
	display: grid;
	gap: 24px;
}

.dnscheck-sidebar__sticky:empty,
.dnscheck-sidebar__sticky:has(> .dnscheck-managed-ad[hidden]) {
	display: none;
}

@media (min-width: 1181px) {
	.dnscheck-tool-sidebar--dns-lookup {
		position: sticky;
		top: 110px;
		align-self: start;
	}

	.dnscheck-tool-sidebar--dns-lookup .dnscheck-sidebar__sticky {
		position: static;
	}
}

.dnscheck-sidebar-card {
	padding: 24px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dnscheck-sidebar-card:hover,
.dnscheck-sidebar-card:focus-within {
	border-color: #cbd5e1;
	box-shadow: var(--dnscheck-card-shadow-hover);
	transform: translateY(-4px);
}

.dnscheck-sidebar-card h2 {
	margin-bottom: 16px;
	font-size: 18px;
}

.dnscheck-sidebar-list {
	display: grid;
	gap: 12px;
}

.dnscheck-sidebar-list a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid var(--dnscheck-line);
	color: #0f172a;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	transition: color 160ms ease;
}

.dnscheck-sidebar-list a:last-child {
	border-bottom: 0;
}

.dnscheck-sidebar-list a:hover,
.dnscheck-sidebar-list a:focus-visible {
	color: var(--dnscheck-blue);
}

.dnscheck-sidebar-list--chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dnscheck-sidebar-list--chips a {
	padding: 8px 11px;
	border: 1px solid var(--dnscheck-line);
	border-radius: 999px;
	background: #f8fafc;
}

.dnscheck-sidebar-list p,
.dnscheck-muted-text {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

.dnscheck-ad-slot {
	display: grid;
	width: 100%;
	place-items: center;
	padding: 10px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #ffffff;
	color: #64748b;
}

.dnscheck-ad-slot--300x250 {
	max-width: 300px;
	min-height: 250px;
}

.dnscheck-ad-slot--300x600 {
	max-width: 300px;
	min-height: 600px;
}

.dnscheck-ad-slot--728x90 {
	width: min(100%, 728px);
	min-height: 90px;
}

.dnscheck-ad-slot--responsive {
	width: 100%;
	min-height: 132px;
}

.dnscheck-sidebar .dnscheck-ad-slot {
	justify-self: center;
}

.dnscheck-ad-slot__inner {
	display: grid;
	justify-items: center;
	gap: 5px;
	padding: 18px;
	text-align: center;
}

.dnscheck-ad-slot__inner span {
	display: none;
}

.dnscheck-ad-slot__inner small {
	color: #94a3b8;
	font-size: 12px;
	font-weight: 700;
}

.dnscheck-horizontal-ad {
	justify-self: center;
	margin: 8px auto;
}

.dnscheck-post-grid__ad {
	display: flex;
	width: 100%;
	grid-column: 1 / -1;
	align-items: center;
	justify-content: center;
	justify-self: stretch;
	align-self: start;
	height: auto;
	min-height: unset;
	padding: 0;
	margin: 8px 0;
}

.dnscheck-post-grid__ad .dnscheck-managed-ad,
.dnscheck-blog-list-ad {
	width: min(100%, 970px);
	max-width: 970px;
	height: auto;
	min-height: unset;
	margin: 0 auto;
}

.dnscheck-post-grid__ad.dnscheck-ad-slot--728x90 {
	width: 100%;
	max-width: none;
}

.dnscheck-section {
	margin-top: 34px;
}

.dnscheck-section__header {
	margin-bottom: 18px;
}

.dnscheck-related-tools {
	display: grid;
	gap: 14px;
}

.dnscheck-related-tools--grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dnscheck-related-tool {
	display: grid;
	gap: 8px;
	padding: 20px;
	border: 1px solid var(--dnscheck-line);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.045);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dnscheck-related-tool:hover,
.dnscheck-related-tool:focus-visible {
	border-color: #cbd5e1;
	box-shadow: var(--dnscheck-card-shadow-hover);
	transform: translateY(-4px);
}

.dnscheck-related-tool strong {
	color: var(--dnscheck-blue);
	font-size: 16px;
	font-weight: 800;
}

.dnscheck-related-tool span {
	color: #64748b;
	font-size: 14px;
	line-height: 1.55;
}

.dnscheck-related-tools--sidebar .dnscheck-related-tool {
	padding: 15px;
	border-radius: 14px;
	box-shadow: none;
}

.dnscheck-related-tools--sidebar .dnscheck-related-tool:hover,
.dnscheck-related-tools--sidebar .dnscheck-related-tool:focus-visible {
	box-shadow: var(--dnscheck-card-shadow-hover);
}

.dnscheck-faq {
	margin-top: 0;
}

.dnscheck-faq__grid {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.dnscheck-faq details {
	border: 1px solid var(--dnscheck-line);
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.dnscheck-faq summary {
	padding: 18px 20px;
	color: #0f172a;
	font-weight: 800;
	cursor: pointer;
}

.dnscheck-faq details p {
	margin: 0;
	padding: 0 20px 18px;
	color: #475569;
	line-height: 1.7;
}

.dnscheck-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: auto;
	gap: 24px;
	align-items: stretch;
}

.dnscheck-post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 398px;
	padding: 24px;
	border-radius: 20px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dnscheck-post-card__thumb {
	display: block;
	flex: 0 0 auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	height: auto;
	margin: -8px -8px 18px;
	border-radius: 16px;
	background: #eff6ff;
}

.dnscheck-post-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.dnscheck-post-card:hover .dnscheck-post-card__thumb img,
.dnscheck-post-card:focus-within .dnscheck-post-card__thumb img {
	transform: scale(1.035);
}

.dnscheck-post-card__thumb--placeholder img {
	object-position: center;
}

.dnscheck-post-card:hover,
.dnscheck-post-card:focus-within {
	border-color: #cbd5e1;
	box-shadow: var(--dnscheck-card-shadow-hover);
	transform: translateY(-4px);
}

.dnscheck-post-card__meta,
.dnscheck-article__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
}

.dnscheck-post-card__meta a,
.dnscheck-article__meta a {
	display: inline-flex;
	padding: 5px 9px;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--dnscheck-blue);
}

.dnscheck-post-card__reading-time {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #64748b;
}

.dnscheck-post-card__category {
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.dnscheck-post-card__reading-time::before {
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: #cbd5e1;
	content: "";
}

.dnscheck-post-card h2 {
	margin: 0;
	min-height: 49px;
	color: var(--dnscheck-blue);
	font-size: 19px;
	line-height: 1.28;
	font-weight: 800;
	letter-spacing: 0;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.dnscheck-post-card h2 a {
	color: inherit;
	transition: color 160ms ease;
}

.dnscheck-post-card h2 a:hover,
.dnscheck-post-card h2 a:focus-visible {
	color: var(--dnscheck-blue-dark);
}

.dnscheck-post-card p {
	display: -webkit-box;
	overflow: hidden;
	margin: 14px 0 0;
	min-height: 67px;
	color: #475569;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 500;
	text-align: justify;
	text-align-last: left;
	overflow-wrap: anywhere;
	hyphens: auto;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.dnscheck-post-card__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	width: fit-content;
	margin-top: auto;
	padding-top: 18px;
	color: var(--dnscheck-blue);
	font-size: 15px;
	font-weight: 800;
	transition: color 160ms ease, gap 160ms ease;
}

.dnscheck-post-card__link:hover,
.dnscheck-post-card__link:focus-visible {
	gap: 13px;
	color: var(--dnscheck-blue-dark);
}

.dnscheck-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 36px;
}

.dnscheck-pagination__link,
.dnscheck-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid var(--dnscheck-line);
	border-radius: 12px;
	background: #ffffff;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.dnscheck-pagination__link:hover,
.dnscheck-pagination__link:focus-visible,
.dnscheck-pagination__link--current,
.dnscheck-pagination .page-numbers:hover,
.dnscheck-pagination .page-numbers:focus-visible,
.dnscheck-pagination .page-numbers.current {
	border-color: rgba(37, 99, 235, 0.28);
	background: var(--dnscheck-blue);
	color: #ffffff;
}

.dnscheck-pagination .dots,
.dnscheck-pagination .dots:hover,
.dnscheck-pagination .dots:focus-visible {
	border-color: transparent;
	background: transparent;
	color: #94a3b8;
	box-shadow: none;
}

.dnscheck-article {
	width: 100%;
	max-width: 760px;
	min-width: 0;
	padding: 40px;
	border-radius: var(--dnscheck-radius-lg);
}

.dnscheck-article__header {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--dnscheck-line);
}

.dnscheck-article__header h1 {
	margin: 0;
	color: #020617;
	font-size: 36px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
}

.dnscheck-breadcrumbs a {
	color: var(--dnscheck-blue);
	transition: color 160ms ease;
}

.dnscheck-breadcrumbs a:hover,
.dnscheck-breadcrumbs a:focus-visible {
	color: var(--dnscheck-blue-dark);
}

.dnscheck-breadcrumbs__separator {
	color: #cbd5e1;
}

.dnscheck-breadcrumbs__current {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	color: #64748b;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dnscheck-article__meta {
	width: fit-content;
	max-width: 100%;
	margin: 22px 0 0;
	padding: 11px 13px;
	border: 1px solid var(--dnscheck-line);
	border-radius: 14px;
	background: linear-gradient(180deg, #f8fafc, #ffffff);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.035);
}

.dnscheck-article__meta span {
	color: #475569;
}

.dnscheck-toc-placeholder {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 24px 0;
	padding: 18px 20px;
	border: 1px solid var(--dnscheck-line);
	border-radius: 18px;
	background: linear-gradient(180deg, #f8fafc, #ffffff);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.035);
}

.dnscheck-toc-placeholder h2 {
	margin: 0 0 12px;
	font-size: 17px;
	line-height: 1.2;
}

.dnscheck-toc__list {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dnscheck-toc__item {
	display: flex;
	gap: 9px;
	color: #334155;
	font-size: 13.5px;
	line-height: 1.45;
	font-weight: 700;
}

.dnscheck-toc__item a {
	color: inherit;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition: color 160ms ease;
}

.dnscheck-toc__item a:hover,
.dnscheck-toc__item a:focus-visible {
	color: var(--dnscheck-blue);
	outline: none;
}

.dnscheck-toc__item::before {
	width: 6px;
	height: 6px;
	margin-top: 7px;
	border-radius: 999px;
	background: var(--dnscheck-blue);
	content: "";
	flex: 0 0 auto;
}

.dnscheck-toc--collapsed .dnscheck-toc__item--extra {
	display: none;
}

.dnscheck-toc__item--h3 {
	padding-left: 18px;
	color: #64748b;
}

.dnscheck-toc__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 14px;
	min-height: 34px;
	padding: 0 13px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--dnscheck-blue);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.dnscheck-toc__toggle:hover,
.dnscheck-toc__toggle:focus-visible {
	border-color: var(--dnscheck-blue);
	background: #ffffff;
	color: var(--dnscheck-blue-dark);
	transform: translateY(-1px);
	outline: none;
}

.dnscheck-entry-content {
	color: #334155;
	font-size: 17px;
	line-height: 1.82;
}

.dnscheck-entry-content p {
	margin: 0 0 28px;
	text-align: justify;
	text-align-last: left;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.dnscheck-entry-content h2 {
	margin: 48px 0 18px;
	color: #020617;
	font-size: 30px;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-entry-content h2::after {
	display: block;
	width: 48px;
	height: 3px;
	margin-top: 12px;
	border-radius: 999px;
	background: var(--dnscheck-blue);
	content: "";
}

.dnscheck-entry-content h3 {
	margin: 36px 0 14px;
	color: #020617;
	font-size: 23px;
	line-height: 1.28;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-entry-content ul,
.dnscheck-entry-content ol {
	margin: 0 0 24px 22px;
	padding: 0;
}

.dnscheck-entry-content li {
	margin: 8px 0;
	padding-left: 4px;
}

.dnscheck-entry-content blockquote {
	margin: 30px 0;
	padding: 22px 24px;
	border-left: 4px solid var(--dnscheck-blue);
	border-radius: 0 16px 16px 0;
	background: #eaf2ff;
	color: #1e293b;
	font-weight: 600;
}

.dnscheck-entry-content code {
	padding: 3px 6px;
	border: 1px solid #dbeafe;
	border-radius: 7px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 0.92em;
}

.dnscheck-entry-content pre {
	overflow-x: auto;
	padding: 18px;
	border-left: 4px solid #2563eb;
	border-radius: 16px;
	background: #eaf2ff;
	color: #1e293b;
	font-size: 15px;
	line-height: 1.7;
}

.dnscheck-entry-content pre code {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
}

.dnscheck-entry-ad {
	margin: 32px auto;
}

.dnscheck-legal-page .dnscheck-legal-card > section:first-child p:not(.dnscheck-admin-current) {
	display: none;
}

.dnscheck-article-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-top: 34px;
	padding: 24px;
	border: 1px solid rgba(191, 219, 254, 0.9);
	border-radius: 20px;
	background:
		radial-gradient(circle at 90% 15%, rgba(219, 234, 254, 0.72), transparent 32%),
		linear-gradient(135deg, #ffffff, #f8fbff);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.dnscheck-article-cta h2 {
	margin: 0;
	color: #020617;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-article-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 12px;
	background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.dnscheck-article-cta__button:hover,
.dnscheck-article-cta__button:focus-visible {
	color: #ffffff;
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
	transform: translateY(-2px);
}

.dnscheck-single-faq {
	margin-top: 34px;
}

.dnscheck-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.dnscheck-related-post {
	display: grid;
	gap: 10px;
	padding: 20px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dnscheck-related-post__thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin: -6px -6px 6px;
	border-radius: 14px;
	background: #eff6ff;
}

.dnscheck-related-post__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.dnscheck-related-post:hover .dnscheck-related-post__thumb img,
.dnscheck-related-post:focus-visible .dnscheck-related-post__thumb img {
	transform: scale(1.035);
}

.dnscheck-related-post__thumb--placeholder img {
	object-position: center;
}

.dnscheck-related-post:hover,
.dnscheck-related-post:focus-visible {
	border-color: #cbd5e1;
	box-shadow: var(--dnscheck-card-shadow-hover);
	transform: translateY(-4px);
}

.dnscheck-related-post time {
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
}

.dnscheck-related-post strong {
	color: var(--dnscheck-blue);
	font-size: 16px;
	line-height: 1.35;
}

.dnscheck-error-page .dnscheck-page {
	background:
		radial-gradient(circle at 50% 10%, rgba(219, 234, 254, 0.82), transparent 34rem),
		var(--dnscheck-soft);
}

.dnscheck-error-hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0 84px;
	background:
		radial-gradient(circle at 50% 8%, rgba(191, 219, 254, 0.72), transparent 32%),
		radial-gradient(circle at 18% 70%, rgba(224, 242, 254, 0.7), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #eef7ff 58%, #f8fafc 100%);
}

.dnscheck-error-hero::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(37, 99, 235, 0.18) 1.1px, transparent 1.1px);
	background-position: left 44px top 44px;
	background-size: 20px 20px;
	content: "";
	opacity: 0.32;
	pointer-events: none;
}

.dnscheck-error-orb,
.dnscheck-error-dots {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.dnscheck-error-orb {
	border: 1px solid rgba(37, 99, 235, 0.16);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.36);
	box-shadow: 0 28px 70px rgba(37, 99, 235, 0.08);
}

.dnscheck-error-orb--left {
	left: 9%;
	top: 20%;
	width: 142px;
	height: 142px;
}

.dnscheck-error-orb--right {
	right: 10%;
	top: 17%;
	width: 96px;
	height: 96px;
}

.dnscheck-error-dots {
	right: 4%;
	bottom: 44px;
	width: 230px;
	height: 170px;
	background-image: radial-gradient(circle, rgba(37, 99, 235, 0.28) 1.2px, transparent 1.2px);
	background-size: 19px 19px;
	opacity: 0.36;
}

.dnscheck-error-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 34px;
	justify-items: center;
}

.dnscheck-error-card {
	display: grid;
	justify-items: center;
	width: min(100%, 760px);
	padding: clamp(34px, 5vw, 58px);
	border: 1px solid rgba(203, 213, 225, 0.9);
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
		radial-gradient(circle at 80% 10%, rgba(219, 234, 254, 0.8), transparent 34%);
	box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
	text-align: center;
}

.dnscheck-error-code {
	margin: 0 0 10px;
	color: var(--dnscheck-blue);
	font-size: clamp(76px, 11vw, 132px);
	line-height: 0.9;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-error-card h1 {
	margin: 0;
	color: #020617;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-error-card p:not(.dnscheck-error-code) {
	max-width: 560px;
	margin: 16px 0 0;
	color: #475569;
	font-size: 17px;
	line-height: 1.7;
	font-weight: 500;
}

.dnscheck-error-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 28px;
}

.dnscheck-error-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 20px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 800;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dnscheck-error-button--primary {
	border: 0;
	background: linear-gradient(135deg, #2563eb 0%, #1557e4 52%, #0b49cf 100%);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.32);
}

.dnscheck-error-button--secondary {
	border: 1px solid #cbd5e1;
	background: #ffffff;
	color: #0f172a;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.dnscheck-error-button:hover,
.dnscheck-error-button:focus-visible {
	transform: translateY(-2px);
}

.dnscheck-error-button--primary:hover,
.dnscheck-error-button--primary:focus-visible {
	box-shadow: 0 20px 42px rgba(37, 99, 235, 0.4);
}

.dnscheck-error-button--secondary:hover,
.dnscheck-error-button--secondary:focus-visible {
	border-color: #94a3b8;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.dnscheck-error-tools {
	width: min(100%, 980px);
}

.dnscheck-error-tools h2 {
	margin: 0 0 18px;
	color: #020617;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 800;
	text-align: center;
}

.dnscheck-error-tools__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.dnscheck-error-tool {
	display: grid;
	gap: 8px;
	min-height: 132px;
	padding: 20px;
	border: 1px solid var(--dnscheck-line);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--dnscheck-card-shadow);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dnscheck-error-tool:hover,
.dnscheck-error-tool:focus-visible {
	border-color: #cbd5e1;
	box-shadow: var(--dnscheck-card-shadow-hover);
	transform: translateY(-4px);
}

.dnscheck-error-tool strong {
	color: var(--dnscheck-blue);
	font-size: 17px;
	font-weight: 800;
}

.dnscheck-error-tool span {
	color: #64748b;
	font-size: 14px;
	line-height: 1.55;
}

body.dnscheck-error-page .dnscheck-content-main {
	display: block;
	background: transparent;
}

body.dnscheck-error-page .dnscheck-error-hero {
	display: flex;
	align-items: center;
	min-height: calc(100vh - 184px);
	padding: 76px 0 86px;
}

body.dnscheck-error-page .dnscheck-error-inner {
	display: grid;
	gap: 34px;
	justify-items: center;
	width: min(100% - 48px, 1120px);
	margin: 0 auto;
}

body.dnscheck-error-page .dnscheck-error-card {
	display: grid;
	justify-items: center;
	width: min(100%, 760px);
	padding: clamp(36px, 5vw, 62px);
	text-align: center;
}

body.dnscheck-error-page .dnscheck-error-code {
	margin: 0 0 12px;
	font-size: clamp(82px, 11vw, 140px);
	line-height: 0.88;
}

body.dnscheck-error-page .dnscheck-error-card h1 {
	margin: 0;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.08;
}

body.dnscheck-error-page .dnscheck-error-card p:not(.dnscheck-error-code) {
	margin: 18px 0 0;
}

body.dnscheck-error-page .dnscheck-error-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 30px;
}

body.dnscheck-error-page .dnscheck-error-tools {
	width: min(100%, 980px);
}

body.dnscheck-error-page .dnscheck-error-tools__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

body.dnscheck-error-page .dnscheck-error-tool {
	display: grid;
	gap: 8px;
}

.dnscheck-footer {
	border-top: 1px solid var(--dnscheck-line);
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.dnscheck-footer__inner {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) auto auto auto;
	align-items: center;
	gap: 32px;
	min-height: 96px;
}

.dnscheck-logo--footer .dnscheck-logo__mark,
.dnscheck-logo--footer .dnscheck-logo__mark > svg {
	width: 31px;
	height: 31px;
	max-width: 31px;
	max-height: 31px;
	flex-basis: 31px;
}

.dnscheck-logo--footer .dnscheck-logo__text strong {
	font-size: 23px;
}

.dnscheck-logo--footer .dnscheck-logo__text small {
	font-size: 9px;
}

.dnscheck-footer__copy {
	margin: 0;
	color: #475569;
	font-size: 13px;
	font-weight: 500;
	white-space: normal;
}

.dnscheck-footer__copy a {
	color: var(--dnscheck-blue);
	font-weight: 650;
	text-decoration: none;
}

.dnscheck-footer__copy a:hover,
.dnscheck-footer__copy a:focus-visible {
	color: var(--dnscheck-blue-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.dnscheck-footer__links,
.dnscheck-footer__socials {
	display: flex;
	align-items: center;
	gap: 24px;
}

.dnscheck-footer__links a {
	color: var(--dnscheck-blue);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.dnscheck-footer__socials {
	gap: 20px;
}

.dnscheck-footer__socials a {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	color: #94a3b8;
	transition: color 160ms ease, transform 160ms ease;
}

.dnscheck-footer__socials a > svg {
	display: block;
	width: 19px;
	height: 19px;
	max-width: 19px;
	max-height: 19px;
	flex: 0 0 19px;
}

.dnscheck-footer__links a:hover,
.dnscheck-footer__links a:focus-visible,
.dnscheck-footer__socials a:hover,
.dnscheck-footer__socials a:focus-visible {
	color: var(--dnscheck-blue);
}

.dnscheck-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1180px) {
	.dnscheck-archive-layout,
	.dnscheck-single-layout,
	.dnscheck-contact-layout,
	.dnscheck-content-layout {
		grid-template-columns: 1fr;
	}

	.dnscheck-article {
		max-width: none;
	}

	.dnscheck-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.dnscheck-sidebar__sticky {
		position: static;
	}

	.dnscheck-related-tools--grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1320px) {
	.dnscheck-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.dnscheck-article__header h1 {
		font-size: 32px;
		line-height: 1.15;
	}
}

@media (max-width: 980px) {
	.dnscheck-header {
		position: sticky;
	}

	.dnscheck-header__inner {
		flex-wrap: wrap;
		min-height: auto;
		padding: 16px 0;
	}

	.dnscheck-nav {
		order: 3;
		width: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.dnscheck-nav-list {
		justify-content: flex-start;
		min-width: max-content;
		gap: 18px;
	}

	.dnscheck-content-hero {
		padding: 56px 0 50px;
	}

	.dnscheck-tool-hero__orb,
	.dnscheck-tool-hero__dots {
		opacity: 0.34;
	}

	.dnscheck-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
		padding: 22px 0;
	}

	.dnscheck-footer__links,
	.dnscheck-footer__socials {
		justify-content: flex-start;
	}
}

@media (max-width: 760px) {
	.dnscheck-container {
		width: min(100% - 28px, 680px);
	}

	.dnscheck-logo__mark,
	.dnscheck-logo__mark > svg {
		width: 34px;
		height: 34px;
		max-width: 34px;
		max-height: 34px;
		flex-basis: 34px;
	}

	.dnscheck-logo__text strong {
		font-size: 22px;
	}

	.dnscheck-logo__text small {
		font-size: 9px;
	}

	.dnscheck-header__actions {
		margin-left: auto;
	}

	.dnscheck-content-hero h1,
	.dnscheck-article__header h1 {
		font-size: 28px;
		line-height: 1.15;
	}

	.dnscheck-content-hero p:not(.dnscheck-eyebrow) {
		font-size: 16px;
	}

	.dnscheck-content-shell,
	.dnscheck-single-shell {
		padding: 34px 0 48px;
	}

	.dnscheck-post-grid,
	.dnscheck-related-tools--grid,
	.dnscheck-related-posts__grid,
	.dnscheck-step-grid,
	.dnscheck-sidebar {
		grid-template-columns: 1fr;
	}

	.dnscheck-post-card {
		min-height: auto;
		padding: 22px;
	}

	.dnscheck-post-card__thumb {
		flex-basis: auto;
		height: auto;
		margin: -4px -4px 16px;
	}

	.dnscheck-tool-panel,
	.dnscheck-card,
	.dnscheck-article {
		padding: 22px;
		border-radius: 18px;
	}

	.dnscheck-tool-panel {
		margin-top: -28px;
	}

	.dnscheck-tool-form {
		grid-template-columns: 1fr;
		padding: 8px;
	}

	.dnscheck-tool-form button {
		width: 100%;
		height: 52px;
		font-size: 15px;
	}

	.dnscheck-tool-form input,
	.dnscheck-tool-form select {
		height: 52px;
		padding: 0 14px;
		font-size: 15px;
	}

	.dnscheck-propagation-select-wrap select {
		padding-right: 38px;
	}

	.dnscheck-propagation-record-help {
		margin-top: 10px;
		font-size: 12px;
	}

	.dnscheck-dns-summary,
	.dnscheck-dns-record-section__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.dnscheck-dns-summary {
		padding: 16px;
	}

	.dnscheck-dns-summary strong {
		font-size: 18px;
		overflow-wrap: anywhere;
	}

	.dnscheck-dns-status {
		gap: 8px;
	}

	.dnscheck-dns-status__item {
		min-height: 34px;
		padding: 6px 10px;
		font-size: 12px;
	}

	.dnscheck-dns-record-section__header {
		padding: 16px;
	}

	.dnscheck-dns-record-section__title {
		flex-wrap: wrap;
	}

	.dnscheck-copy-button--record {
		width: 100%;
	}

	.dnscheck-spf-summary {
		padding: 18px;
	}

	.dnscheck-spf-summary strong {
		font-size: 21px;
	}

	.dnscheck-spf-record-list {
		padding: 16px;
	}

	.dnscheck-spf-lookup-card {
		align-items: flex-start;
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.dnscheck-spf-lookup-card strong {
		font-size: 24px;
	}

	.dnscheck-spf-progress {
		width: 100%;
	}

	.dnscheck-spf-mechanism-row {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.dnscheck-spf-mechanism-badges {
		justify-content: flex-start;
	}

	.dnscheck-dmarc-summary {
		padding: 18px;
	}

	.dnscheck-dmarc-summary strong {
		font-size: 21px;
	}

	.dnscheck-dmarc-record-list,
	.dnscheck-dmarc-param-list,
	.dnscheck-dmarc-recommendations {
		padding: 16px;
	}

	.dnscheck-dmarc-badge {
		white-space: normal;
	}

	.dnscheck-dmarc-param-row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 12px;
	}

	.dnscheck-whois-summary {
		padding: 18px;
	}

	.dnscheck-whois-summary strong {
		font-size: 21px;
	}

	.dnscheck-whois-param-list,
	.dnscheck-whois-nameservers,
	.dnscheck-whois-recommendations {
		padding: 16px;
	}

	.dnscheck-whois-param-row {
		grid-template-columns: 1fr;
		gap: 7px;
		padding: 12px;
	}

	.dnscheck-whois-badge {
		white-space: normal;
	}

	.dnscheck-whois-raw summary {
		padding: 14px 16px;
	}

	.dnscheck-whois-raw pre {
		max-height: 300px;
		padding: 16px;
		font-size: 12px;
	}

	.dnscheck-ssl-summary {
		padding: 18px;
	}

	.dnscheck-ssl-summary strong {
		font-size: 21px;
	}

	.dnscheck-ssl-param-list,
	.dnscheck-ssl-san-list,
	.dnscheck-ssl-recommendations {
		padding: 16px;
	}

	.dnscheck-ssl-param-row {
		grid-template-columns: 1fr;
		gap: 7px;
		padding: 12px;
	}

	.dnscheck-ssl-badge {
		white-space: normal;
	}

	.dnscheck-ssl-raw summary {
		padding: 14px 16px;
	}

	.dnscheck-ssl-raw pre {
		max-height: 300px;
		padding: 16px;
		font-size: 12px;
	}

	.dnscheck-my-ip-auto-panel {
		align-items: stretch;
		flex-direction: column;
		padding: 14px;
	}

	.dnscheck-my-ip-refresh {
		width: 100%;
	}

	.dnscheck-my-ip-hero-card {
		padding: 20px;
		border-radius: 18px;
	}

	.dnscheck-my-ip-hero-card > strong {
		font-size: clamp(28px, 9vw, 42px);
	}

	.dnscheck-my-ip-param-list,
	.dnscheck-my-ip-geo-placeholder,
	.dnscheck-ip-geo-note,
	.dnscheck-my-ip-header-list,
	.dnscheck-my-ip-privacy {
		padding: 16px;
	}

	.dnscheck-my-ip-param-row,
	.dnscheck-my-ip-header-row {
		grid-template-columns: 1fr;
		gap: 7px;
		padding: 12px;
	}

	.dnscheck-my-ip-badge {
		white-space: normal;
	}

	.dnscheck-my-ip-headers summary {
		padding: 14px 16px;
	}

	.dnscheck-my-ip-header-note {
		padding: 0 16px 16px;
	}

	.dnscheck-blacklist-target {
		grid-template-columns: 1fr;
	}

	.dnscheck-blacklist-loader,
	.dnscheck-mx-loader,
	.dnscheck-ip-loader,
	.dnscheck-propagation-loader,
	.dnscheck-whois-loader,
	.dnscheck-ssl-loader {
		padding: 14px;
		border-radius: 14px;
	}

	.dnscheck-blacklist-loader__header,
	.dnscheck-mx-loader__header,
	.dnscheck-ip-loader__header,
	.dnscheck-propagation-loader__header,
	.dnscheck-whois-loader__header,
	.dnscheck-ssl-loader__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.dnscheck-mx-target,
	.dnscheck-propagation-target,
	.dnscheck-blacklist-target {
		grid-template-columns: 1fr;
	}

	.dnscheck-mx-summary,
	.dnscheck-propagation-summary,
	.dnscheck-blacklist-summary {
		padding: 18px;
	}

	.dnscheck-mx-summary strong,
	.dnscheck-propagation-summary strong,
	.dnscheck-blacklist-summary strong {
		font-size: 21px;
	}

	.dnscheck-mx-stats,
	.dnscheck-propagation-stats,
	.dnscheck-blacklist-stats {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.dnscheck-propagation-progress-card {
		padding: 16px;
	}

	.dnscheck-propagation-progress-card strong {
		font-size: 26px;
	}

	.dnscheck-propagation-table-toolbar {
		align-items: stretch;
		flex-direction: column;
		padding: 14px;
	}

	.dnscheck-propagation-actions {
		justify-content: flex-start;
	}

	.dnscheck-propagation-actions > span {
		width: 100%;
	}

	.dnscheck-propagation-actions .dnscheck-copy-button,
	.dnscheck-propagation-refresh {
		flex: 1 1 auto;
	}

	.dnscheck-propagation-filters {
		gap: 7px;
	}

	.dnscheck-propagation-filters button {
		min-height: 32px;
		padding: 7px 10px;
	}

	.dnscheck-email-header-form textarea {
		min-height: 220px;
		font-size: 12px;
	}

	.dnscheck-email-header-form__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.dnscheck-email-header-form__actions button,
	.dnscheck-email-header-form__actions a {
		width: 100%;
		text-align: center;
	}

	.dnscheck-email-grid,
	.dnscheck-email-auth-grid,
	.dnscheck-email-panels {
		grid-template-columns: 1fr;
	}

	.dnscheck-email-grid,
	.dnscheck-email-auth-grid {
		padding: 16px;
	}

	.dnscheck-email-summary {
		padding: 18px;
	}

	.dnscheck-email-summary strong {
		font-size: 21px;
	}

	.dnscheck-email-received-timeline {
		gap: 12px;
		padding: 16px;
	}

	.dnscheck-email-hop {
		padding: 14px;
		border-radius: 16px;
	}

	.dnscheck-email-hop__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.dnscheck-email-hop__fields {
		grid-template-columns: 1fr;
	}

	.dnscheck-email-hop__field {
		grid-template-columns: 1fr;
		grid-column: 1 / -1;
		padding: 10px;
	}

	.dnscheck-mx-stats .dnscheck-copy-button,
	.dnscheck-propagation-stats .dnscheck-copy-button,
	.dnscheck-blacklist-stats .dnscheck-copy-button {
		width: 100%;
	}

	.dnscheck-mx-table,
	.dnscheck-propagation-table,
	.dnscheck-blacklist-table {
		min-width: 0;
	}

	.dnscheck-mx-table thead,
	.dnscheck-propagation-table thead,
	.dnscheck-blacklist-table thead {
		display: none;
	}

	.dnscheck-mx-table tr,
	.dnscheck-propagation-table tr,
	.dnscheck-blacklist-table tr {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid #e2e8f0;
	}

	.dnscheck-mx-table tr:last-child,
	.dnscheck-propagation-table tr:last-child,
	.dnscheck-blacklist-table tr:last-child {
		border-bottom: 0;
	}

	.dnscheck-mx-table th,
	.dnscheck-mx-table td,
	.dnscheck-propagation-table th,
	.dnscheck-propagation-table td,
	.dnscheck-blacklist-table th,
	.dnscheck-blacklist-table td {
		display: block;
		width: 100%;
		padding: 5px 16px;
		border-bottom: 0;
	}

	.dnscheck-mx-table th,
	.dnscheck-propagation-table th,
	.dnscheck-blacklist-table th {
		color: #0f172a;
		font-size: 15px;
	}

	.dnscheck-mx-status,
	.dnscheck-propagation-status,
	.dnscheck-blacklist-status {
		white-space: normal;
	}

	.dnscheck-mx-table,
	.dnscheck-propagation-table {
		min-width: 940px;
	}

	.dnscheck-mx-table thead,
	.dnscheck-propagation-table thead {
		display: table-header-group;
	}

	.dnscheck-mx-table tr,
	.dnscheck-propagation-table tr {
		display: table-row;
		padding: 0;
		border-bottom: 0;
	}

	.dnscheck-mx-table th,
	.dnscheck-mx-table td,
	.dnscheck-propagation-table th,
	.dnscheck-propagation-table td {
		display: table-cell;
		width: auto;
		padding: 10px 12px;
		border-bottom: 1px solid #edf2f7;
	}

	.dnscheck-mx-table th,
	.dnscheck-propagation-table th {
		font-size: 12px;
	}

	.dnscheck-mx-host-grid {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.dnscheck-mx-recommendations,
	.dnscheck-propagation-recommendations,
	.dnscheck-blacklist-recommendations {
		padding: 16px;
	}

	.dnscheck-dkim-checker-form {
		grid-template-columns: 1fr;
	}

	.dnscheck-dkim-checker-form > button {
		margin-top: 0;
	}

	.dnscheck-back-to-top {
		right: calc(var(--dnscheck-float-right, 16px) + var(--dnscheck-report-float-width, 104px) + var(--dnscheck-float-gap, 8px));
		bottom: var(--dnscheck-float-bottom, 18px);
		flex-basis: 40px;
		width: 40px;
		height: 40px;
		min-width: 40px;
		min-height: 40px;
	}

	.dnscheck-back-to-top::before {
		font-size: 20px;
	}

	.dnscheck-back-to-top.is-near-footer {
		bottom: var(--dnscheck-float-bottom, 18px);
	}

	.dnscheck-dkim-presets {
		gap: 8px;
	}

	.dnscheck-dkim-presets button {
		flex: 1 1 100%;
		min-height: 38px;
	}

	.dnscheck-dkim-summary {
		padding: 18px;
	}

	.dnscheck-dkim-summary strong {
		font-size: 21px;
	}

	.dnscheck-dkim-record-list,
	.dnscheck-dkim-param-list {
		padding: 16px;
	}

	.dnscheck-dkim-meta-grid {
		grid-template-columns: 1fr;
	}

	.dnscheck-dkim-diagnostics__grid {
		grid-template-columns: 1fr;
	}

	.dnscheck-dkim-param-row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 12px;
	}

	.dnscheck-dns-table th,
	.dnscheck-dns-table td {
		display: block;
		width: 100%;
		padding: 10px 16px;
	}

	.dnscheck-dns-table th {
		padding-bottom: 2px;
		border-bottom: 0;
	}

	.dnscheck-dns-table td {
		padding-top: 2px;
	}

	.dnscheck-dns-value-cell {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.dnscheck-copy-button {
		justify-self: start;
		min-height: 36px;
		padding: 9px 12px;
	}

	.dnscheck-dns-interpretation ul {
		grid-template-columns: 1fr;
	}

	.dnscheck-dns-interpretation li {
		flex-direction: column;
		gap: 4px;
	}

	.dnscheck-dns-value--code {
		font-size: 12px;
	}

	.dnscheck-dmarc-param-code {
		font-size: 12px;
		line-height: 1.6;
	}

	.dnscheck-dmarc-record-code {
		max-height: 150px;
	}

	.dnscheck-dkim-record-code {
		max-height: 180px;
	}

	.dnscheck-dkim-param-code {
		max-height: 140px;
		font-size: 12px;
		line-height: 1.6;
	}

	.dnscheck-dkim-param-code--public-key {
		max-height: 170px;
	}

	.dnscheck-entry-content {
		font-size: 17px;
	}

	.dnscheck-entry-content h2 {
		font-size: 25px;
	}

	.dnscheck-entry-content h3 {
		font-size: 21px;
	}

	.dnscheck-article-cta {
		align-items: stretch;
		flex-direction: column;
		padding: 22px;
	}

	.dnscheck-article-cta__button {
		width: 100%;
	}

	.dnscheck-error-hero {
		padding: 48px 0 56px;
	}

	.dnscheck-error-actions {
		width: 100%;
	}

	.dnscheck-error-button {
		width: 100%;
	}

	.dnscheck-error-tools__grid {
		grid-template-columns: 1fr;
	}

	body.dnscheck-error-page .dnscheck-error-hero {
		min-height: auto;
		padding: 48px 0 56px;
	}

	body.dnscheck-error-page .dnscheck-error-inner {
		width: min(100% - 28px, 680px);
	}

	body.dnscheck-error-page .dnscheck-error-tools__grid {
		grid-template-columns: 1fr;
	}

	.dnscheck-ad-slot,
	.dnscheck-ad-slot--300x250,
	.dnscheck-ad-slot--300x600,
	.dnscheck-ad-slot--728x90,
	.dnscheck-ad-slot--responsive {
		width: 100%;
		max-width: none;
		min-height: 150px;
	}

	.dnscheck-footer__inner {
		grid-template-columns: 1fr;
	}

	.dnscheck-footer__copy {
		white-space: normal;
	}

	.dnscheck-footer__links {
		flex-wrap: wrap;
		gap: 12px 20px;
	}
}

@media (max-width: 440px) {
	.dnscheck-container {
		width: min(100% - 22px, 420px);
	}

	.dnscheck-logo__mark,
	.dnscheck-logo__mark > svg {
		width: 30px;
		height: 30px;
		max-width: 30px;
		max-height: 30px;
		flex-basis: 30px;
	}

	.dnscheck-logo__text strong {
		font-size: 19px;
	}

	.dnscheck-icon-button {
		width: 34px;
		height: 34px;
	}

	.dnscheck-lang {
		min-width: 58px;
		height: 34px;
		padding: 0 10px;
	}

	.dnscheck-post-card,
	.dnscheck-sidebar-card,
	.dnscheck-related-tool,
	.dnscheck-related-post,
	.dnscheck-step-card,
	.dnscheck-error-tool {
		border-radius: 16px;
	}
}

@media (min-width: 761px) and (max-width: 980px) {
	.dnscheck-error-tools__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.dnscheck-error-page .dnscheck-error-tools__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
