.dmcnews-posts-grid,
.dmcnews-front-grid,
.dmcnews-related-grid {
	display: grid;
	gap: 24px;
}

.dmcnews-front {
	width: 100%;
}

.dmcnews-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	flex-direction: var(--dmcnews-share-layout-desktop, var(--dmcnews-share-layout-direction, row));
}

.dmcnews-share-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	vertical-align: middle;
}

.dmcnews-share-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 42px;
	min-height: 42px;
	padding: 10px 12px;
	border: 0;
	border-radius: 999px;
	background: #111;
	color: #fff;
	line-height: 1;
	cursor: pointer;
	transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease, color 160ms ease;
}

.dmcnews-share-toggle:hover,
.dmcnews-share-toggle:focus-visible,
.dmcnews-share-wrap.is-open .dmcnews-share-toggle {
	color: #fff;
	opacity: .92;
	text-decoration: none;
}

.dmcnews-share-toggle .dmcnews-share__icon {
	font-size: 18px;
}

.dmcnews-share-toggle__label {
	display: none;
}

.dmcnews-share--column {
	--dmcnews-share-layout-direction: column;
	--dmcnews-share-layout-desktop: column;
	flex-direction: var(--dmcnews-share-layout-desktop, column);
	align-items: flex-start;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.dmcnews-share {
		flex-direction: var(--dmcnews-share-layout-tablet, var(--dmcnews-share-layout-desktop, var(--dmcnews-share-layout-direction, row))) !important;
	}

	.dmcnews-share--tablet-row {
		--dmcnews-share-layout-tablet: row;
		flex-direction: var(--dmcnews-share-layout-tablet, row) !important;
		align-items: center;
	}

	.dmcnews-share--tablet-column {
		--dmcnews-share-layout-tablet: column;
		flex-direction: var(--dmcnews-share-layout-tablet, column) !important;
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.dmcnews-share-wrap {
		min-width: 0;
		max-width: 100%;
	}

	.dmcnews-share {
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		flex-direction: var(--dmcnews-share-layout-mobile, var(--dmcnews-share-layout-tablet, var(--dmcnews-share-layout-desktop, var(--dmcnews-share-layout-direction, row)))) !important;
		flex-wrap: nowrap;
		justify-content: flex-start;
	}

	.dmcnews-share--mobile-row {
		--dmcnews-share-layout-mobile: row;
		flex-direction: var(--dmcnews-share-layout-mobile, row) !important;
		align-items: center;
	}

	.dmcnews-share--mobile-column {
		--dmcnews-share-layout-mobile: column;
		flex-direction: var(--dmcnews-share-layout-mobile, column) !important;
		align-items: flex-start;
	}

	.dmcnews-share__button {
		flex: 0 0 auto;
		max-width: calc(100vw - 24px);
	}
}

.dmcnews-share__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 36px;
	min-height: 36px;
	padding: 8px 12px;
	border: 0;
	border-radius: 4px;
	background: #111;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
	transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease, color 160ms ease;
}

.dmcnews-share--display-icon .dmcnews-share__button {
	width: 40px;
	padding: 0;
}

.dmcnews-share--display-icon .dmcnews-share__button,
.dmcnews-share--icon-top .dmcnews-share__button {
	aspect-ratio: 1 / 1;
}

.dmcnews-share--icon-right .dmcnews-share__button {
	flex-direction: row-reverse;
}

.dmcnews-share--icon-top .dmcnews-share__button {
	flex-direction: column;
	height: auto;
	padding: 10px;
}

.dmcnews-share__button:hover,
.dmcnews-share__button:focus-visible {
	color: #fff;
	opacity: .9;
	text-decoration: none;
}

.dmcnews-share--hover-lift .dmcnews-share__button:hover,
.dmcnews-share--hover-lift .dmcnews-share__button:focus-visible {
	transform: translateY(-1px);
}

.dmcnews-share__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	font-size: 16px;
	line-height: 1;
}

.dmcnews-share__icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.dmcnews-share__icon-text {
	font-size: .78em;
	font-weight: 800;
	letter-spacing: 0;
}

.dmcnews-share__label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.dmcnews-share--brand .dmcnews-share__button--facebook {
	background: #1877f2;
}

.dmcnews-share--brand .dmcnews-share__button--x {
	background: #000;
}

.dmcnews-share--brand .dmcnews-share__button--linkedin {
	background: #0a66c2;
}

.dmcnews-share--brand .dmcnews-share__button--whatsapp {
	background: #25d366;
}

.dmcnews-share--brand .dmcnews-share__button--telegram {
	background: #229ed9;
}

.dmcnews-share--brand .dmcnews-share__button--viber {
	background: #7360f2;
}

.dmcnews-share--brand .dmcnews-share__button--reddit {
	background: #ff4500;
}

.dmcnews-share--brand .dmcnews-share__button--pinterest {
	background: #bd081c;
}

.dmcnews-share--brand .dmcnews-share__button--tumblr {
	background: #36465d;
}

.dmcnews-share--brand .dmcnews-share__button--vk {
	background: #0077ff;
}

.dmcnews-share--brand .dmcnews-share__button--ok {
	background: #ee8208;
}

.dmcnews-share--brand .dmcnews-share__button--threads {
	background: #000;
}

.dmcnews-share--brand .dmcnews-share__button--bluesky {
	background: #1185fe;
}

.dmcnews-share--brand .dmcnews-share__button--mastodon {
	background: #6364ff;
}

.dmcnews-share--brand .dmcnews-share__button--pocket {
	background: #ef4056;
}

.dmcnews-share--brand .dmcnews-share__button--line {
	background: #06c755;
}

.dmcnews-share--brand .dmcnews-share__button--skype {
	background: #00aff0;
}

.dmcnews-share--brand .dmcnews-share__button--email,
.dmcnews-share--brand .dmcnews-share__button--copy,
.dmcnews-share--brand .dmcnews-share__button--print {
	background: #333;
}

