/* =========================================================================
   DishyKit Design System
   ========================================================================= */
:root {
	--dk-dark: #1A1D20;
	--dk-dark-2: #22272c;
	--dk-blue: #0066FF;
	--dk-blue-dark: #0052cc;
	--dk-orange: #FF6B00;
	--dk-orange-dark: #e05f00;
	--dk-bg: #F8F9FA;
	--dk-text: #212529;
	--dk-muted: #6b7480;
	--dk-border: #e4e8ec;
	--dk-white: #ffffff;
	--dk-radius: 12px;
	--dk-shadow: 0 6px 24px rgba(26, 29, 32, 0.08);
	--dk-shadow-lg: 0 14px 40px rgba(26, 29, 32, 0.14);
	--dk-font-head: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--dk-font-body: "Open Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Base ----------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
	margin: 0;
	font-family: var(--dk-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--dk-text);
	background: var(--dk-bg);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--dk-blue); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--dk-blue-dark); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--dk-font-head);
	font-weight: 800;
	line-height: 1.25;
	color: var(--dk-dark);
	margin: 0 0 0.6em;
}

.dk-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 22px;
}

.dk-main { min-height: 55vh; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 9999;
	width: auto; height: auto; clip: auto;
	background: var(--dk-white); padding: 10px 16px; border-radius: 8px;
	box-shadow: var(--dk-shadow-lg);
}

/* Buttons --------------------------------------------------------------- */
.dk-btn {
	display: inline-block;
	font-family: var(--dk-font-head);
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	padding: 14px 24px;
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
	text-align: center;
}
.dk-btn:active { transform: translateY(1px); }
.dk-btn--lg { padding: 17px 30px; font-size: 16px; }

.dk-btn--orange {
	background: var(--dk-orange);
	color: #fff;
	box-shadow: 0 6px 18px rgba(255, 107, 0, 0.32);
}
.dk-btn--orange:hover { background: var(--dk-orange-dark); color: #fff; box-shadow: 0 8px 22px rgba(255, 107, 0, 0.42); }

.dk-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}
.dk-btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.08); }

.dk-btn--outline {
	background: transparent;
	color: var(--dk-dark);
	border-color: var(--dk-dark);
}
.dk-btn--outline:hover { background: var(--dk-dark); color: #fff; }

/* Header ---------------------------------------------------------------- */
.dk-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--dk-dark);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.dk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 68px;
}

.dk-brand__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.dk-brand__name {
	font-family: var(--dk-font-head);
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.4px;
}
.dk-brand__icon { display: block; }

/* Nav */
.dk-nav__list-wrap { display: flex; }
.dk-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.dk-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--dk-font-head);
	font-weight: 600;
	font-size: 14.5px;
	color: #d6dbe0;
	padding: 12px 14px;
	border-radius: 8px;
	white-space: nowrap;
}
.dk-nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.dk-nav__caret { opacity: 0.7; transition: transform 0.2s ease; }

.dk-nav__item { position: relative; }
.dk-nav__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 250px;
	background: #fff;
	border-radius: 10px;
	box-shadow: var(--dk-shadow-lg);
	padding: 8px;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 110;
}
.dk-nav__item.has-children:hover > .dk-nav__dropdown,
.dk-nav__item.has-children:focus-within > .dk-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dk-nav__item.has-children:hover .dk-nav__caret { transform: rotate(180deg); }
.dk-nav__dropdown a {
	display: block;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dk-text);
	border-radius: 7px;
}
.dk-nav__dropdown a:hover { background: var(--dk-bg); color: var(--dk-blue); }

