:root {
	--dd-red: #c02329;
	--dd-red-dark: #8f1820;
	--dd-navy: #13253f;
	--dd-blue: #245f9f;
	--dd-green: #1b7a57;
	--dd-gold: #f2b84b;
	--dd-ink: #1b2430;
	--dd-muted: #5f6b7a;
	--dd-line: #dfe5ec;
	--dd-bg: #f5f7fa;
	--dd-soft: #fff6e4;
	--dd-white: #fff;
	--dd-radius: 8px;
	--dd-shadow: 0 12px 30px rgba(19, 37, 63, .12);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--dd-bg);
	color: var(--dd-ink);
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--dd-blue);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--dd-red);
}

button,
input,
textarea,
select {
	font: inherit;
}

.dd-container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

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

.skip-link:focus {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--dd-navy);
	color: var(--dd-white);
	clip: auto;
	border-radius: var(--dd-radius);
}

.dd-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--dd-white);
	box-shadow: 0 1px 0 var(--dd-line);
}

.dd-topbar {
	background: var(--dd-navy);
	color: rgba(255, 255, 255, .92);
	font-size: 13px;
}

.dd-topbar__inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-block: 7px;
}

.dd-header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 14px;
}

.dd-brand img {
	width: min(280px, 62vw);
	height: auto;
}

.dd-header-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.dd-search-form {
	display: flex;
	align-items: center;
	width: min(420px, 100%);
	border: 1px solid var(--dd-line);
	background: var(--dd-white);
	border-radius: var(--dd-radius);
	overflow: hidden;
}

.dd-search-form label {
	flex: 1;
	min-width: 0;
}

.dd-search-form input {
	width: 100%;
	border: 0;
	outline: 0;
	padding: 11px 12px;
	color: var(--dd-ink);
	background: transparent;
}

.dd-search-form button {
	border: 0;
	background: var(--dd-red);
	color: var(--dd-white);
	padding: 11px 15px;
	cursor: pointer;
	font-weight: 700;
	white-space: nowrap;
}

.dd-hotline {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: var(--dd-radius);
	background: var(--dd-soft);
	color: var(--dd-red-dark);
	font-weight: 800;
	white-space: nowrap;
}

.dd-menu-toggle {
	display: none;
	width: 44px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--dd-line);
	border-radius: var(--dd-radius);
	background: var(--dd-white);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.dd-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--dd-navy);
}

.dd-main-nav {
	background: var(--dd-red);
}

.dd-main-nav ul {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dd-main-nav li {
	position: relative;
}

.dd-main-nav a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 15px;
	color: var(--dd-white);
	font-weight: 700;
	font-size: 14px;
}

.dd-main-nav a:hover,
.dd-main-nav a:focus {
	background: rgba(255, 255, 255, .14);
	color: var(--dd-white);
}

.dd-main-nav .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	display: none;
	width: 230px;
	padding: 8px;
	background: var(--dd-white);
	border: 1px solid var(--dd-line);
	box-shadow: var(--dd-shadow);
	border-radius: 0 0 var(--dd-radius) var(--dd-radius);
}

.dd-main-nav li:hover > .sub-menu,
.dd-main-nav li:focus-within > .sub-menu {
	display: block;
}

.dd-main-nav .sub-menu a {
	min-height: 40px;
	padding: 8px 10px;
	color: var(--dd-ink);
	border-radius: 6px;
}

.dd-main-nav .sub-menu a:hover,
.dd-main-nav .sub-menu a:focus {
	background: var(--dd-bg);
	color: var(--dd-red);
}

.dd-breadcrumb {
	width: min(1180px, calc(100% - 32px));
	margin: 18px auto 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--dd-muted);
	font-size: 14px;
}

.dd-breadcrumb a::after {
	content: "/";
	margin-left: 8px;
	color: var(--dd-muted);
}

.dd-hero {
	position: relative;
	min-height: 560px;
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--dd-navy);
	color: var(--dd-white);
}

.dd-hero__image,
.dd-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.dd-hero__image {
	object-fit: cover;
}

.dd-hero__shade {
	background: rgba(12, 22, 37, .62);
}

.dd-hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 34px;
	align-items: center;
	padding-block: 72px;
}

.dd-kicker,
.dd-section-title p,
.dd-archive-head p,
.dd-category-head p {
	margin: 0 0 8px;
	color: var(--dd-red);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
}