@media (min-width: 1025px) {
	.dmcnews-share-label-desktop .dmcnews-share-toggle__label {
		display: inline;
	}

	.dmcnews-share-wrap--floating-desktop {
		position: fixed;
		right: var(--dmcnews-share-floating-side, 24px);
		bottom: var(--dmcnews-share-floating-bottom, 24px);
		top: auto;
		left: auto;
		z-index: 2147482900;
		display: inline-flex;
		width: auto;
		max-width: calc(100vw - (2 * var(--dmcnews-share-floating-side, 24px)));
		justify-content: flex-end;
	}

	.dmcnews-share-wrap--floating-desktop.dmcnews-share-wrap--floating-left {
		right: auto;
		left: var(--dmcnews-share-floating-side, 24px);
		justify-content: flex-start;
	}

	.dmcnews-share-wrap--floating-desktop.dmcnews-share-wrap--floating-top {
		top: var(--dmcnews-share-floating-bottom, 24px);
		bottom: auto;
	}

	.dmcnews-share-wrap--floating-desktop .dmcnews-share-toggle {
		display: inline-flex;
		width: 54px;
		min-width: 54px;
		height: 54px;
		min-height: 54px;
		padding: 0;
		border-radius: 999px;
		background: #111827;
		color: #fff;
		box-shadow: 0 14px 35px rgba(0, 0, 0, .24);
	}

	.dmcnews-share-wrap--floating-desktop .dmcnews-share-toggle .dmcnews-share__icon {
		font-size: 22px;
	}

	.dmcnews-share-wrap--floating-desktop > .dmcnews-share {
		position: absolute;
		top: auto;
		right: 0;
		bottom: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		left: auto;
		z-index: 1;
		display: none;
		width: max-content;
		max-width: min(92vw, 420px);
		padding: var(--dmcnews-share-panel-padding, 10px);
		border-radius: var(--dmcnews-share-panel-radius, 8px);
		background: var(--dmcnews-share-panel-background, #fff);
		box-shadow: 0 16px 45px rgba(0, 0, 0, .16);
		transform: none;
	}

	.dmcnews-share-wrap--floating-desktop.dmcnews-share-wrap--floating-left > .dmcnews-share {
		right: auto;
		left: 0;
	}

	.dmcnews-share-wrap--floating-desktop.dmcnews-share-wrap--floating-top > .dmcnews-share {
		top: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		bottom: auto;
	}

	.dmcnews-share-wrap--floating-desktop.is-open > .dmcnews-share {
		display: flex;
	}

	.dmcnews-share-wrap--collapsed-desktop .dmcnews-share-toggle {
		display: inline-flex;
	}

	.dmcnews-share-wrap--collapsed-desktop > .dmcnews-share {
		position: absolute;
		top: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		left: 50%;
		z-index: 50;
		display: none;
		width: max-content;
		max-width: min(92vw, 460px);
		padding: var(--dmcnews-share-panel-padding, 10px);
		border-radius: var(--dmcnews-share-panel-radius, 8px);
		background: var(--dmcnews-share-panel-background, #fff);
		box-shadow: 0 16px 45px rgba(0, 0, 0, .16);
		transform: translateX(-50%);
	}

	.dmcnews-share-wrap--collapsed-desktop.is-open > .dmcnews-share {
		display: flex;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.dmcnews-share-label-tablet .dmcnews-share-toggle__label {
		display: inline;
	}

	.dmcnews-share-wrap--floating-tablet {
		position: fixed;
		right: var(--dmcnews-share-floating-side, 24px);
		bottom: var(--dmcnews-share-floating-bottom, 24px);
		top: auto;
		left: auto;
		z-index: 2147482900;
		display: inline-flex;
		width: auto;
		max-width: calc(100vw - (2 * var(--dmcnews-share-floating-side, 24px)));
		justify-content: flex-end;
	}

	.dmcnews-share-wrap--floating-tablet.dmcnews-share-wrap--floating-left {
		right: auto;
		left: var(--dmcnews-share-floating-side, 24px);
		justify-content: flex-start;
	}

	.dmcnews-share-wrap--floating-tablet.dmcnews-share-wrap--floating-top {
		top: var(--dmcnews-share-floating-bottom, 24px);
		bottom: auto;
	}

	.dmcnews-share-wrap--floating-tablet .dmcnews-share-toggle {
		display: inline-flex;
		width: 54px;
		min-width: 54px;
		height: 54px;
		min-height: 54px;
		padding: 0;
		border-radius: 999px;
		background: #111827;
		color: #fff;
		box-shadow: 0 14px 35px rgba(0, 0, 0, .24);
	}

	.dmcnews-share-wrap--floating-tablet .dmcnews-share-toggle .dmcnews-share__icon {
		font-size: 22px;
	}

	.dmcnews-share-wrap--floating-tablet > .dmcnews-share {
		position: absolute;
		top: auto;
		right: 0;
		bottom: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		left: auto;
		z-index: 1;
		display: none;
		width: max-content;
		max-width: min(92vw, 420px);
		padding: var(--dmcnews-share-panel-padding, 10px);
		border-radius: var(--dmcnews-share-panel-radius, 8px);
		background: var(--dmcnews-share-panel-background, #fff);
		box-shadow: 0 16px 45px rgba(0, 0, 0, .16);
		transform: none;
	}

	.dmcnews-share-wrap--floating-tablet.dmcnews-share-wrap--floating-left > .dmcnews-share {
		right: auto;
		left: 0;
	}

	.dmcnews-share-wrap--floating-tablet.dmcnews-share-wrap--floating-top > .dmcnews-share {
		top: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		bottom: auto;
	}

	.dmcnews-share-wrap--floating-tablet.is-open > .dmcnews-share {
		display: flex;
	}

	.dmcnews-share-wrap--collapsed-tablet .dmcnews-share-toggle {
		display: inline-flex;
	}

	.dmcnews-share-wrap--collapsed-tablet > .dmcnews-share {
		position: absolute;
		top: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		left: 50%;
		z-index: 50;
		display: none;
		width: max-content;
		max-width: min(92vw, 460px);
		padding: var(--dmcnews-share-panel-padding, 10px);
		border-radius: var(--dmcnews-share-panel-radius, 8px);
		background: var(--dmcnews-share-panel-background, #fff);
		box-shadow: 0 16px 45px rgba(0, 0, 0, .16);
		transform: translateX(-50%);
	}

	.dmcnews-share-wrap--collapsed-tablet.is-open > .dmcnews-share {
		display: flex;
	}
}

@media (max-width: 767px) {
	.dmcnews-share-label-mobile .dmcnews-share-toggle__label {
		display: inline;
	}

	.dmcnews-share-wrap--floating-mobile {
		position: fixed;
		right: var(--dmcnews-share-floating-side, 28px);
		bottom: var(--dmcnews-share-floating-bottom, 24px);
		top: auto;
		left: auto;
		z-index: 2147482900;
		display: inline-flex;
		width: auto;
		max-width: calc(100vw - (2 * var(--dmcnews-share-floating-side, 28px)));
		justify-content: flex-end;
	}

	.dmcnews-share-wrap--floating-mobile.dmcnews-share-wrap--floating-left {
		right: auto;
		left: var(--dmcnews-share-floating-side, 28px);
		justify-content: flex-start;
	}

	.dmcnews-share-wrap--floating-mobile.dmcnews-share-wrap--floating-top {
		top: var(--dmcnews-share-floating-bottom, 24px);
		bottom: auto;
	}

	.dmcnews-share-wrap--floating-mobile .dmcnews-share-toggle {
		display: inline-flex;
		width: 54px;
		min-width: 54px;
		height: 54px;
		min-height: 54px;
		padding: 0;
		border-radius: 999px;
		background: #111827;
		color: #fff;
		box-shadow: 0 14px 35px rgba(0, 0, 0, .24);
	}

	.dmcnews-share-wrap--floating-mobile .dmcnews-share-toggle .dmcnews-share__icon {
		font-size: 22px;
	}

	.dmcnews-share-wrap--floating-mobile > .dmcnews-share {
		position: absolute;
		top: auto;
		right: 0;
		bottom: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		left: auto;
		z-index: 1;
		display: none;
		width: max-content;
		max-width: calc(100vw - (2 * var(--dmcnews-share-floating-side, 28px)));
		padding: var(--dmcnews-share-panel-padding, 10px);
		border-radius: var(--dmcnews-share-panel-radius, 8px);
		background: var(--dmcnews-share-panel-background, #fff);
		box-shadow: 0 16px 45px rgba(0, 0, 0, .16);
		transform: none;
	}

	.dmcnews-share-wrap--floating-mobile.dmcnews-share-wrap--floating-left > .dmcnews-share {
		right: auto;
		left: 0;
	}

	.dmcnews-share-wrap--floating-mobile.dmcnews-share-wrap--floating-top > .dmcnews-share {
		top: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		bottom: auto;
	}

	.dmcnews-share-wrap--floating-mobile.is-open > .dmcnews-share {
		display: flex;
	}

	.dmcnews-share-wrap--collapsed-mobile .dmcnews-share-toggle {
		display: inline-flex;
	}

	.dmcnews-share-wrap--collapsed-mobile > .dmcnews-share {
		position: absolute;
		top: calc(100% + var(--dmcnews-share-panel-gap, 10px));
		right: auto;
		left: 0;
		z-index: 50;
		display: none;
		width: min(360px, calc(100vw - 24px));
		max-width: calc(100vw - 24px);
		padding: var(--dmcnews-share-panel-padding, 10px);
		border-radius: var(--dmcnews-share-panel-radius, 8px);
		background: var(--dmcnews-share-panel-background, #fff);
		box-shadow: 0 16px 45px rgba(0, 0, 0, .16);
		transform: none;
	}

	.dmcnews-share-wrap--collapsed-mobile.is-open > .dmcnews-share {
		display: flex;
	}
}

.dmcnews-comments {
	display: grid;
	gap: 18px;
	width: 100%;
}

.dmcnews-comments__toggle {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 6px;
	background: #fff;
	color: #111827;
	cursor: pointer;
	text-align: left;
}

.dmcnews-comments__toggle-title {
	font-weight: 700;
}

.dmcnews-comments__toggle-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .08);
	font-size: 13px;
	font-weight: 700;
}

.dmcnews-comments__toggle-icon {
	position: relative;
	width: 12px;
	height: 12px;
	flex: 0 0 auto;
	margin-left: auto;
}

.dmcnews-comments__toggle-icon::before,
.dmcnews-comments__toggle-icon::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 12px;
	height: 2px;
	background: currentColor;
	content: "";
	transform: translateY(-50%);
}

.dmcnews-comments__toggle-icon::after {
	transform: translateY(-50%) rotate(90deg);
	transition: transform 160ms ease;
}

.dmcnews-comments.is-open .dmcnews-comments__toggle-icon::after {
	transform: translateY(-50%) rotate(0deg);
}

.dmcnews-comments__panel {
	display: grid;
	gap: inherit;
}

.dmcnews-comments__panel[hidden] {
	display: none;
}

.dmcnews-comments__heading {
	margin: 0;
}

.dmcnews-comments__list-section {
	display: grid;
	gap: 14px;
}

.dmcnews-comments__empty,
.dmcnews-comments__closed {
	color: #68707d;
}

.dmcnews-comments__list {
	display: grid;
	gap: 14px;
}

.dmcnews-comments__load-more-wrap {
	display: flex;
	justify-content: center;
}

.dmcnews-comments__load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 4px;
	background: #111827;
	color: #fff;
	cursor: pointer;
	text-align: center;
}

.dmcnews-comments__load-more:hover,
.dmcnews-comments__load-more:focus {
	background: #000;
	color: #fff;
}

.dmcnews-comment {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 14px;
	min-width: 0;
	padding: 16px;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 6px;
	background: #fff;
}

.dmcnews-comment__avatar img {
	display: block;
	border-radius: 50%;
}

.dmcnews-comment__body {
	min-width: 0;
}

.dmcnews-comment__top {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 8px;
}

.dmcnews-comment__author {
	font-weight: 700;
}

.dmcnews-comment__meta,
.dmcnews-comment__reply a {
	color: #68707d;
	font-size: 13px;
	text-decoration: none;
}

.dmcnews-comment__content {
	color: #1d2430;
	line-height: 1.55;
}

.dmcnews-comment__content > :first-child {
	margin-top: 0;
}

.dmcnews-comment__content > :last-child {
	margin-bottom: 0;
}

.dmcnews-comment__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.dmcnews-comment__children {
	display: grid;
	gap: 12px;
	grid-column: 1 / -1;
	margin-top: 14px;
	padding-left: 18px;
	border-left: 2px solid rgba(0, 0, 0, .08);
}

.dmcnews-comment__children .dmcnews-comment {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	justify-self: stretch;
	width: 100%;
	box-sizing: border-box;
}

.dmcnews-comment__children .dmcnews-comment__body {
	width: 100%;
}

.dmcnews-comment__votes {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dmcnews-comment__vote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	padding: 0 8px;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 50px;
	background: #f7f7f7;
	color: #1d2430;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.dmcnews-comment__vote-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	font-size: 15px;
	line-height: 1;
}

.dmcnews-comment__vote-icon i,
.dmcnews-comment__vote-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.dmcnews-comment__vote-count {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.dmcnews-comment__vote:hover,
.dmcnews-comment__vote.is-active {
	border-color: transparent;
	background: #111827;
	color: #fff;
}

.dmcnews-comment__vote:disabled {
	opacity: .72;
	cursor: not-allowed;
}

.dmcnews-comment__votes--own .dmcnews-comment__vote {
	pointer-events: none;
}

.dmcnews-comment__score {
	min-width: 24px;
	color: #68707d;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.dmcnews-comment__votes.has-error .dmcnews-comment__vote {
	border-color: #c62828;
}

.dmcnews-comments__form {
	display: grid;
	gap: 14px;
	margin-top: 8px;
}

.dmcnews-comments__hp {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.dmcnews-comments__respond {
	min-width: 0;
}

.dmcnews-comments__form-heading {
	margin: 0;
}

.dmcnews-comments__notice {
	padding: 12px 14px;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 6px;
	background: #f8fafc;
	color: #111827;
	font-size: 14px;
	line-height: 1.4;
}

.dmcnews-comments__notice.is-success {
	border-color: rgba(22, 163, 74, .35);
	background: #ecfdf3;
	color: #166534;
}

.dmcnews-comments__notice.is-error {
	border-color: rgba(220, 38, 38, .35);
	background: #fef2f2;
	color: #991b1b;
}

.dmcnews-comments__cancel-reply {
	display: none;
}

.dmcnews-comments__cancel-reply a {
	color: #68707d;
	text-decoration: none;
}

.dmcnews-comments__cancel-reply a:hover {
	text-decoration: underline;
}

body.comment-reply-active .dmcnews-comments__cancel-reply,
.dmcnews-comments__respond:has(#cancel-comment-reply-link[style*="inline"]) .dmcnews-comments__cancel-reply {
	display: block;
}

.dmcnews-comments__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.dmcnews-comments__field {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.dmcnews-comments__field--comment {
	grid-column: 1 / -1;
}

.dmcnews-comments__field span {
	font-size: 13px;
	font-weight: 700;
}

.dmcnews-comments__field input,
.dmcnews-comments__field textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, .16);
	border-radius: 4px;
}

.dmcnews-comments__field input:focus,
.dmcnews-comments__field textarea:focus {
	outline: 1px solid currentColor;
	outline-offset: 0;
}

.dmcnews-comments__field input[readonly] {
	opacity: .76;
}

.dmcnews-comments__captcha {
	min-width: 0;
	overflow-x: auto;
}

.dmcnews-comments__submit {
	justify-self: start;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #111827;
	color: #fff;
	cursor: pointer;
}

.dmcnews-comments__submit:disabled,
.dmcnews-comments__form.is-submitting .dmcnews-comments__submit {
	cursor: wait;
	opacity: .65;
}

@media (max-width: 640px) {
	.dmcnews-comment {
		grid-template-columns: 1fr;
	}

	.dmcnews-comment__children {
		padding-left: 10px;
	}

	.dmcnews-comments__fields {
		grid-template-columns: 1fr;
	}
}

html.dmcnews-page-ready,
html.dmcnews-page-ready body {
	margin-bottom: 0;
	padding-bottom: 0;
	overflow-x: clip;
}

body.dmcnews-has-theme-footer .dmcnews-theme-header,
body.dmcnews-has-theme-footer .dmcnews-theme-header + *,
body.dmcnews-has-theme-footer #page,
body.dmcnews-has-theme-footer .site,
body.dmcnews-has-theme-footer .site-content,
body.dmcnews-has-theme-footer #content,
body.dmcnews-has-theme-footer .content-area,
body.dmcnews-has-theme-footer main {
	background: #f7f5ef;
}

.dmcnews-theme-footer {
	display: flow-root;
	margin-bottom: 0 !important;
	padding-bottom: 0;
	background: #000;
	box-shadow: 0 100vh 0 100vh #000;
}

.dmcnews-theme-footer > :last-child,
.dmcnews-theme-footer .elementor,
.dmcnews-theme-footer .elementor-section-wrap,
.dmcnews-theme-footer .elementor-section:last-child,
.dmcnews-theme-footer .elementor-container:last-child,
.dmcnews-theme-footer .elementor-widget-wrap:last-child,
.dmcnews-theme-footer .e-con:last-child,
.dmcnews-theme-footer .e-con-inner:last-child,
.dmcnews-theme-footer .elementor-widget:last-child,
.dmcnews-theme-footer .elementor-widget-container:last-child,
.dmcnews-theme-footer .elementor-widget-container > :last-child {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

body.dmcnews-has-theme-footer #page,
body.dmcnews-has-theme-footer .site,
body.dmcnews-has-theme-footer .site-content,
body.dmcnews-has-theme-footer #content,
body.dmcnews-has-theme-footer .content-area,
body.dmcnews-has-theme-footer main {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

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

.dmcnews-front > .dmcnews-front-grid {
	width: 100%;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dmcnews-front > .dmcnews-front-grid > .dmcnews-front-card {
	width: 100%;
}

.dmcnews-front-slider {
	--dmcnews-slider-current-visible: var(--dmcnews-slider-visible, 1);
	position: relative;
}

.dmcnews-front-slider .dmcnews-front-slider-viewport {
	overflow: hidden;
	width: 100%;
}

.dmcnews-front-slider > .dmcnews-front-slider-viewport > .dmcnews-front-grid {
	display: flex;
	grid-template-columns: none;
	gap: var(--dmcnews-front-slider-gap, 24px);
	transform: translate3d(0, 0, 0);
	transition: transform var(--dmcnews-slider-speed, 450ms) ease;
	touch-action: pan-y;
	user-select: none;
	will-change: transform;
}

.dmcnews-front-slider-vertical > .dmcnews-front-slider-viewport > .dmcnews-front-grid {
	touch-action: pan-x;
}

.dmcnews-front-slider > .dmcnews-front-slider-viewport > .dmcnews-front-grid.is-dragging {
	cursor: grabbing;
}

.dmcnews-front-slider > .dmcnews-front-slider-viewport > .dmcnews-front-grid > .dmcnews-front-card {
	flex: 0 0 calc((100% - (var(--dmcnews-slider-current-visible, 1) - 1) * var(--dmcnews-front-slider-gap, 24px)) / var(--dmcnews-slider-current-visible, 1));
	width: calc((100% - (var(--dmcnews-slider-current-visible, 1) - 1) * var(--dmcnews-front-slider-gap, 24px)) / var(--dmcnews-slider-current-visible, 1));
}

.dmcnews-front-slider-vertical > .dmcnews-front-slider-viewport > .dmcnews-front-grid {
	flex-direction: column;
}

.dmcnews-front-slider-vertical > .dmcnews-front-slider-viewport > .dmcnews-front-grid > .dmcnews-front-card {
	flex-basis: auto;
	width: 100%;
}

.dmcnews-front-slider-controls {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 14px;
}

.dmcnews-front-slider-arrows-top .dmcnews-front-slider-controls,
.dmcnews-front-slider-arrows-middle .dmcnews-front-slider-controls,
.dmcnews-front-slider-arrows-bottom .dmcnews-front-slider-controls {
	position: absolute;
	left: var(--dmcnews-slider-arrow-offset, 12px);
	right: var(--dmcnews-slider-arrow-offset, 12px);
	z-index: 5;
	margin: 0;
	pointer-events: none;
}

.dmcnews-front-slider-arrows-top .dmcnews-front-slider-controls {
	top: var(--dmcnews-slider-arrow-offset, 12px);
	align-items: flex-start;
}

.dmcnews-front-slider-arrows-middle .dmcnews-front-slider-controls {
	top: 50%;
	align-items: center;
	transform: translateY(-50%);
}

.dmcnews-front-slider-arrows-bottom .dmcnews-front-slider-controls {
	bottom: var(--dmcnews-slider-arrow-offset, 12px);
	align-items: flex-end;
}

.dmcnews-front-slider-arrows-split .dmcnews-front-slider-controls {
	justify-content: space-between;
}

.dmcnews-front-slider-arrows-together .dmcnews-front-slider-controls {
	justify-content: flex-end;
	gap: 8px;
}

.dmcnews-front-slider-arrows-together.dmcnews-front-slider-arrows-middle .dmcnews-front-slider-controls,
.dmcnews-front-slider-arrows-together.dmcnews-front-slider-arrows-top .dmcnews-front-slider-controls,
.dmcnews-front-slider-arrows-together.dmcnews-front-slider-arrows-bottom .dmcnews-front-slider-controls {
	left: auto;
}

.dmcnews-front-slider-controls .dmcnews-front-slider-arrow {
	pointer-events: auto;
}

.dmcnews-front-slider-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid currentColor;
	border-radius: 4px;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
}

.dmcnews-front-slider-arrow:disabled {
	opacity: .4;
	cursor: default;
}

.dmcnews-posts-list {
	display: grid;
	gap: 18px;
}

.dmcnews-post-card,
.dmcnews-front-card,
.dmcnews-related-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border-radius: 4px;
	contain: layout paint;
}

.dmcnews-lazy-card {
	content-visibility: auto;
	contain-intrinsic-size: 320px;
}

.dmcnews-lazy-pending {
	content-visibility: hidden;
	opacity: .001;
}

.dmcnews-lazy-ready {
	opacity: 1;
	transition: opacity 160ms ease;
}

.dmcnews-front-card__link-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	font-size: 0;
	line-height: 0;
	text-decoration: none;
}

.dmcnews-front-slider .dmcnews-front-card__link-overlay {
	z-index: 20;
}

.dmcnews-front-card > .dmcnews-front-card-item {
	position: relative;
	z-index: 2;
}

.dmcnews-front-card > .dmcnews-card-position-absolute {
	position: absolute;
	z-index: 3;
}

.dmcnews-position-anchor-top_left {
	right: auto !important;
	bottom: auto !important;
	transform: none;
}

.dmcnews-position-anchor-top_right {
	left: auto !important;
	bottom: auto !important;
	transform: none;
}

.dmcnews-position-anchor-bottom_left {
	top: auto !important;
	right: auto !important;
	transform: none;
}

.dmcnews-position-anchor-bottom_right {
	top: auto !important;
	left: auto !important;
	transform: none;
}

.dmcnews-position-anchor-center {
	top: 50% !important;
	left: 50% !important;
	right: auto !important;
	bottom: auto !important;
	transform: translate(-50%, -50%);
}

.dmcnews-position-anchor-center_top {
	left: 50% !important;
	right: auto !important;
	bottom: auto !important;
	transform: translateX(-50%);
}

.dmcnews-position-anchor-center_bottom {
	top: auto !important;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%);
}

.dmcnews-posts-list .dmcnews-post-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 18px;
	row-gap: 0;
	align-items: start;
	align-content: start;
}

.dmcnews-posts-list .dmcnews-post-card > :not(.dmcnews-post-card__image),
.dmcnews-layout-compact .dmcnews-post-card > :not(.dmcnews-post-card__image) {
	grid-column: 2;
}

.dmcnews-posts-list .dmcnews-post-card__image,
.dmcnews-layout-compact .dmcnews-post-card__image {
	grid-column: 1;
	grid-row: 1 / span 20;
}

.dmcnews-layout-compact .dmcnews-post-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 14px;
	row-gap: 0;
	align-content: start;
}

.dmcnews-posts-list .dmcnews-post-card__image {
	width: var(--dmcnews-archive-image-width, 32%);
	min-width: 80px;
	max-width: 100%;
}

.dmcnews-layout-compact .dmcnews-post-card__image {
	width: var(--dmcnews-archive-image-width, 104px);
	max-width: 100%;
}

.dmcnews-post-card__image,
.dmcnews-front-card__image,
.dmcnews-related-card {
	display: block;
	overflow: hidden;
	background: #f2f2f2;
	content-visibility: auto;
	transition: transform var(--dmcnews-image-hover-duration, 280ms) ease, opacity var(--dmcnews-image-hover-duration, 280ms) ease, filter var(--dmcnews-image-hover-duration, 280ms) ease;
}

.dmcnews-post-card__image,
.dmcnews-front-card__image {
	aspect-ratio: 1.35 / 1;
}

.dmcnews-post-card--first .dmcnews-post-card__image {
	content-visibility: visible;
}

.dmcnews-post-card__image img,
.dmcnews-front-card__image img,
.dmcnews-related-card img,
.dmcnews-single-image img,
.dmcnews-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--dmcnews-image-hover-duration, 280ms) ease, opacity var(--dmcnews-image-hover-duration, 280ms) ease, filter var(--dmcnews-image-hover-duration, 280ms) ease;
	will-change: transform;
}