.dk-nav__toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px;
	flex-direction: column;
	gap: 5px;
}
.dk-nav__toggle-bar {
	display: block;
	width: 24px; height: 2.5px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.dk-nav__toggle[aria-expanded="true"] .dk-nav__toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.dk-nav__toggle[aria-expanded="true"] .dk-nav__toggle-bar:nth-child(2) { opacity: 0; }
.dk-nav__toggle[aria-expanded="true"] .dk-nav__toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------ */
.dk-hero {
	background:
		radial-gradient(900px 420px at 85% -10%, rgba(0, 102, 255, 0.22), transparent 60%),
		radial-gradient(700px 380px at 10% 110%, rgba(255, 107, 0, 0.12), transparent 60%),
		var(--dk-dark);
	color: #fff;
	padding: 84px 0 76px;
}
.dk-hero__inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 48px;
	align-items: center;
}
.dk-hero__eyebrow {
	font-family: var(--dk-font-head);
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #9fb6d8;
	margin: 0 0 14px;
}
.dk-hero__title {
	color: #fff;
	font-size: clamp(34px, 5vw, 52px);
	letter-spacing: -1px;
	margin-bottom: 18px;
}
.dk-hero__sub {
	font-size: 18px;
	color: #b9c2cb;
	max-width: 560px;
	margin: 0 0 30px;
}
.dk-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.dk-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	list-style: none;
	margin: 34px 0 0;
	padding: 0;
}
.dk-hero__trust li {
	font-family: var(--dk-font-head);
	font-size: 13.5px;
	font-weight: 600;
	color: #9fb6d8;
	display: flex;
	align-items: center;
	gap: 8px;
}
.dk-hero__trust li::before {
	content: "";
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--dk-orange);
	flex: 0 0 auto;
}
.dk-hero__art { filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5)); }

/* Sections ---------------------------------------------------------------- */
.dk-section { padding: 72px 0; }
.dk-section--alt { background: #eef1f4; }
.dk-section__title {
	font-size: clamp(26px, 3.4vw, 36px);
	letter-spacing: -0.5px;
	margin-bottom: 10px;
}
.dk-section__sub { color: var(--dk-muted); font-size: 17px; margin: 0 0 40px; max-width: 640px; }
.dk-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.dk-section__head .dk-section__title,
.dk-section__head .dk-section__sub { margin-bottom: 0; }
.dk-section__head .dk-section__sub { margin-top: 6px; }

/* Model matrix ------------------------------------------------------------ */
.dk-model-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.dk-model-card {
	background: var(--dk-white);
	border: 1px solid var(--dk-border);
	border-radius: 16px;
	overflow: hidden;
	color: var(--dk-text);
	box-shadow: var(--dk-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	display: flex;
	flex-direction: column;
}
.dk-model-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--dk-shadow-lg);
	border-color: var(--dk-blue);
	color: var(--dk-text);
}
.dk-model-card__media {
	position: relative;
	display: block;
	height: 230px;
	background: linear-gradient(180deg, #f6f8fb 0%, #e7edf5 100%);
	border-bottom: 1px solid var(--dk-border);
}
.dk-model-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 24px;
	transition: transform 0.25s ease;
}
.dk-model-card:hover .dk-model-card__media img { transform: scale(1.06); }
.dk-model-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	font-family: var(--dk-font-head);
	font-weight: 700;
	font-size: 11.5px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: var(--dk-orange);
	color: #fff;
	padding: 5px 12px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}