.dd-hero .dd-kicker {
	color: var(--dd-gold);
}

.dd-hero h1,
.dd-entry-header h1,
.dd-archive-head h1,
.dd-category-head h1,
.dd-error-panel h1 {
	margin: 0;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1.08;
	letter-spacing: 0;
}

.dd-hero p {
	max-width: 680px;
	margin: 18px 0 0;
	font-size: 19px;
	color: rgba(255, 255, 255, .9);
}

.dd-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.dd-button,
.dd-link-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: var(--dd-radius);
	background: var(--dd-red);
	color: var(--dd-white);
	font-weight: 800;
	border: 1px solid transparent;
}

.dd-button:hover,
.dd-button:focus,
.dd-link-more:hover,
.dd-link-more:focus {
	background: var(--dd-red-dark);
	color: var(--dd-white);
}

.dd-button--light {
	background: var(--dd-white);
	color: var(--dd-navy);
}

.dd-button--light:hover,
.dd-button--light:focus {
	background: var(--dd-gold);
	color: var(--dd-navy);
}

.dd-button--border {
	border-color: var(--dd-line);
}

.dd-hero__panel {
	background: rgba(255, 255, 255, .95);
	color: var(--dd-ink);
	border-radius: var(--dd-radius);
	padding: 24px;
	box-shadow: var(--dd-shadow);
}

.dd-hero__panel > span,
.dd-hero__panel > em {
	display: block;
	color: var(--dd-muted);
	font-style: normal;
}

.dd-hero__panel > strong {
	display: block;
	margin-block: 2px;
	color: var(--dd-red);
	font-size: 64px;
	line-height: 1;
}

.dd-hero__panel ul {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--dd-line);
}

.dd-hero__panel li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding-block: 12px;
	border-bottom: 1px solid var(--dd-line);
}

.dd-section {
	padding-block: 58px;
}

.dd-section--flush {
	padding-block: 0;
}

.dd-section--soft {
	background: var(--dd-white);
}

.dd-front-page {
	padding-block: 34px 62px;
}

.dd-front-page .dd-entry {
	padding: 0;
	overflow: hidden;
}

.dd-front-page .dd-entry-content {
	padding: clamp(22px, 4vw, 36px);
}

.dd-home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
	gap: 28px;
	align-items: center;
	margin: calc(clamp(22px, 4vw, 36px) * -1) calc(clamp(22px, 4vw, 36px) * -1) 30px;
	padding: clamp(26px, 5vw, 56px);
	background: var(--dd-navy);
	color: var(--dd-white);
}

.dd-home-hero h1 {
	margin: 0;
	max-width: 720px;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1.08;
	color: var(--dd-white);
	letter-spacing: 0;
}

.dd-home-hero p {
	max-width: 680px;
	color: rgba(255, 255, 255, .9);
}

.dd-home-hero .dd-kicker {
	color: var(--dd-gold);
}

.dd-home-hero figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--dd-radius);
	box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}

.dd-home-hero img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.dd-home-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 30px;
}

.dd-home-metrics div {
	min-height: 116px;
	padding: 18px;
	border: 1px solid var(--dd-line);
	border-top: 4px solid var(--dd-gold);
	border-radius: var(--dd-radius);
	background: var(--dd-white);
	box-shadow: 0 8px 20px rgba(19, 37, 63, .08);
}

.dd-home-metrics div:nth-child(2) {
	border-top-color: var(--dd-blue);
}

.dd-home-metrics div:nth-child(3) {
	border-top-color: var(--dd-green);
}

.dd-home-metrics span,
.dd-home-metrics em {
	display: block;
	color: var(--dd-muted);
	font-style: normal;
	font-size: 14px;
}

.dd-home-metrics strong {
	display: block;
	margin: 4px 0;
	color: var(--dd-navy);
	font-size: 32px;
	line-height: 1.1;
}

.dd-home-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 26px 0 30px;
}

.dd-home-grid a {
	display: block;
	overflow: hidden;
	border: 1px solid var(--dd-line);
	border-radius: var(--dd-radius);
	background: var(--dd-white);
	color: var(--dd-ink);
}

.dd-home-grid img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.dd-home-grid strong,
.dd-home-grid span {
	display: block;
	padding-inline: 16px;
}