.dmcnews-card-image-hover-zoom:hover img {
	transform: scale(1.06);
}

.dmcnews-card-image-hover-lift:hover {
	transform: translateY(-4px);
}

.dmcnews-card-image-hover-fade:hover img {
	opacity: .82;
}

.dmcnews-card-image-hover-grayscale img {
	filter: grayscale(1);
}

.dmcnews-card-image-hover-grayscale:hover img {
	filter: grayscale(0);
}

.dmcnews-card-image-hover-tilt:hover img {
	transform: scale(1.04) rotate(1.5deg);
}

.dmcnews-post-card__body,
.dmcnews-front-card__body {
	padding: 14px 0 0;
}

.dmcnews-post-card > :not(.dmcnews-post-card__image):first-child,
.dmcnews-post-card__image + :not(.dmcnews-post-card__image) {
	margin-top: 0;
}

.dmcnews-post-card__category,
.dmcnews-front-card__category,
.dmcnews-single-category {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: #b42318;
}

.dmcnews-post-card__title,
.dmcnews-front-card__title,
.dmcnews-single-title {
	margin: 0;
	line-height: 1.15;
}

.dmcnews-post-card__title a,
.dmcnews-front-card__title a,
.dmcnews-related-card {
	color: inherit;
	text-decoration: none;
}