.dk-model-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 24px 24px;
}
.dk-model-card__body h3 { font-size: 20px; margin: 0 0 8px; }
.dk-model-card__body p { color: var(--dk-muted); font-size: 14.5px; margin: 0 0 16px; flex: 1; }
.dk-model-card__cta {
	font-family: var(--dk-font-head);
	font-weight: 700;
	font-size: 14px;
	color: var(--dk-blue);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.dk-model-card:hover .dk-model-card__cta { text-decoration: underline; }

/* Use-case hub ------------------------------------------------------------- */
.dk-usecase-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.dk-usecase-card {
	background: var(--dk-dark);
	border-radius: var(--dk-radius);
	padding: 28px 24px;
	color: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: block;
	overflow: hidden;
	position: relative;
}
.dk-usecase-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(0, 102, 255, 0.18), transparent 55%);
	pointer-events: none;
}
.dk-usecase-card:hover { transform: translateY(-5px); box-shadow: var(--dk-shadow-lg); color: #fff; }
.dk-usecase-card__icon { color: var(--dk-orange); margin-bottom: 14px; }
.dk-usecase-card h3 { color: #fff; font-size: 18px; position: relative; z-index: 1; }
.dk-usecase-card p { color: #aeb7c0; font-size: 13.5px; margin: 0 0 12px; position: relative; z-index: 1; }
.dk-usecase-card__cta {
	font-family: var(--dk-font-head);
	font-weight: 700;
	font-size: 13.5px;
	color: #fff;
	position: relative;
	z-index: 1;
}

/* Guide cards -------------------------------------------------------------- */
.dk-guides-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.dk-guide-card {
	background: var(--dk-white);
	border: 1px solid var(--dk-border);
	border-radius: var(--dk-radius);
	overflow: hidden;
	box-shadow: var(--dk-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}
.dk-guide-card:hover { transform: translateY(-4px); box-shadow: var(--dk-shadow-lg); }
.dk-guide-card__thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--dk-dark-2);
}
.dk-guide-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.dk-guide-card:hover .dk-guide-card__thumb img { transform: scale(1.045); }
.dk-guide-card__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	color: rgba(255, 255, 255, 0.35);
	background:
		radial-gradient(400px 200px at 80% 0%, rgba(0, 102, 255, 0.25), transparent 65%),
		var(--dk-dark-2);
}
.dk-guide-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dk-guide-card__tag {
	align-self: flex-start;
	font-family: var(--dk-font-head);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--dk-orange);
	background: rgba(255, 107, 0, 0.1);
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.dk-guide-card__title { font-size: 18px; margin-bottom: 8px; }
.dk-guide-card__title a { color: var(--dk-dark); }
.dk-guide-card__title a:hover { color: var(--dk-blue); }
.dk-guide-card__excerpt { color: var(--dk-muted); font-size: 14px; margin: 0 0 16px; flex: 1; }
.dk-guide-card__read {
	font-family: var(--dk-font-head);
	font-weight: 700;
	font-size: 14px;
	color: var(--dk-blue);
}
.dk-guide-card__foot { display: flex; align-items: center; justify-content: space-between; }
.dk-guide-card__date { font-size: 12.5px; color: var(--dk-muted); }
.dk-guide-card--placeholder { opacity: 0.75; }

/* Compatibility table -------------------------------------------------------- */
.dk-table-wrap {
	background: var(--dk-white);
	border: 1px solid var(--dk-border);
	border-radius: var(--dk-radius);
	box-shadow: var(--dk-shadow);
	overflow-x: auto;
}
.dk-compat-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 560px;
	font-size: 14.5px;
}
.dk-compat-table th, .dk-compat-table td {
	padding: 15px 20px;
	text-align: left;
	border-bottom: 1px solid var(--dk-border);
}
.dk-compat-table thead th {
	font-family: var(--dk-font-head);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	background: var(--dk-dark);
	color: #fff;
}
.dk-compat-table tbody tr:last-child td { border-bottom: 0; }
.dk-compat-table tbody tr:hover { background: #f2f6fb; }
.dk-compat-table .ok { color: #0c8a3e; font-weight: 700; }
.dk-compat-table .warn { color: #c07800; font-weight: 700; }
.dk-compat-table .no { color: #a4adb6; font-weight: 600; }
.dk-compat-note { font-size: 13.5px; color: var(--dk-muted); margin-top: 14px; }
.dk-compat-note .ok { color: #0c8a3e; font-weight: 700; }
.dk-compat-note .warn { color: #c07800; font-weight: 700; }
.dk-compat-note .no { color: #a4adb6; font-weight: 600; }

/* Review single ---------------------------------------------------------------- */
.dk-review-notice {
	background: var(--dk-orange);
	color: #fff;
	font-family: var(--dk-font-head);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4px;
	padding: 9px 0;
	position: sticky;
	top: 68px;
	z-index: 90;
	text-align: center;
}

.dk-single__hero {
	background:
		radial-gradient(800px 340px at 90% -20%, rgba(0, 102, 255, 0.2), transparent 60%),
		var(--dk-dark);
	color: #fff;
	padding: 58px 0 46px;
}
.dk-single__hero-inner { max-width: 780px; margin-left: 0; }
.dk-single__hero .dk-guide-card__tag { margin-bottom: 14px; }
.dk-single__title { color: #fff; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.6px; margin-bottom: 16px; }
.dk-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 13.5px;
	color: #aeb7c0;
}
.dk-single__meta span { display: inline-flex; align-items: center; gap: 7px; }
.dk-single__meta svg { opacity: 0.8; }

.dk-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 44px;
	padding-top: 48px;
	padding-bottom: 72px;
	align-items: start;
}

.dk-single__thumb { margin: 0 0 28px; }
.dk-single__thumb img { border-radius: var(--dk-radius); box-shadow: var(--dk-shadow); }

/* Entry content ---------------------------------------------------------------- */
.dk-entry-content { font-size: 16.5px; }
.dk-entry-content > * { margin-bottom: 1.15em; }
.dk-entry-content h2 {
	font-size: 26px;
	margin-top: 1.8em;
	padding-top: 0.2em;
	scroll-margin-top: 130px;
}
.dk-entry-content h3 { font-size: 21px; margin-top: 1.5em; scroll-margin-top: 130px; }
.dk-entry-content ul, .dk-entry-content ol { padding-left: 1.4em; }
.dk-entry-content li { margin-bottom: 0.4em; }
.dk-entry-content blockquote {
	margin: 1.5em 0;
	padding: 16px 22px;
	border-left: 4px solid var(--dk-blue);
	background: #eef4ff;
	border-radius: 0 10px 10px 0;
	color: #33404e;
}
.dk-entry-content img { border-radius: 10px; }
.wp-caption-text, figcaption { font-size: 13px; color: var(--dk-muted); }

/* Summary table shortcode ------------------------------------------------------- */
.dk-summary-table-wrap {
	background: var(--dk-white);
	border: 1px solid var(--dk-border);
	border-radius: var(--dk-radius);
	box-shadow: var(--dk-shadow-lg);
	overflow-x: auto;
	margin: 26px 0 34px;
	padding: 6px;
}
.dk-summary-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
.dk-summary-table thead th {
	font-family: var(--dk-font-head);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	color: var(--dk-muted);
	padding: 12px 14px;
	border-bottom: 2px solid var(--dk-dark);
	text-align: left;
}
.dk-summary-table td { padding: 16px 14px; border-bottom: 1px solid var(--dk-border); vertical-align: middle; }
.dk-summary-table tr:last-child td { border-bottom: 0; }
.dk-st__img img { max-width: 110px; border-radius: 8px; }
.dk-st__title { font-family: var(--dk-font-head); font-weight: 700; font-size: 15px; color: var(--dk-dark); min-width: 160px; }
.dk-st__features ul { list-style: none; margin: 0; padding: 0; }
.dk-st__features li { padding-left: 18px; position: relative; margin-bottom: 4px; color: #3a434d; }
.dk-st__features li::before {
	content: "";
	position: absolute; left: 0; top: 0.55em;
	width: 8px; height: 8px;
	border-radius: 2px;
	background: var(--dk-blue);
}

/* Sidebar widgets ----------------------------------------------------------------- */
.dk-single__sidebar {
	position: sticky;
	top: 130px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.dk-widget {
	background: var(--dk-white);
	border: 1px solid var(--dk-border);
	border-radius: var(--dk-radius);
	padding: 22px;
	box-shadow: var(--dk-shadow);
}
.dk-widget__title {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--dk-dark);
}

/* TOC */
.dk-toc ul { list-style: none; margin: 0; padding: 0; }
.dk-toc .dk-toc__h2 { margin: 0; }
.dk-toc .dk-toc__h3 { margin: 0; }
.dk-toc .dk-toc__h3 a { padding-left: 16px; }
.dk-toc a {
	display: block;
	padding: 6px 8px;
	font-size: 13.5px;
	font-weight: 600;
	color: #4a5560;
	border-radius: 7px;
	border-left: 3px solid transparent;
}
.dk-toc a:hover { background: var(--dk-bg); color: var(--dk-blue); }
.dk-toc a.is-active {
	color: var(--dk-blue);
	background: #eef4ff;
	border-left-color: var(--dk-blue);
}

/* Checklist */
.dk-checklist { list-style: none; margin: 0; padding: 0; }
.dk-checklist li { margin-bottom: 10px; }
.dk-checklist label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	cursor: pointer;
	color: #3a434d;
}
.dk-checklist input[type="checkbox"] {
	margin-top: 3px;
	accent-color: var(--dk-orange);
	width: 16px; height: 16px;
	flex: 0 0 auto;
}
.dk-checklist__note { font-size: 12.5px; color: var(--dk-muted); margin: 14px 0 0; }

/* Page hero / listing -------------------------------------------------------------- */
.dk-page-hero {
	background:
		radial-gradient(700px 300px at 85% -30%, rgba(0, 102, 255, 0.2), transparent 60%),
		var(--dk-dark);
	color: #fff;
	padding: 46px 0;
}
.dk-page-hero__title { color: #fff; font-size: clamp(26px, 3.6vw, 36px); margin: 0; }
.dk-page-hero--legal { padding: 40px 0; }

.dk-listing { padding: 52px 22px 72px; }
.dk-guides-grid--listing { margin-top: 0; }

.dk-pagination { margin-top: 44px; }
.dk-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.dk-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px;
	padding: 0 12px;
	background: var(--dk-white);
	border: 1px solid var(--dk-border);
	border-radius: 9px;
	font-family: var(--dk-font-head);
	font-weight: 700;
	font-size: 14px;
	color: var(--dk-dark);
}
.dk-pagination .page-numbers.current { background: var(--dk-dark); color: #fff; border-color: var(--dk-dark); }
.dk-pagination .page-numbers:hover:not(.current) { border-color: var(--dk-blue); color: var(--dk-blue); }

.dk-empty { text-align: center; padding: 90px 22px; }
.dk-empty h1, .dk-empty h2 { font-size: 30px; }
.dk-empty p { color: var(--dk-muted); max-width: 460px; margin: 0 auto 26px; }
.dk-404-code { font-family: var(--dk-font-head); font-size: 84px; font-weight: 800; color: var(--dk-blue); margin: 0; line-height: 1; }
.dk-empty .search-form { margin-top: 28px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Legal page ------------------------------------------------------------------------ */
.dk-page-content { padding: 52px 22px 80px; }
.dk-legal { max-width: 800px; margin: 0 auto; background: var(--dk-white); border: 1px solid var(--dk-border); border-radius: var(--dk-radius); padding: 42px 46px; box-shadow: var(--dk-shadow); }

/* Footer ------------------------------------------------------------------------------ */
.dk-footer { background: var(--dk-dark); color: #aeb7c0; }

.dk-disclaimer-banner {
	background: #141619;
	border-top: 3px solid var(--dk-orange);
	padding: 34px 0;
	font-size: 13px;
	line-height: 1.75;
	color: #8a929b;
}
.dk-disclaimer-banner__title {
	display: flex; align-items: center; gap: 10px;
	color: #fff;
	font-size: 16px;
	margin-bottom: 14px;
}
.dk-disclaimer-banner p { margin: 0 0 10px; }
.dk-disclaimer-banner p:last-child { margin-bottom: 0; }
.dk-disclaimer-banner strong { color: #cfd5da; }

.dk-footer__columns {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 44px;
	padding-top: 52px;
	padding-bottom: 44px;
}
.dk-footer__heading {
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 18px;
}
.dk-footer__about-text { font-size: 14px; margin-bottom: 18px; }
.dk-footer__brand { font-size: 13px; color: #6b7480; }
.dk-footer__links { list-style: none; margin: 0; padding: 0; }
.dk-footer__links li { margin-bottom: 10px; }
.dk-footer__links a { color: #aeb7c0; font-size: 14px; }
.dk-footer__links a:hover { color: #fff; }

.dk-footer__bottom {
	border-top: 1px solid #2b3036;
	padding: 18px 0;
	font-size: 12.5px;
	color: #6b7480;
}
.dk-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

/* Responsive ----------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.dk-hero__inner { grid-template-columns: 1fr; }
	.dk-hero__art { max-width: 460px; }
	.dk-usecase-grid { grid-template-columns: repeat(2, 1fr); }
	.dk-guides-grid { grid-template-columns: repeat(2, 1fr); }
	.dk-single__layout { grid-template-columns: 1fr; }
	.dk-single__sidebar { position: static; }
	.dk-review-notice { position: static; }
	.dk-footer__columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.dk-nav__toggle { display: flex; }
	.dk-nav { width: 100%; }
	.dk-header__inner { flex-wrap: wrap; }
	.dk-nav__list-wrap {
		display: none;
		width: 100%;
		flex-basis: 100%;
		padding-bottom: 14px;
	}
	.dk-nav__list-wrap.is-open { display: block; }
	.dk-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.dk-nav__link { width: 100%; justify-content: space-between; }
	.dk-nav__dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.05);
		margin: 2px 0 6px;
		display: none;
	}
	.dk-nav__item.is-open > .dk-nav__dropdown { display: block; }
	.dk-nav__dropdown a { color: #d6dbe0; padding-left: 26px; }

	.dk-model-grid { grid-template-columns: 1fr; }
	.dk-usecase-grid { grid-template-columns: 1fr; }
	.dk-guides-grid { grid-template-columns: 1fr; }
	.dk-footer__columns { grid-template-columns: 1fr; gap: 30px; }
	.dk-hero { padding: 56px 0 52px; }
	.dk-section { padding: 52px 0; }
	.dk-legal { padding: 28px 22px; }
}