.dd-home-grid strong {
	padding-top: 14px;
	color: var(--dd-navy);
	font-size: 18px;
	line-height: 1.25;
}

.dd-home-grid span {
	padding-bottom: 16px;
	color: var(--dd-muted);
	font-size: 14px;
}

.dd-metric-grid {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: -44px;
}

.dd-metric {
	min-height: 124px;
	padding: 20px;
	border-radius: var(--dd-radius);
	background: var(--dd-white);
	box-shadow: var(--dd-shadow);
	border-top: 4px solid var(--dd-gold);
}

.dd-metric:nth-child(2) {
	border-top-color: var(--dd-blue);
}

.dd-metric:nth-child(3) {
	border-top-color: var(--dd-green);
}

.dd-metric span,
.dd-metric em {
	display: block;
	color: var(--dd-muted);
	font-style: normal;
}

.dd-metric strong {
	display: block;
	margin-block: 4px;
	font-size: 34px;
	color: var(--dd-navy);
	line-height: 1.1;
}

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

.dd-layout {
	padding-block: 34px 62px;
}

.dd-layout--page {
	grid-template-columns: minmax(0, 780px) 330px;
	justify-content: space-between;
}

.dd-content-stack {
	min-width: 0;
}

.dd-front-main,
.dd-front-panel,
.dd-entry,
.dd-archive-head,
.dd-category-head,
.dd-empty,
.dd-error-panel,
.dd-widget {
	background: var(--dd-white);
	border: 1px solid var(--dd-line);
	border-radius: var(--dd-radius);
}

.dd-front-main,
.dd-front-panel,
.dd-entry,
.dd-archive-head,
.dd-empty,
.dd-error-panel {
	padding: clamp(22px, 4vw, 34px);
}

.dd-front-panel {
	position: sticky;
	top: 156px;
}

.dd-front-panel h2 {
	margin: 0 0 18px;
	font-size: 24px;
	line-height: 1.2;
}

.dd-schedule-table {
	display: grid;
	gap: 8px;
}

.dd-schedule-row {
	display: grid;
	grid-template-columns: 86px repeat(3, minmax(0, 1fr));
	gap: 8px;
	padding: 10px;
	border-radius: var(--dd-radius);
	background: var(--dd-bg);
	font-size: 14px;
}

.dd-schedule-row--head {
	background: var(--dd-navy);
	color: var(--dd-white);
	font-weight: 800;
}

.dd-section-title {
	margin-bottom: 24px;
}

.dd-section-title h2 {
	margin: 0;
	color: var(--dd-navy);
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.15;
}

.dd-section-title--inline {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 18px;
}

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

.dd-category-card {
	position: relative;
	min-height: 210px;
	overflow: hidden;
	border-radius: var(--dd-radius);
	background: var(--dd-navy);
	color: var(--dd-white);
}

.dd-category-card img {
	width: 100%;
	height: 100%;
	min-height: 210px;
	object-fit: cover;
	opacity: .72;
	transition: transform .24s ease, opacity .24s ease;
}

.dd-category-card:hover img,
.dd-category-card:focus img {
	transform: scale(1.04);
	opacity: .58;
}

.dd-category-card span {
	position: absolute;
	inset: auto 0 0;
	padding: 18px;
	background: rgba(19, 37, 63, .82);
}

.dd-category-card strong,
.dd-category-card em {
	display: block;
	color: var(--dd-white);
}

.dd-category-card strong {
	font-size: 18px;
	line-height: 1.2;
}

.dd-category-card em {
	margin-top: 6px;
	font-size: 13px;
	font-style: normal;
	color: rgba(255, 255, 255, .82);
}

.dd-card-grid {
	display: grid;
	gap: 20px;
}

.dd-card-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dd-card-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dd-card {
	background: var(--dd-white);
	border: 1px solid var(--dd-line);
	border-radius: var(--dd-radius);
	overflow: hidden;
	min-width: 0;
}

.dd-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--dd-bg);
	overflow: hidden;
}

.dd-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .22s ease;
}

.dd-card:hover .dd-card__media img,
.dd-card:focus-within .dd-card__media img {
	transform: scale(1.03);
}

.dd-card__body {
	padding: 18px;
}

.dd-chip {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: #eaf3ff;
	color: var(--dd-blue);
	font-size: 12px;
	font-weight: 800;
}