.dmcnews-post-card__meta,
.dmcnews-front-card__meta,
.dmcnews-single-meta {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.4;
	color: #666;
}

.dmcnews-post-card__excerpt,
.dmcnews-front-card__excerpt {
	margin-top: 10px;
	color: #444;
}

.dmcnews-post-card__custom-field,
.dmcnews-front-card__custom-field {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.4;
}

.dmcnews-post-card__custom-field-label,
.dmcnews-front-card__custom-field-label {
	font-weight: 700;
}

.dmcnews-front-card-item {
	min-width: 0;
}

.dmcnews-front-layout-hero_overlay .dmcnews-front-grid,
.dmcnews-front-hero_overlay .dmcnews-front-grid {
	display: block;
}

.dmcnews-front-layout-hero_overlay .dmcnews-front-card,
.dmcnews-front-hero_overlay .dmcnews-front-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 520px;
	padding: var(--dmcnews-hero-content-padding, clamp(22px, 4vw, 48px));
	background: #111;
}

.dmcnews-front-layout-hero_overlay .dmcnews-front-card::after,
.dmcnews-front-hero_overlay .dmcnews-front-card::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, .68) 100%);
}

.dmcnews-front-layout-hero_overlay .dmcnews-front-card__image,
.dmcnews-front-hero_overlay .dmcnews-front-card__image {
	position: absolute !important;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
}

.dmcnews-front-layout-hero_overlay .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute) {
	position: relative;
	z-index: 2;
	max-width: min(100%, 760px);
	color: #fff;
}

.dmcnews-front-layout-hero_overlay .dmcnews-front-card__category:not(.dmcnews-card-position-absolute),
.dmcnews-front-layout-hero_overlay .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute),
.dmcnews-front-layout-hero_overlay .dmcnews-front-card__excerpt:not(.dmcnews-card-position-absolute),
.dmcnews-front-layout-hero_overlay .dmcnews-front-card__title:not(.dmcnews-card-position-absolute) a,
.dmcnews-front-layout-hero_overlay .dmcnews-front-card__custom-field:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay .dmcnews-front-card__category:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay .dmcnews-front-card__excerpt:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay .dmcnews-front-card__title:not(.dmcnews-card-position-absolute) a,
.dmcnews-front-hero_overlay .dmcnews-front-card__custom-field:not(.dmcnews-card-position-absolute) {
	color: inherit;
}

.dmcnews-front-layout-hero_overlay .dmcnews-front-card__title,
.dmcnews-front-hero_overlay .dmcnews-front-card__title {
	font-size: clamp(30px, 5vw, 64px);
	line-height: 1.05;
}

.dmcnews-front-layout-hero_overlay .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute) {
	color: rgba(255, 255, 255, .88);
}

.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-grid,
.dmcnews-front-hero_overlay_grid .dmcnews-front-grid {
	display: grid;
}

.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card,
.dmcnews-front-hero_overlay_grid .dmcnews-front-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 280px;
	padding: var(--dmcnews-hero-content-padding, clamp(16px, 2.5vw, 28px));
	background: #111;
}

.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card::after,
.dmcnews-front-hero_overlay_grid .dmcnews-front-card::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, .68) 100%);
}

.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card__image,
.dmcnews-front-hero_overlay_grid .dmcnews-front-card__image {
	position: absolute !important;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
}

.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay_grid .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute) {
	position: relative;
	z-index: 2;
	max-width: min(100%, 760px);
	color: #fff;
}

.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card__category:not(.dmcnews-card-position-absolute),
.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute),
.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card__excerpt:not(.dmcnews-card-position-absolute),
.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card__title:not(.dmcnews-card-position-absolute) a,
.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card__custom-field:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay_grid .dmcnews-front-card__category:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay_grid .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay_grid .dmcnews-front-card__excerpt:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay_grid .dmcnews-front-card__title:not(.dmcnews-card-position-absolute) a,
.dmcnews-front-hero_overlay_grid .dmcnews-front-card__custom-field:not(.dmcnews-card-position-absolute) {
	color: inherit;
}

.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card__title,
.dmcnews-front-hero_overlay_grid .dmcnews-front-card__title {
	font-size: clamp(20px, 2vw, 30px);
	line-height: 1.08;
}

.dmcnews-front-layout-hero_overlay_grid .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute),
.dmcnews-front-hero_overlay_grid .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute) {
	color: rgba(255, 255, 255, .88);
}

.dmcnews-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.dmcnews-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	padding: 8px 12px;
	border: 1px solid #ddd;
	color: inherit;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.dmcnews-front-card__post-meta,
.dmcnews-front-card__comments-count-wrap {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dmcnews-front-card__post-meta {
	flex-wrap: wrap;
}

.dmcnews-front-card__comments-count-wrap {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

.dmcnews-front-card__comments-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	line-height: 1;
}

.dmcnews-front-card__comments-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.dmcnews-front-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	padding: 10px 18px;
	border: 1px solid #ddd;
	background: #fff;
	color: inherit;
	font: inherit;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.dmcnews-front-load-more:disabled {
	cursor: default;
	opacity: .7;
}

.dmcnews-section-heading {
	margin: 0 0 18px;
}

.dmcnews-front-layout-lead_left .dmcnews-front-grid,
.dmcnews-front-lead_left .dmcnews-front-grid,
.dmcnews-front-lead-left .dmcnews-front-grid {
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .9fr);
}

.dmcnews-front-layout-list .dmcnews-front-card,
.dmcnews-front-list .dmcnews-front-card,
.dmcnews-front-layout-compact .dmcnews-front-card,
.dmcnews-front-compact .dmcnews-front-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 18px;
	row-gap: 0;
	align-items: start;
	align-content: start;
}

.dmcnews-front-layout-list .dmcnews-front-card > :not(.dmcnews-front-card__image),
.dmcnews-front-list .dmcnews-front-card > :not(.dmcnews-front-card__image),
.dmcnews-front-layout-compact .dmcnews-front-card > :not(.dmcnews-front-card__image),
.dmcnews-front-compact .dmcnews-front-card > :not(.dmcnews-front-card__image) {
	grid-column: 2;
}

.dmcnews-front-layout-list .dmcnews-front-card__image,
.dmcnews-front-list .dmcnews-front-card__image,
.dmcnews-front-layout-compact .dmcnews-front-card__image,
.dmcnews-front-compact .dmcnews-front-card__image {
	grid-column: 1;
	grid-row: 1 / span 7;
}

.dmcnews-front-layout-compact .dmcnews-front-card,
.dmcnews-front-compact .dmcnews-front-card {
	--dmcnews-list-image-width: 112px;
	column-gap: 12px;
	row-gap: 0;
}

.dmcnews-front-layout-list .dmcnews-front-card__image,
.dmcnews-front-list .dmcnews-front-card__image,
.dmcnews-front-layout-compact .dmcnews-front-card__image,
.dmcnews-front-compact .dmcnews-front-card__image {
	width: var(--dmcnews-list-image-width, 180px);
	max-width: 100%;
}

.dmcnews-front-layout-list .dmcnews-front-card__body,
.dmcnews-front-list .dmcnews-front-card__body,
.dmcnews-front-layout-compact .dmcnews-front-card__body,
.dmcnews-front-compact .dmcnews-front-card__body {
	padding-top: 0;
}

.dmcnews-front-lead_left .dmcnews-front-card--lead,
.dmcnews-front-lead-left .dmcnews-front-card--lead {
	grid-row: span 4;
}

.dmcnews-front-equal-grid .dmcnews-front-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dmcnews-front-lead_left .dmcnews-front-card--lead .dmcnews-front-card__title,
.dmcnews-front-lead-left .dmcnews-front-card--lead .dmcnews-front-card__title,
.dmcnews-front-lead_top .dmcnews-front-card--lead .dmcnews-front-card__title,
.dmcnews-front-lead-top .dmcnews-front-card--lead .dmcnews-front-card__title {
	font-size: clamp(28px, 4vw, 48px);
}

.dmcnews-front-lead_left .dmcnews-front-card:not(.dmcnews-front-card--lead),
.dmcnews-front-lead-left .dmcnews-front-card:not(.dmcnews-front-card--lead),
.dmcnews-front-lead_top .dmcnews-front-card:not(.dmcnews-front-card--lead),
.dmcnews-front-lead-top .dmcnews-front-card:not(.dmcnews-front-card--lead) {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 14px;
	row-gap: 0;
	align-content: start;
}

.dmcnews-front-lead_left .dmcnews-front-card:not(.dmcnews-front-card--lead) > :not(.dmcnews-front-card__image),
.dmcnews-front-lead-left .dmcnews-front-card:not(.dmcnews-front-card--lead) > :not(.dmcnews-front-card__image),
.dmcnews-front-lead_top .dmcnews-front-card:not(.dmcnews-front-card--lead) > :not(.dmcnews-front-card__image),
.dmcnews-front-lead-top .dmcnews-front-card:not(.dmcnews-front-card--lead) > :not(.dmcnews-front-card__image) {
	grid-column: 2;
}

.dmcnews-front-lead_left .dmcnews-front-card:not(.dmcnews-front-card--lead) .dmcnews-front-card__image,
.dmcnews-front-lead-left .dmcnews-front-card:not(.dmcnews-front-card--lead) .dmcnews-front-card__image,
.dmcnews-front-lead_top .dmcnews-front-card:not(.dmcnews-front-card--lead) .dmcnews-front-card__image,
.dmcnews-front-lead-top .dmcnews-front-card:not(.dmcnews-front-card--lead) .dmcnews-front-card__image {
	grid-column: 1;
	grid-row: 1 / span 7;
	width: 132px;
	max-width: 100%;
}

.dmcnews-front-lead_left .dmcnews-front-card:not(.dmcnews-front-card--lead) .dmcnews-front-card__body,
.dmcnews-front-lead-left .dmcnews-front-card:not(.dmcnews-front-card--lead) .dmcnews-front-card__body,
.dmcnews-front-lead_top .dmcnews-front-card:not(.dmcnews-front-card--lead) .dmcnews-front-card__body,
.dmcnews-front-lead-top .dmcnews-front-card:not(.dmcnews-front-card--lead) .dmcnews-front-card__body {
	padding-top: 0;
}

.dmcnews-single {
	max-width: 860px;
}

.dmcnews-single-title {
	margin-top: 8px;
	font-size: clamp(34px, 5vw, 58px);
}

.dmcnews-single-image {
	margin: 28px 0;
}

.dmcnews-single-content {
	font-size: 18px;
	line-height: 1.75;
}

.dmcnews-single-tags,
.dmcnews-author-box,
.dmcnews-related {
	margin-top: 28px;
}

.dmcnews-author-box {
	padding: 18px;
	border: 1px solid #e3e3e3;
}

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

.dmcnews-related-card span {
	display: block;
	margin-top: 10px;
	font-weight: 700;
}

.dmcnews-banners {
	display: grid;
	gap: 16px;
	align-items: stretch;
}

.dmcnews-banners--slider {
	position: relative;
	display: block;
	overflow: hidden;
}

.dmcnews-banner {
	position: relative;
	overflow: hidden;
	text-align: center;
	background: #f5f5f5;
}

.dmcnews-banners--slider > .dmcnews-banner {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	opacity: 0;
	pointer-events: none;
	transition: opacity 420ms ease;
}

.dmcnews-banners--slider > .dmcnews-banner--active {
	position: relative;
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
}

.dmcnews-banner__link,
.dmcnews-banner__html,
.dmcnews-banner__google-ads {
	display: block;
}

.dmcnews-banner__google-ads {
	width: 100%;
	overflow: hidden;
	text-align: inherit;
}

.dmcnews-banner picture {
	display: block;
	width: 100%;
}

.dmcnews-banner--leaderboard {
	min-height: 90px;
}

.dmcnews-banner--billboard {
	min-height: 250px;
}

.dmcnews-banner--rectangle {
	max-width: 300px;
	min-height: 250px;
}

.dmcnews-banner--skyscraper {
	max-width: 300px;
	min-height: 600px;
}

.dmcnews-empty {
	padding: 16px;
	background: #f6f6f6;
	color: #555;
}

.dmcnews-desktop-hidden {
	display: none !important;
}

.dmcnews-hide-desktop {
	display: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.dmcnews-archive-widget.dmcnews-tablet-layout-grid .dmcnews-post-card {
		display: block;
	}

	.dmcnews-archive-widget.dmcnews-tablet-layout-list .dmcnews-post-card {
		display: grid;
		grid-template-columns: minmax(80px, var(--dmcnews-archive-image-width, 32%)) minmax(0, 1fr);
		gap: 18px;
	}

	.dmcnews-archive-widget.dmcnews-tablet-layout-compact .dmcnews-post-card {
		display: grid;
		grid-template-columns: var(--dmcnews-archive-image-width, 104px) minmax(0, 1fr);
		gap: 14px;
	}

	.dmcnews-desktop-hidden {
		display: revert !important;
	}

	.dmcnews-show-tablet {
		display: revert !important;
	}

	.dmcnews-hide-tablet {
		display: none !important;
	}

	.dmcnews-post-card__image.dmcnews-desktop-hidden {
		display: block !important;
	}

	.dmcnews-post-card__image.dmcnews-show-tablet {
		display: block !important;
	}

	.dmcnews-post-card__category.dmcnews-desktop-hidden {
		display: inline-block !important;
	}

	.dmcnews-post-card__category.dmcnews-show-tablet {
		display: inline-block !important;
	}

	.dmcnews-tablet-hidden {
		display: none !important;
	}

	.dmcnews-archive-widget .dmcnews-post-card__category.dmcnews-hide-tablet,
	.dmcnews-archive-widget .dmcnews-post-card__image.dmcnews-hide-tablet {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.dmcnews-posts-grid,
	.dmcnews-front-equal-grid .dmcnews-front-grid,
	.dmcnews-related-grid {
		grid-template-columns: 1fr;
	}

	.dmcnews-archive-widget.dmcnews-mobile-layout-grid .dmcnews-posts-list,
	.dmcnews-archive-widget.dmcnews-mobile-layout-grid .dmcnews-posts-grid,
	.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-posts-list,
	.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-posts-grid,
	.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-posts-list,
	.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-posts-grid {
		display: grid;
	}

	.dmcnews-archive-widget.dmcnews-mobile-layout-grid .dmcnews-post-card {
		display: block;
	}

	.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-post-card {
		display: grid;
		grid-template-columns: minmax(112px, 36%) minmax(0, 1fr);
		gap: 14px;
	}

	.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-post-card {
		display: grid;
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 12px;
	}

	.dmcnews-posts-list .dmcnews-post-card,
	.dmcnews-layout-compact .dmcnews-post-card,
	.dmcnews-front-lead_left .dmcnews-front-grid,
	.dmcnews-front-lead-left .dmcnews-front-grid,
	.dmcnews-front-list .dmcnews-front-card,
	.dmcnews-front-compact .dmcnews-front-card,
	.dmcnews-front-lead_left .dmcnews-front-card:not(.dmcnews-front-card--lead),
	.dmcnews-front-lead-left .dmcnews-front-card:not(.dmcnews-front-card--lead),
	.dmcnews-front-lead_top .dmcnews-front-card:not(.dmcnews-front-card--lead),
	.dmcnews-front-lead-top .dmcnews-front-card:not(.dmcnews-front-card--lead) {
		grid-template-columns: 1fr;
	}

	.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-post-card,
	.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-post-card {
		grid-template-columns: minmax(92px, 36%) minmax(0, 1fr);
	}

	.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-post-card__body,
	.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-post-card__body {
		padding-top: 0;
	}

	.dmcnews-archive-widget.dmcnews-mobile-layout-grid .dmcnews-post-card__body {
		padding-top: 14px;
	}

	.dmcnews-archive-widget.dmcnews-mobile-layout-grid .dmcnews-post-card > :not(.dmcnews-post-card__image) {
		grid-column: auto;
	}

	.dmcnews-front-hero_overlay .dmcnews-front-card {
		min-height: 360px;
	}

	.dmcnews-front-hero_overlay .dmcnews-front-card__title {
		font-size: clamp(26px, 9vw, 42px);
	}

	.dmcnews-desktop-hidden {
		display: revert !important;
	}

	.dmcnews-tablet-hidden {
		display: revert !important;
	}

	.dmcnews-show-mobile {
		display: revert !important;
	}

	.dmcnews-post-card__image.dmcnews-desktop-hidden {
		display: block !important;
	}

	.dmcnews-post-card__image.dmcnews-tablet-hidden {
		display: block !important;
	}

	.dmcnews-post-card__image.dmcnews-show-mobile {
		display: block !important;
	}

	.dmcnews-post-card__category.dmcnews-desktop-hidden {
		display: inline-block !important;
	}

	.dmcnews-post-card__category.dmcnews-tablet-hidden {
		display: inline-block !important;
	}

	.dmcnews-post-card__category.dmcnews-show-mobile {
		display: inline-block !important;
	}

	.dmcnews-mobile-hidden {
		display: none !important;
	}

	.dmcnews-hide-mobile {
		display: none !important;
	}

	.dmcnews-archive-widget .dmcnews-post-card__category.dmcnews-hide-mobile,
	.dmcnews-archive-widget .dmcnews-post-card__image.dmcnews-hide-mobile {
		display: none !important;
	}
}

.dmcnews-posts-list .dmcnews-post-card--no-image,
.dmcnews-layout-compact .dmcnews-post-card--no-image,
.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-post-card--no-image,
.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-post-card--no-image,
.dmcnews-front-list .dmcnews-front-card--no-image,
.dmcnews-front-compact .dmcnews-front-card--no-image,
.dmcnews-front-lead_left .dmcnews-front-card--no-image:not(.dmcnews-front-card--lead),
.dmcnews-front-lead-left .dmcnews-front-card--no-image:not(.dmcnews-front-card--lead),
.dmcnews-front-lead_top .dmcnews-front-card--no-image:not(.dmcnews-front-card--lead),
.dmcnews-front-lead-top .dmcnews-front-card--no-image:not(.dmcnews-front-card--lead) {
	grid-template-columns: 1fr;
	column-gap: 0;
}

.dmcnews-posts-list .dmcnews-post-card--no-image > :not(.dmcnews-post-card__image),
.dmcnews-layout-compact .dmcnews-post-card--no-image > :not(.dmcnews-post-card__image),
.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-post-card--no-image > :not(.dmcnews-post-card__image),
.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-post-card--no-image > :not(.dmcnews-post-card__image),
.dmcnews-front-list .dmcnews-front-card--no-image > :not(.dmcnews-front-card__image),
.dmcnews-front-compact .dmcnews-front-card--no-image > :not(.dmcnews-front-card__image),
.dmcnews-front-lead_left .dmcnews-front-card--no-image:not(.dmcnews-front-card--lead) > :not(.dmcnews-front-card__image),
.dmcnews-front-lead-left .dmcnews-front-card--no-image:not(.dmcnews-front-card--lead) > :not(.dmcnews-front-card__image),
.dmcnews-front-lead_top .dmcnews-front-card--no-image:not(.dmcnews-front-card--lead) > :not(.dmcnews-front-card__image),
.dmcnews-front-lead-top .dmcnews-front-card--no-image:not(.dmcnews-front-card--lead) > :not(.dmcnews-front-card__image) {
	grid-column: 1;
}

.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-post-card--has-image,
.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-post-card--has-image {
	grid-template-columns: auto minmax(0, 1fr);
}

.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-post-card--has-image > :not(.dmcnews-post-card__image),
.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-post-card--has-image > :not(.dmcnews-post-card__image) {
	grid-column: 2 !important;
}

.dmcnews-archive-widget.dmcnews-mobile-layout-list .dmcnews-post-card--has-image .dmcnews-post-card__image,
.dmcnews-archive-widget.dmcnews-mobile-layout-compact .dmcnews-post-card--has-image .dmcnews-post-card__image {
	grid-column: 1 !important;
	grid-row: 1 / span 20;
}

.dmcnews-site-logo {
	line-height: 0;
}

.dmcnews-site-logo__link,
.dmcnews-site-logo__text {
	display: inline-flex;
	align-items: center;
	line-height: 1.2;
	text-decoration: none;
}

.dmcnews-site-logo__normal,
.dmcnews-site-logo__sticky {
	display: inline-flex;
	align-items: center;
	transition: opacity var(--dmcnews-sticky-transition-duration, 180ms) ease, transform var(--dmcnews-sticky-transition-duration, 180ms) ease;
}

.dmcnews-site-logo__sticky {
	display: none;
}

.dmcnews-sticky-scrolled .dmcnews-site-logo__normal:has(+ .dmcnews-site-logo__sticky) {
	display: none;
}

.dmcnews-sticky-scrolled .dmcnews-site-logo__sticky {
	display: inline-flex;
}

.dmcnews-site-logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 220px;
	transition: max-width var(--dmcnews-sticky-transition-duration, 180ms) ease, transform var(--dmcnews-sticky-transition-duration, 180ms) ease, opacity var(--dmcnews-sticky-transition-duration, 180ms) ease;
}