.dd-card__title {
	margin: 12px 0 6px;
	font-size: 20px;
	line-height: 1.28;
}

.dd-card__title a {
	color: var(--dd-navy);
}

.dd-card__title a:hover,
.dd-card__title a:focus {
	color: var(--dd-red);
}

.dd-card__meta,
.dd-entry-meta,
.dd-archive-desc {
	color: var(--dd-muted);
	font-size: 14px;
}

.dd-card p {
	margin: 10px 0 0;
	color: var(--dd-muted);
}

.dd-entry-header {
	margin-bottom: 24px;
}

.dd-entry-header h1 {
	color: var(--dd-navy);
	font-size: clamp(32px, 4vw, 52px);
}

.dd-entry-lead {
	margin: 16px 0 0;
	font-size: 19px;
	color: var(--dd-muted);
}

.dd-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-bottom: 12px;
}

.dd-entry-meta span:not(:last-child)::after {
	content: "";
}

.dd-featured {
	margin-top: 24px;
	overflow: hidden;
	border-radius: var(--dd-radius);
	background: var(--dd-bg);
}

.dd-featured img {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
}

.dd-entry-content {
	font-size: 18px;
	color: #253242;
}

.dd-entry-content > *:first-child {
	margin-top: 0;
}

.dd-entry-content h2,
.dd-entry-content h3,
.dd-entry-content h4 {
	margin: 1.6em 0 .6em;
	color: var(--dd-navy);
	line-height: 1.22;
}

.dd-entry-content h2 {
	font-size: 30px;
}

.dd-entry-content h3 {
	font-size: 23px;
}

.dd-entry-content p,
.dd-entry-content ul,
.dd-entry-content ol {
	margin: 0 0 1.05em;
}

.dd-entry-content ul,
.dd-entry-content ol {
	padding-left: 1.25em;
}

.dd-entry-content li + li {
	margin-top: .35em;
}

.dd-entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: 15px;
	background: var(--dd-white);
}

.dd-entry-content th,
.dd-entry-content td {
	border: 1px solid var(--dd-line);
	padding: 10px;
	text-align: left;
	vertical-align: top;
}

.dd-entry-content th {
	background: var(--dd-navy);
	color: var(--dd-white);
}

.dd-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.dd-tags a,
.dd-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	background: var(--dd-bg);
	border-radius: 999px;
	font-size: 13px;
}

.dd-related {
	margin-top: 34px;
}

.post-navigation {
	margin-top: 28px;
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.post-navigation a {
	display: block;
	min-height: 82px;
	padding: 16px;
	background: var(--dd-white);
	border: 1px solid var(--dd-line);
	border-radius: var(--dd-radius);
	color: var(--dd-navy);
	font-weight: 800;
}

.post-navigation span {
	display: block;
	margin-bottom: 4px;
	color: var(--dd-muted);
	font-size: 13px;
	font-weight: 700;
}

.dd-archive-head {
	margin-bottom: 20px;
}

.dd-archive-head h1,
.dd-category-head h1 {
	color: var(--dd-navy);
	font-size: clamp(30px, 4vw, 48px);
}

.dd-category-head {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	padding: 18px;
	margin-bottom: 20px;
}

.dd-category-head img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--dd-radius);
}

.dd-sidebar {
	display: grid;
	gap: 18px;
}

.dd-widget {
	padding: 18px;
}

.widget-title {
	margin: 0 0 14px;
	color: var(--dd-navy);
	font-size: 20px;
	line-height: 1.2;
}

.dd-clean-list,
.dd-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dd-clean-list li,
.dd-widget ul li {
	padding-block: 9px;
	border-bottom: 1px solid var(--dd-line);
}

.dd-clean-list li:last-child,
.dd-widget ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.dd-recent-list a,
.dd-widget a {
	color: var(--dd-navy);
	font-weight: 700;
}

.dd-recent-list a:hover,
.dd-widget a:hover,
.dd-widget a:focus {
	color: var(--dd-red);
}

.dd-mini-schedule li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.dd-mini-schedule strong {
	color: var(--dd-green);
}

.navigation.pagination {
	margin-top: 28px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--dd-line);
	border-radius: var(--dd-radius);
	background: var(--dd-white);
	font-weight: 800;
	color: var(--dd-navy);
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus {
	background: var(--dd-red);
	border-color: var(--dd-red);
	color: var(--dd-white);
}