.dmcnews-menu,
.dmcnews-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dmcnews-menu__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

.dmcnews-menu--vertical .dmcnews-menu__list {
	display: grid;
	align-items: stretch;
	justify-content: stretch;
}

.dmcnews-menu li {
	position: relative;
	min-width: 0;
}

.dmcnews-menu a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease;
}

.dmcnews-menu-has-indicators .dmcnews-menu--desktop .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	width: 0;
	height: 0;
	border-top: 8px solid currentColor;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	transform: translateY(1px);
	transition: border-color 180ms ease, transform 180ms ease;
}

.dmcnews-menu-has-indicators .dmcnews-menu--desktop .menu-item-has-children:hover > a::after,
.dmcnews-menu-has-indicators .dmcnews-menu--desktop .menu-item-has-children:focus-within > a::after {
	transform: translateY(1px) rotate(180deg);
}

.dmcnews-menu .sub-menu {
	position: absolute;
	top: calc(100% + var(--dmcnews-submenu-top-offset, 0px));
	left: var(--dmcnews-submenu-left-offset, 0px);
	z-index: 2147483001;
	display: none;
	min-width: 220px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.dmcnews-menu--vertical .sub-menu {
	position: static;
	margin-top: 6px;
	box-shadow: none;
}

.dmcnews-menu li:hover > .sub-menu,
.dmcnews-menu li:focus-within > .sub-menu {
	display: grid;
}

.dmcnews-menu .sub-menu a {
	width: 100%;
}

.dmcnews-sticky-container:has(.dmcnews-menu .sub-menu) {
	overflow: visible !important;
}

.dmcnews-sticky-container .dmcnews-menu,
.dmcnews-sticky-container .dmcnews-menu-wrap,
.dmcnews-sticky-container .dmcnews-menu li {
	overflow: visible;
}

.dmcnews-menu__toggle,
.dmcnews-menu__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: inherit;
	line-height: 1;
	cursor: pointer;
}

.dmcnews-menu__toggle svg,
.dmcnews-menu__close svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.dmcnews-menu-wrap > .dmcnews-menu__toggle,
.dmcnews-menu__overlay,
.dmcnews-menu__mobile-panel {
	display: none;
}

.dmcnews-menu-portal {
	position: fixed;
	inset: 0 auto auto 0;
	z-index: 2147483000;
	width: 0;
	height: 0;
	overflow: visible;
	pointer-events: none;
}

.dmcnews-menu__overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	background: rgba(0, 0, 0, .45);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--dmcnews-mobile-menu-duration, 280ms) ease;
}

.dmcnews-menu__mobile-panel {
	--dmcnews-mobile-menu-width: 320px;
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 2147483001;
	width: min(var(--dmcnews-mobile-menu-width), 100vw);
	max-width: 100vw;
	overflow: auto;
	background: #fff;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
	visibility: hidden;
	pointer-events: none;
	transition: transform var(--dmcnews-mobile-menu-duration, 280ms) ease;
	will-change: transform;
}

.dmcnews-menu-mobile-left .dmcnews-menu__mobile-panel {
	left: 0;
	transform: translateX(-100%);
}

.dmcnews-menu-mobile-right .dmcnews-menu__mobile-panel {
	right: 0;
	transform: translateX(100%);
}

.dmcnews-menu__mobile-panel-inner {
	min-height: 100%;
	padding: 24px;
}

.dmcnews-menu__close {
	display: flex;
	margin: 0 0 18px auto;
	font-size: 22px;
}

.dmcnews-menu__mobile-panel .dmcnews-menu__list {
	display: grid;
	align-items: stretch;
	gap: 8px;
}

.dmcnews-menu__mobile-panel .menu-item-has-children {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
	column-gap: 8px;
}

.dmcnews-menu__mobile-panel .menu-item-has-children > a {
	min-width: 0;
}

.dmcnews-menu__submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	min-height: 34px;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dmcnews-menu__submenu-toggle span {
	position: relative;
	display: block;
	width: 10px;
	height: 10px;
}

.dmcnews-menu__submenu-toggle span::before,
.dmcnews-menu__submenu-toggle span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transform: translate(-50%, -50%);
}

.dmcnews-menu__submenu-toggle span::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform 180ms ease, opacity 180ms ease;
}

.dmcnews-menu__mobile-panel .dmcnews-submenu-open > .dmcnews-menu__submenu-toggle span::after,
.dmcnews-menu__mobile-panel.dmcnews-menu-submenus-expanded .dmcnews-menu__submenu-toggle span::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0deg);
}

.dmcnews-menu__mobile-panel .sub-menu {
	position: static;
	grid-column: 1 / -1;
	display: none;
	gap: 6px;
	margin-top: 6px;
	padding-left: 14px;
	box-shadow: none;
}

.dmcnews-menu__mobile-panel .dmcnews-submenu-open > .sub-menu,
.dmcnews-menu__mobile-panel.dmcnews-menu-submenus-expanded .sub-menu {
	display: grid;
}

.dmcnews-menu__mobile-panel.dmcnews-menu-submenus-expanded .dmcnews-menu__submenu-toggle {
	display: none;
}

.dmcnews-menu-open .dmcnews-menu__overlay {
	opacity: 1;
	pointer-events: auto;
}

.dmcnews-menu-open .dmcnews-menu__mobile-panel {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}

.dmcnews-sticky-container.dmcnews-sticky-menu-open {
	overflow: visible !important;
	contain: none !important;
}

.dmcnews-sticky-container.dmcnews-sticky-menu-open > .elementor-element,
.dmcnews-sticky-container.dmcnews-sticky-menu-open > .e-con-inner {
	transform: none !important;
}

.dmcnews-sticky-container.dmcnews-sticky-menu-open .dmcnews-menu__overlay,
.dmcnews-sticky-container.dmcnews-sticky-menu-open .dmcnews-menu__mobile-panel {
	position: fixed !important;
	top: 0 !important;
	bottom: 0 !important;
	z-index: 2147483001;
}

.dmcnews-sticky-container.dmcnews-sticky-menu-open .dmcnews-menu__overlay {
	z-index: 2147483000;
}

body.dmcnews-menu-lock {
	overflow: hidden;
}

html.dmcnews-mobile-landscape body {
	overflow: hidden;
}

html.dmcnews-mobile-landscape body::before {
	content: "Molimo okrenite uredjaj u portret rezim.";
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: grid;
	place-items: center;
	padding: 28px;
	background: #fff;
	color: #111;
	font: 700 18px/1.35 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-align: center;
}