.dd-error-page {
	padding-block: 54px 72px;
}

.dd-error-panel {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.dd-error-panel > p {
	margin: 0 0 8px;
	color: var(--dd-red);
	font-size: 64px;
	font-weight: 900;
	line-height: 1;
}

.dd-error-panel .dd-search-form {
	margin: 22px auto;
}

.dd-site-footer {
	background: var(--dd-navy);
	color: rgba(255, 255, 255, .84);
}

.dd-footer-main {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr .8fr;
	gap: 28px;
	padding-block: 42px;
}

.dd-footer-brand img {
	width: 240px;
	height: auto;
	margin-bottom: 14px;
}

.dd-footer-main h2,
.footer-title {
	margin: 0 0 14px;
	color: var(--dd-white);
	font-size: 18px;
}

.dd-footer-main ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dd-footer-main li + li {
	margin-top: 8px;
}

.dd-footer-main a {
	color: rgba(255, 255, 255, .88);
}

.dd-footer-main a:hover,
.dd-footer-main a:focus {
	color: var(--dd-gold);
}

.dd-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .14);
	padding-block: 14px;
	color: rgba(255, 255, 255, .82);
	font-size: 14px;
}

@media (max-width: 1024px) {
	.dd-header-main {
		align-items: flex-start;
		flex-direction: column;
	}

	.dd-header-tools {
		width: 100%;
	}

	.dd-hero__content,
	.dd-front-layout,
	.dd-layout,
	.dd-layout--page {
		grid-template-columns: 1fr;
	}

	.dd-front-panel {
		position: static;
	}

	.dd-card-grid--3,
	.dd-category-grid,
	.dd-home-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dd-footer-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body {
		font-size: 15px;
	}

	.dd-container {
		width: min(100% - 24px, 1180px);
	}

	.dd-topbar__inner {
		flex-direction: column;
		gap: 2px;
	}

	.dd-header-main {
		padding-block: 12px;
	}

	.dd-header-tools {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 10px;
	}

	.dd-hotline {
		display: none;
	}

	.dd-menu-toggle {
		display: inline-flex;
	}

	.dd-header-tools .dd-search-form {
		grid-column: 1 / 2;
	}

	.dd-main-nav {
		display: none;
	}

	body.dd-nav-open .dd-main-nav {
		display: block;
	}

	.dd-main-nav ul {
		display: block;
		padding-block: 8px;
	}

	.dd-main-nav a {
		min-height: 44px;
		padding-inline: 12px;
	}

	.dd-main-nav .sub-menu {
		position: static;
		display: block;
		width: auto;
		margin-left: 12px;
		box-shadow: none;
		border: 0;
		border-radius: var(--dd-radius);
	}

	.dd-hero {
		min-height: auto;
	}

	.dd-hero__content {
		padding-block: 48px 82px;
	}

	.dd-hero h1,
	.dd-entry-header h1,
	.dd-archive-head h1,
	.dd-category-head h1,
	.dd-error-panel h1 {
		font-size: 34px;
	}

	.dd-hero p {
		font-size: 17px;
	}

	.dd-hero__panel {
		padding: 18px;
	}

	.dd-metric-grid {
		grid-template-columns: 1fr;
		margin-top: -52px;
	}

	.dd-section {
		padding-block: 38px;
	}

	.dd-section--flush {
		padding-block: 0;
	}

	.dd-front-main,
	.dd-front-panel,
	.dd-entry,
	.dd-archive-head,
	.dd-empty,
	.dd-error-panel {
		padding: 20px;
	}

	.dd-schedule-row {
		grid-template-columns: 1fr;
	}

	.dd-schedule-row--head {
		display: none;
	}

	.dd-section-title--inline {
		align-items: start;
		flex-direction: column;
	}

	.dd-card-grid--2,
	.dd-card-grid--3,
	.dd-category-grid,
	.dd-home-grid,
	.dd-home-metrics,
	.dd-home-hero {
		grid-template-columns: 1fr;
	}

	.dd-front-page {
		padding-block: 24px 44px;
	}

	.dd-category-head {
		grid-template-columns: 1fr;
	}

	.dd-entry-content {
		font-size: 16px;
	}

	.dd-entry-content h2 {
		font-size: 25px;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.dd-footer-main {
		grid-template-columns: 1fr;
		padding-block: 34px;
	}
}