@media (max-width: 767px) {
	.dmcnews-menu-has-mobile.dmcnews-menu-mobile-mobile > .dmcnews-menu--desktop {
		display: none;
	}

	.dmcnews-menu-has-mobile.dmcnews-menu-mobile-mobile > .dmcnews-menu__toggle {
		display: inline-flex;
	}

	.dmcnews-menu-has-mobile.dmcnews-menu-mobile-mobile > .dmcnews-menu__overlay,
	.dmcnews-menu-has-mobile.dmcnews-menu-mobile-mobile > .dmcnews-menu__mobile-panel {
		display: block;
	}
}

@media (max-width: 1024px) {
	.dmcnews-menu-has-mobile.dmcnews-menu-mobile-tablet > .dmcnews-menu--desktop {
		display: none;
	}

	.dmcnews-menu-has-mobile.dmcnews-menu-mobile-tablet > .dmcnews-menu__toggle {
		display: inline-flex;
	}

	.dmcnews-menu-has-mobile.dmcnews-menu-mobile-tablet > .dmcnews-menu__overlay,
	.dmcnews-menu-has-mobile.dmcnews-menu-mobile-tablet > .dmcnews-menu__mobile-panel {
		display: block;
	}
}

.dmcnews-menu-has-mobile.dmcnews-menu-mobile-always > .dmcnews-menu--desktop {
	display: none;
}

.dmcnews-menu-has-mobile.dmcnews-menu-mobile-always > .dmcnews-menu__toggle {
	display: inline-flex;
}

.dmcnews-menu-has-mobile.dmcnews-menu-mobile-always > .dmcnews-menu__overlay,
.dmcnews-menu-has-mobile.dmcnews-menu-mobile-always > .dmcnews-menu__mobile-panel {
	display: block;
}

.dmcnews-menu__overlay,
.dmcnews-menu__mobile-panel {
	display: none !important;
}

.dmcnews-menu-open > .dmcnews-menu__overlay,
.dmcnews-menu-open > .dmcnews-menu__mobile-panel,
.dmcnews-menu-portal.dmcnews-menu-open > .dmcnews-menu__overlay,
.dmcnews-menu-portal.dmcnews-menu-open > .dmcnews-menu__mobile-panel {
	display: block !important;
}

.dmcnews-archive-title__heading {
	margin: 0;
	padding: 0;
	color: inherit;
}

.dmcnews-archive-title__link {
	color: inherit;
	text-decoration: none;
}

.dmcnews-archive-title__text {
	display: inline-block;
}

.dmcnews-single-part {
	min-width: 0;
}

.dmcnews-single-part--image {
	position: relative;
}

.dmcnews-single-part__title-heading {
	margin: 0;
	padding: 0;
	color: inherit;
}

.dmcnews-single-part__category,
.dmcnews-single-part__title,
.dmcnews-single-part__related-card {
	color: inherit;
	text-decoration: none;
}

.dmcnews-single-part__title {
	display: block;
	line-height: inherit;
}

.dmcnews-single-part__image,
.dmcnews-single-part__image a {
	display: block;
	overflow: hidden;
	line-height: 0;
}

.dmcnews-single-part__image img {
	display: block;
	max-width: 100%;
	height: auto;
	transition: opacity 180ms ease, transform 220ms ease;
}

.dmcnews-single-part__caption {
	line-height: 1.4;
	color: inherit;
}

.dmcnews-single-part--caption-width-full .dmcnews-single-part__caption {
	width: 100%;
}

.dmcnews-single-part--caption-width-auto .dmcnews-single-part__caption {
	display: inline-block;
	width: auto;
	inline-size: max-content;
	max-width: 100%;
}

.dmcnews-single-part--caption-overlay_top .dmcnews-single-part__caption,
.dmcnews-single-part--caption-overlay_bottom .dmcnews-single-part__caption,
.dmcnews-single-part--caption-overlay_center .dmcnews-single-part__caption {
	position: absolute;
	z-index: 2;
	margin: 0;
}

.dmcnews-single-part--caption-overlay_top .dmcnews-single-part__caption {
	top: var(--dmcnews-caption-top, 12px);
	right: var(--dmcnews-caption-right, 12px);
	left: var(--dmcnews-caption-left, 12px);
}

.dmcnews-single-part--caption-overlay_bottom .dmcnews-single-part__caption {
	right: var(--dmcnews-caption-right, 12px);
	bottom: var(--dmcnews-caption-bottom, 12px);
	left: var(--dmcnews-caption-left, 12px);
}

.dmcnews-single-part--caption-overlay_center .dmcnews-single-part__caption {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dmcnews-single-part--caption-width-auto.dmcnews-single-part--caption-overlay_top .dmcnews-single-part__caption,
.dmcnews-single-part--caption-width-auto.dmcnews-single-part--caption-overlay_bottom .dmcnews-single-part__caption {
	right: auto;
	max-width: calc(100% - var(--dmcnews-caption-left, 12px) - var(--dmcnews-caption-right, 12px));
}

.dmcnews-single-part--hover-zoom:hover img {
	transform: scale(1.04);
}

.dmcnews-single-part--hover-lift:hover img {
	transform: translateY(-3px);
}

.dmcnews-single-part--hover-fade:hover img {
	opacity: .82;
}

.dmcnews-single-part__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dmcnews-single-part__tags a {
	display: inline-flex;
	color: inherit;
	text-decoration: none;
}

.dmcnews-single-part--author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.dmcnews-single-part__author-avatar img {
	display: block;
	border-radius: 999px;
}

.dmcnews-single-part__author-name {
	display: block;
}

.dmcnews-single-part__author-bio {
	margin: 6px 0 0;
}

.dmcnews-single-part__related-heading {
	margin-top: 0;
}

.dmcnews-single-part__related-grid {
	display: grid;
	grid-template-columns: repeat(var(--dmcnews-related-columns, 3), minmax(0, 1fr));
	gap: 18px;
}

.dmcnews-single-part__related-card {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.dmcnews-single-part__related-image {
	display: block;
	overflow: hidden;
	line-height: 0;
}

.dmcnews-single-part__related-image img {
	display: block;
	width: 100%;
	height: auto;
}

.dmcnews-sticky-container {
	--dmcnews-sticky-offset: 0px;
	--dmcnews-sticky-admin-offset: var(--dmcnews-admin-bar-offset, 0px);
	--dmcnews-sticky-effective-offset: calc(var(--dmcnews-sticky-offset) + var(--dmcnews-sticky-admin-offset));
	--dmcnews-sticky-z-index: 50;
	--dmcnews-sticky-content-scale: 1;
	--dmcnews-sticky-transition-duration: 180ms;
	align-self: flex-start;
	box-sizing: border-box;
	overflow: hidden;
	transition: min-height var(--dmcnews-sticky-transition-duration) ease, height var(--dmcnews-sticky-transition-duration) ease, padding var(--dmcnews-sticky-transition-duration) ease, background-color var(--dmcnews-sticky-transition-duration) ease, box-shadow var(--dmcnews-sticky-transition-duration) ease, color var(--dmcnews-sticky-transition-duration) ease;
	will-change: min-height, height, background-color;
}

.dmcnews-sticky-container:has(.dmc-ajax-search--popup),
.dmcnews-sticky-container:has(.dmc-ajax-search__results:not([hidden])) {
	overflow: visible !important;
}

.dmcnews-sticky-container .elementor-widget-dmc_ajax_search,
.dmcnews-sticky-container .dmc-ajax-search {
	align-self: center;
}

.dmcnews-sticky-container .dmc-ajax-search {
	position: relative;
	z-index: 2147483002;
}

.dmcnews-sticky-container .dmc-ajax-search--popup {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
}

.dmcnews-sticky-container .dmc-ajax-search__trigger {
	flex: 0 0 auto;
}

.dmcnews-sticky-container .dmc-ajax-search--popup .dmc-ajax-search__panel,
.dmcnews-sticky-container .dmc-ajax-search__results {
	z-index: 2147483003;
}

.dmcnews-sticky-placeholder {
	display: none;
	height: 0;
	pointer-events: none;
}

.dmcnews-sticky-placeholder.dmcnews-sticky-placeholder-active {
	display: block;
}

.dmcnews-sticky-container > .elementor-element,
.dmcnews-sticky-container > .e-con-inner {
	transform-origin: center;
	transition: transform var(--dmcnews-sticky-transition-duration) ease;
}

.dmcnews-sticky-container.dmcnews-sticky-scrolled > .elementor-element,
.dmcnews-sticky-container.dmcnews-sticky-scrolled > .e-con-inner {
	transform: scale(var(--dmcnews-sticky-content-scale));
}

@media (min-width: 1025px) {
	.dmcnews-sticky-container.dmcnews-sticky-desktop.dmcnews-sticky-top {
		position: sticky !important;
		top: var(--dmcnews-sticky-effective-offset);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-desktop.dmcnews-sticky-bottom {
		position: sticky !important;
		bottom: var(--dmcnews-sticky-offset);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-desktop.dmcnews-sticky-lock-to-viewport.dmcnews-sticky-fixed.dmcnews-sticky-scrolled {
		position: fixed !important;
		top: var(--dmcnews-sticky-effective-offset);
		left: var(--dmcnews-sticky-fixed-left, 0px);
		width: var(--dmcnews-sticky-fixed-width, 100%);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-desktop.dmcnews-sticky-lock-to-viewport.dmcnews-sticky-top.dmcnews-sticky-watch.dmcnews-sticky-scrolled {
		position: fixed !important;
		top: var(--dmcnews-sticky-effective-offset);
		left: var(--dmcnews-sticky-fixed-left, 0px);
		width: var(--dmcnews-sticky-fixed-width, 100%);
		z-index: var(--dmcnews-sticky-z-index);
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.dmcnews-sticky-container.dmcnews-sticky-tablet.dmcnews-sticky-top {
		position: sticky !important;
		top: var(--dmcnews-sticky-effective-offset);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-tablet.dmcnews-sticky-bottom {
		position: sticky !important;
		bottom: var(--dmcnews-sticky-offset);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-tablet.dmcnews-sticky-lock-to-viewport.dmcnews-sticky-fixed.dmcnews-sticky-scrolled {
		position: fixed !important;
		top: var(--dmcnews-sticky-effective-offset);
		left: var(--dmcnews-sticky-fixed-left, 0px);
		width: var(--dmcnews-sticky-fixed-width, 100%);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-tablet.dmcnews-sticky-lock-to-viewport.dmcnews-sticky-top.dmcnews-sticky-watch.dmcnews-sticky-scrolled {
		position: fixed !important;
		top: var(--dmcnews-sticky-effective-offset);
		left: var(--dmcnews-sticky-fixed-left, 0px);
		width: var(--dmcnews-sticky-fixed-width, 100%);
		z-index: var(--dmcnews-sticky-z-index);
	}
}

@media (max-width: 767px) {
	.dmcnews-sticky-container.dmcnews-sticky-mobile.dmcnews-sticky-top {
		position: sticky !important;
		top: var(--dmcnews-sticky-effective-offset);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-mobile.dmcnews-sticky-bottom {
		position: sticky !important;
		bottom: var(--dmcnews-sticky-offset);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-mobile.dmcnews-sticky-lock-to-viewport.dmcnews-sticky-fixed.dmcnews-sticky-scrolled {
		position: fixed !important;
		top: var(--dmcnews-sticky-effective-offset);
		left: var(--dmcnews-sticky-fixed-left, 0px);
		width: var(--dmcnews-sticky-fixed-width, 100%);
		z-index: var(--dmcnews-sticky-z-index);
	}

	.dmcnews-sticky-container.dmcnews-sticky-mobile.dmcnews-sticky-lock-to-viewport.dmcnews-sticky-top.dmcnews-sticky-watch.dmcnews-sticky-scrolled {
		position: fixed !important;
		top: var(--dmcnews-sticky-effective-offset);
		left: var(--dmcnews-sticky-fixed-left, 0px);
		width: var(--dmcnews-sticky-fixed-width, 100%);
		z-index: var(--dmcnews-sticky-z-index);
	}
}

@media (max-width: 767px) {
	.dmcnews-single-part__related-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.dmcnews-front-slider {
		--dmcnews-slider-current-visible: var(--dmcnews-slider-visible-tablet, var(--dmcnews-slider-visible, 1));
	}

	.dmcnews-front.dmcnews-front-tablet-layout-grid .dmcnews-front-grid,
	.dmcnews-front.dmcnews-front-tablet-layout-list .dmcnews-front-grid,
	.dmcnews-front.dmcnews-front-tablet-layout-compact .dmcnews-front-grid {
		display: grid;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-grid .dmcnews-front-card {
		display: block;
		min-height: 0;
		padding: 0;
		background: transparent;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-grid .dmcnews-front-card::after,
	.dmcnews-front.dmcnews-front-tablet-layout-list .dmcnews-front-card::after,
	.dmcnews-front.dmcnews-front-tablet-layout-compact .dmcnews-front-card::after {
		content: none;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-grid .dmcnews-front-card__image {
		position: relative !important;
		inset: auto;
		z-index: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 1.35 / 1;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-grid .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-tablet-layout-list .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-tablet-layout-compact .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute) {
		position: static;
		z-index: auto;
		max-width: none;
		color: inherit;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-grid .dmcnews-front-card > :not(.dmcnews-front-card__image) {
		grid-column: auto;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-list .dmcnews-front-card,
	.dmcnews-front.dmcnews-front-tablet-layout-compact .dmcnews-front-card {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		align-items: start;
		align-content: start;
		column-gap: 18px;
		row-gap: 0;
		min-height: 0;
		padding: 0;
		background: transparent;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-list .dmcnews-front-card > :not(.dmcnews-front-card__image),
	.dmcnews-front.dmcnews-front-tablet-layout-compact .dmcnews-front-card > :not(.dmcnews-front-card__image) {
		grid-column: 2;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-list .dmcnews-front-card__image,
	.dmcnews-front.dmcnews-front-tablet-layout-compact .dmcnews-front-card__image {
		position: relative !important;
		inset: auto;
		z-index: auto;
		grid-column: 1;
		grid-row: 1 / span 7;
		width: var(--dmcnews-list-image-width, 180px);
		max-width: 100%;
		height: auto;
		aspect-ratio: 1.35 / 1;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-compact .dmcnews-front-card {
		--dmcnews-list-image-width: 112px;
		column-gap: 12px;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-grid {
		display: block;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card:not(.dmcnews-front-card--lead) {
		display: none;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		min-height: 520px;
		padding: var(--dmcnews-hero-content-padding, clamp(22px, 4vw, 48px));
		background: #111;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead::after {
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		content: "";
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, .68) 100%);
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__image {
		position: absolute !important;
		inset: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute) {
		position: relative;
		z-index: 2;
		max-width: min(100%, 760px);
		color: #fff;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__category:not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__excerpt:not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__title:not(.dmcnews-card-position-absolute) a,
	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__custom-field:not(.dmcnews-card-position-absolute) {
		color: inherit;
	}
}

@media (max-width: 767px) {
	.dmcnews-front-slider {
		--dmcnews-slider-current-visible: var(--dmcnews-slider-visible-mobile, var(--dmcnews-slider-visible-tablet, var(--dmcnews-slider-visible, 1)));
	}

	.dmcnews-front.dmcnews-front-mobile-layout-grid .dmcnews-front-grid,
	.dmcnews-front.dmcnews-front-mobile-layout-list .dmcnews-front-grid,
	.dmcnews-front.dmcnews-front-mobile-layout-compact .dmcnews-front-grid {
		display: grid;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-grid .dmcnews-front-card {
		display: block;
		min-height: 0;
		padding: 0;
		background: transparent;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-grid .dmcnews-front-card::after,
	.dmcnews-front.dmcnews-front-mobile-layout-list .dmcnews-front-card::after,
	.dmcnews-front.dmcnews-front-mobile-layout-compact .dmcnews-front-card::after {
		content: none;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-grid .dmcnews-front-card__image {
		position: relative !important;
		inset: auto;
		z-index: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 1.35 / 1;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-grid .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-mobile-layout-list .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-mobile-layout-compact .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute) {
		position: static;
		z-index: auto;
		max-width: none;
		color: inherit;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-grid .dmcnews-front-card > :not(.dmcnews-front-card__image) {
		grid-column: auto;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-list .dmcnews-front-card,
	.dmcnews-front.dmcnews-front-mobile-layout-compact .dmcnews-front-card {
		display: grid;
		grid-template-columns: minmax(92px, 36%) minmax(0, 1fr);
		align-items: start;
		align-content: start;
		column-gap: 12px;
		row-gap: 0;
		min-height: 0;
		padding: 0;
		background: transparent;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-list .dmcnews-front-card > :not(.dmcnews-front-card__image),
	.dmcnews-front.dmcnews-front-mobile-layout-compact .dmcnews-front-card > :not(.dmcnews-front-card__image) {
		grid-column: 2;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-list .dmcnews-front-card__image,
	.dmcnews-front.dmcnews-front-mobile-layout-compact .dmcnews-front-card__image {
		position: relative !important;
		inset: auto;
		z-index: auto;
		grid-column: 1;
		grid-row: 1 / span 7;
		width: 100%;
		max-width: 100%;
		height: auto;
		aspect-ratio: 1.35 / 1;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-grid {
		display: block;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card:not(.dmcnews-front-card--lead) {
		display: none;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		min-height: 360px;
		padding: var(--dmcnews-hero-content-padding, clamp(18px, 6vw, 32px));
		background: #111;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead::after {
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		content: "";
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, .68) 100%);
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__image {
		position: absolute !important;
		inset: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute) {
		position: relative;
		z-index: 2;
		max-width: min(100%, 760px);
		color: #fff;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__category:not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__meta:not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__excerpt:not(.dmcnews-card-position-absolute),
	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__title:not(.dmcnews-card-position-absolute) a,
	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__custom-field:not(.dmcnews-card-position-absolute) {
		color: inherit;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card--lead .dmcnews-front-card__title {
		font-size: clamp(26px, 9vw, 42px);
	}
}

.dmcnews-front-slider > .dmcnews-front-slider-viewport > .dmcnews-front-grid {
	display: flex !important;
}

.dmcnews-front-slider-vertical > .dmcnews-front-slider-viewport > .dmcnews-front-grid {
	flex-direction: column;
}

.dmcnews-front-slider.dmcnews-front-layout-hero_overlay .dmcnews-front-card:not(.dmcnews-front-card--lead),
.dmcnews-front-slider.dmcnews-front-tablet-layout-hero_overlay .dmcnews-front-card:not(.dmcnews-front-card--lead),
.dmcnews-front-slider.dmcnews-front-mobile-layout-hero_overlay .dmcnews-front-card:not(.dmcnews-front-card--lead) {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay_grid .dmcnews-front-grid {
		display: grid;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay_grid .dmcnews-front-card {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		min-height: 280px;
		padding: var(--dmcnews-hero-content-padding, clamp(16px, 3vw, 28px));
		background: #111;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay_grid .dmcnews-front-card::after {
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		content: "";
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, .68) 100%);
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay_grid .dmcnews-front-card__image {
		position: absolute !important;
		inset: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}

	.dmcnews-front.dmcnews-front-tablet-layout-hero_overlay_grid .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute) {
		position: relative;
		z-index: 2;
		max-width: min(100%, 760px);
		color: #fff;
	}
}

@media (max-width: 767px) {
	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay_grid .dmcnews-front-grid {
		display: grid;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay_grid .dmcnews-front-card {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		min-height: 240px;
		padding: var(--dmcnews-hero-content-padding, clamp(14px, 5vw, 24px));
		background: #111;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay_grid .dmcnews-front-card::after {
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		content: "";
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, .68) 100%);
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay_grid .dmcnews-front-card__image {
		position: absolute !important;
		inset: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay_grid .dmcnews-front-card-item:not(.dmcnews-front-card__image):not(.dmcnews-card-position-absolute) {
		position: relative;
		z-index: 2;
		max-width: min(100%, 760px);
		color: #fff;
	}

	.dmcnews-front.dmcnews-front-mobile-layout-hero_overlay_grid .dmcnews-front-card__title {
		font-size: clamp(20px, 7vw, 30px);
	}
}
