.dp-header-widget {
	--dp-container-padding: 22px;
	--dp-page-text: #16253a;
	width: 100%;
	font-family: inherit;
	position: relative;
	z-index: 20;
}

.dp-header-widget *,
.dp-header-widget *::before,
.dp-header-widget *::after {
	box-sizing: border-box;
}

.dp-inner {
	width: calc(100% - (var(--dp-container-padding) * 2));
	max-width: 1216px;
	margin: 0 auto;
}

.dp-topbar {
	min-height: 42px;
	background: #102633;
	color: #fff;
}

.dp-topbar-inner {
	min-height: 42px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 24px;
}

.dp-trust-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 42px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	text-align: center;
}

.dp-trust-item i,
.dp-trust-item svg {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	font-size: 14px;
	color: currentColor;
	fill: currentColor;
}

.dp-mainbar {
	background: #fff;
	border-bottom: 1px solid #e4e8ec;
	padding: 16px 0;
}

.dp-mainbar-inner {
	min-height: 49px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
}

.dp-brand-wrap {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.dp-brand-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.dp-logo-image {
	display: block;
	width: 180px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.dp-fallback-logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.dp-fallback-mark {
	width: 45px;
	height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #2d9163;
	border-radius: 50%;
	color: #173b63;
	font-size: 20px;
	line-height: 1;
}

.dp-fallback-copy {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.dp-fallback-logo-title {
	max-width: 142px;
	color: #173b63;
	font-size: 18px;
	font-weight: 800;
	line-height: .88;
	letter-spacing: -.02em;
}

.dp-fallback-logo-subtitle {
	margin-top: 4px;
	color: #2d9163;
	font-size: 8.5px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .02em;
}

.dp-navigation-panel {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 56px;
}

.dp-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
}

.dp-nav-link,
.dp-login-link {
	color: var(--dp-page-text) !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: color .22s ease, opacity .22s ease;
	white-space: nowrap;
}

.dp-nav-link:hover,
.dp-login-link:hover {
	color: #2f996c;
}

.dp-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.dp-login-link {
	margin-right: 14px;
	font-weight: 700;
}

.dp-header-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease, background-color .22s ease;
}

.dp-header-button:hover {
	transform: translateY(-1px);
}

.dp-pricing-button {
	color: #132438;
	background: #fff;
	border: 1px solid #d4dce4;
	box-shadow: 0 1px 2px rgba(10, 28, 47, .05);
	min-width: 126px;
}

.dp-application-button {
	min-width: 198px;
	color: #fff;
	background: #2f9667;
	box-shadow: 0 5px 12px rgba(47, 150, 103, .18);
}

.dp-mobile-toggle {
	display: none;
	position: relative;
	width: 46px;
	height: 42px;
	padding: 0;
	border: 1px solid #d8e0e6;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}

.dp-mobile-toggle span:not(.screen-reader-text) {
	position: absolute;
	left: 13px;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #14293c;
	transition: transform .22s ease, opacity .22s ease, top .22s ease;
}

.dp-mobile-toggle span:nth-child(1) {
	top: 14px;
}

.dp-mobile-toggle span:nth-child(2) {
	top: 20px;
}

.dp-mobile-toggle span:nth-child(3) {
	top: 26px;
}

.dp-header-widget.dp-menu-open .dp-mobile-toggle span:nth-child(1) {
	top: 20px;
	transform: rotate(45deg);
}

.dp-header-widget.dp-menu-open .dp-mobile-toggle span:nth-child(2) {
	opacity: 0;
}

.dp-header-widget.dp-menu-open .dp-mobile-toggle span:nth-child(3) {
	top: 20px;
	transform: rotate(-45deg);
}

@media (max-width: 1180px) {
	.dp-navigation-panel {
		gap: 28px;
	}

	.dp-nav {
		gap: 18px;
	}

	.dp-actions {
		gap: 10px;
	}

	.dp-login-link {
		margin-right: 4px;
	}

	.dp-header-button {
		padding: 0 18px;
	}

	.dp-pricing-button {
		min-width: 112px;
	}

	.dp-application-button {
		min-width: 176px;
	}
}

@media (max-width: 1024px) {
	.dp-inner {
		width: calc(100% - 32px);
	}

	.dp-topbar-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 16px;
		padding: 7px 0;
	}

	.dp-trust-item {
		justify-content: flex-start;
		min-height: 28px;
		font-size: 12px;
		white-space: normal;
		text-align: left;
	}

	.dp-mainbar-inner {
		position: relative;
		gap: 16px;
	}

	.dp-mobile-toggle {
		display: block;
		margin-left: auto;
		flex: 0 0 auto;
	}

	.dp-navigation-panel {
		position: absolute;
		top: calc(100% + 16px);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 20px;
		border: 1px solid #e2e8ee;
		border-radius: 20px;
		background: #fff;
		box-shadow: 0 20px 50px rgba(10, 30, 48, .14);
		z-index: 99;
	}

	.dp-header-widget.dp-menu-open .dp-navigation-panel {
		display: flex;
	}

	.dp-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.dp-nav-link {
		display: flex;
		align-items: center;
		min-height: 44px;
		border-bottom: 1px solid #eef2f5;
	}

	.dp-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 11px;
	}

	.dp-login-link {
		margin: 0;
		min-height: 40px;
		display: inline-flex;
		align-items: center;
	}

	.dp-header-button {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.dp-inner {
		width: calc(100% - 24px);
	}

	.dp-topbar {
		display: none;
	}

	.dp-mainbar {
		padding-top: 13px;
		padding-bottom: 13px;
	}

	.dp-mainbar-inner {
		min-height: 46px;
	}

	.dp-logo-image {
		width: 156px;
	}

	.dp-fallback-mark {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.dp-fallback-logo-title {
		max-width: 125px;
		font-size: 16px;
	}

	.dp-fallback-logo-subtitle {
		font-size: 7.5px;
	}

	.dp-navigation-panel {
		top: calc(100% + 13px);
		padding: 16px;
		border-radius: 18px;
	}
}

/* ===== DP Premium Footer Widget ===== */
.dp-premium-footer,
.dp-premium-footer * {
	box-sizing: border-box;
}

.dp-premium-footer {
	width: 100%;
	padding: 60px 0 24px;
	background: #07213b;
	font-family: inherit;
}

.dp-footer-inner {
	width: calc(100% - 48px);
	max-width: 1080px;
	margin: 0 auto;
}

.dp-footer-top-grid {
	display: grid;
	grid-template-columns: 1.52fr .84fr .84fr .98fr;
	gap: 66px;
	align-items: start;
}

.dp-footer-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	margin-bottom: 28px;
}

.dp-footer-logo-image {
	display: block;
	width: 184px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.dp-footer-fallback-logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
}

.dp-footer-fallback-seal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border: 2px solid rgba(255,255,255,.88);
	border-radius: 50%;
	color: #fff;
	font-size: 24px;
	line-height: 1;
}

.dp-footer-fallback-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dp-footer-fallback-title {
	display: block;
	max-width: 152px;
	color: #fff;
	font-size: 21px;
	font-weight: 800;
	line-height: .88;
	letter-spacing: -.03em;
}

.dp-footer-fallback-tagline {
	display: block;
	color: #fff;
	font-size: 9.5px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .02em;
}

.dp-footer-description {
	max-width: 305px;
	color: #a8dafd;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.48;
}

.dp-footer-column-title {
	margin: 15px 0 29px;
	color: #00f183;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.dp-footer-links-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.dp-footer-link {
	color: #a8dafd;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: color .22s ease, opacity .22s ease;
}

.dp-footer-link:hover {
	color: #fff;
}

.dp-footer-mid-grid {
	display: grid;
	grid-template-columns: 1.52fr 1.55fr 1.04fr;
	gap: 58px;
	align-items: center;
	margin-top: 67px;
	min-height: 148px;
}

.dp-footer-badge-wrap {
	max-width: 285px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 9px;
	align-content: flex-start;
}

.dp-footer-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 999px;
	background: #173652;
	color: #b8dfff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.dp-footer-payments {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	padding-top: 7px;
}

.dp-payment-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 25px;
	color: #cfe8ff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.dp-payment-mark:nth-child(1) {
	color: #3968e0;
	font-style: italic;
}

.dp-payment-mark:nth-child(2) {
	color: #ef3d33;
	letter-spacing: -8px;
	padding-right: 8px;
}

.dp-payment-mark:nth-child(3) {
	color: #4d74e8;
}

.dp-payment-mark:nth-child(4) {
	color: #ffffff;
}

.dp-payment-mark:nth-child(5) {
	color: #e4f0ff;
}

.dp-payment-mark img {
	display: block;
	max-height: 28px;
	width: auto;
	max-width: 72px;
	object-fit: contain;
}

.dp-footer-company-card {
	min-height: 145px;
	padding: 22px 21px;
	border-radius: 18px;
	background: #1d3a58;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.dp-company-card-row {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 14px;
}

.dp-company-card-number {
	flex-direction: row;
	align-items: baseline;
	gap: 0;
	margin-bottom: 14px;
}

.dp-card-label {
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.dp-card-value,
.dp-company-address {
	color: #a8dafd;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.dp-company-card-number .dp-card-value {
	margin-left: 0;
}

.dp-company-address {
	margin-top: 0;
}

.dp-footer-bottom {
	display: grid;
	grid-template-columns: 1fr 1.45fr;
	gap: 46px;
	align-items: center;
	margin-top: 64px;
	padding-top: 27px;
	border-top: 1px solid #173954;
	color: #a8dafd;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.dp-footer-disclaimer {
	text-align: left;
}

@media (max-width: 1199px) {
	.dp-footer-top-grid {
		grid-template-columns: 1.25fr .8fr .8fr .95fr;
		gap: 36px;
	}

	.dp-footer-mid-grid {
		grid-template-columns: 1.1fr 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 1024px) {
	.dp-footer-inner {
		width: calc(100% - 36px);
	}

	.dp-footer-top-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 42px 30px;
	}

	.dp-footer-mid-grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
		margin-top: 48px;
	}

	.dp-footer-company-card {
		grid-column: 1 / -1;
		max-width: 420px;
	}

	.dp-footer-bottom {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 46px;
	}
}

@media (max-width: 767px) {
	.dp-premium-footer {
		padding-top: 42px;
		padding-bottom: 22px;
	}

	.dp-footer-inner {
		width: calc(100% - 24px);
	}

	.dp-footer-top-grid,
	.dp-footer-mid-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.dp-footer-column-title {
		margin-top: 0;
		margin-bottom: 18px;
	}

	.dp-footer-links-list {
		gap: 15px;
	}

	.dp-footer-mid-grid {
		margin-top: 35px;
	}

	.dp-footer-payments {
		flex-wrap: wrap;
	}

	.dp-footer-company-card {
		grid-column: auto;
		max-width: none;
	}

	.dp-footer-bottom {
		padding-top: 20px;
		margin-top: 34px;
	}
}


/* ===== DP Featured Articles Widget ===== */
.dp-featured-articles-section,
.dp-featured-articles-section * {
	box-sizing: border-box;
}

.dp-featured-articles-section {
	width: 100%;
	padding: 72px 0 64px;
	background: #edf2f5;
	font-family: inherit;
}

.dp-featured-articles-inner {
	width: calc(100% - 48px);
	max-width: 1192px;
	margin: 0 auto;
}

.dp-featured-articles-heading-wrap {
	text-align: center;
	margin-bottom: 32px;
}

.dp-featured-articles-title {
	margin: 0;
	color: #188a55;
	font-size: 58px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.035em;
}

.dp-featured-articles-subtitle {
	margin-top: 11px;
	color: #26476a;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}

.dp-article-filter-bar {
	max-width: 780px;
	margin: 28px auto 20px;
	display: grid;
	grid-template-columns: minmax(280px, 1fr) 220px;
	gap: 14px;
	align-items: center;
}

.dp-article-search-field,
.dp-article-category-select {
	width: 100%;
	min-height: 50px;
	padding: 0 18px;
	border: 1px solid #d7e0e6;
	border-radius: 999px;
	background: #fff;
	color: #143557;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	outline: none;
	box-shadow: 0 2px 7px rgba(10, 33, 57, .035);
}

.dp-article-search-field:focus,
.dp-article-category-select:focus {
	border-color: #188a55;
	box-shadow: 0 0 0 3px rgba(24, 138, 85, .11);
}

.dp-article-category-select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 22px) 21px, calc(100% - 16px) 21px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 44px;
}

.dp-featured-articles-action-row {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-height: 54px;
	margin-bottom: 20px;
}

.dp-view-all-articles {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 40px;
	padding: 0 22px;
	border-radius: 999px;
	background: #e2f6e9;
	color: #006d39;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.dp-view-all-articles:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 109, 57, .11);
}

.dp-view-all-arrow {
	font-size: 19px;
	line-height: 1;
}

.dp-articles-results {
	min-height: 200px;
}

.dp-articles-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.dp-article-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 404px;
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(207, 218, 225, .88);
	box-shadow: 0 2px 2px rgba(7, 33, 59, .035);
}

.dp-article-image-wrap {
	position: relative;
	display: block;
	height: 160px;
	overflow: hidden;
	border-radius: 18px 18px 0 0;
	background: #dfe8ee;
	text-decoration: none;
}

.dp-article-image {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
	object-position: center;
}

.dp-article-image-placeholder {
	background: linear-gradient(135deg, #d9e5ec, #f4f7f9);
}

.dp-article-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 33px;
	padding: 0 14px;
	border-radius: 999px;
	background: #e5f8ef;
	color: #007d43;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.dp-article-content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 20px 20px 20px;
}

.dp-article-title {
	margin: 0 0 14px;
	color: #002c55;
	font-size: 30px;
	font-weight: 850;
	line-height: 1.16;
	letter-spacing: -.04em;
}

.dp-article-title a {
	color: inherit;
	text-decoration: none;
}

.dp-article-excerpt {
	margin: 0 0 16px;
	color: #48607d;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
}

.dp-article-meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: #00884d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.dp-article-clock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	font-size: 18px;
	line-height: 1;
}

.dp-articles-empty,
.dp-articles-loading,
.dp-articles-error {
	grid-column: 1 / -1;
	width: 100%;
	padding: 28px;
	border: 1px dashed #c9d6df;
	border-radius: 18px;
	background: rgba(255,255,255,.72);
	color: #31506e;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
}

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

@media (max-width: 1199px) {
	.dp-articles-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.dp-featured-articles-section {
		padding-top: 46px;
		padding-bottom: 46px;
	}

	.dp-featured-articles-inner {
		width: calc(100% - 24px);
	}

	.dp-featured-articles-title {
		font-size: 38px;
	}

	.dp-featured-articles-subtitle {
		font-size: 16px;
	}

	.dp-article-filter-bar {
		grid-template-columns: 1fr;
		margin-top: 22px;
	}

	.dp-featured-articles-action-row {
		justify-content: flex-start;
		margin-bottom: 18px;
	}

	.dp-articles-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.dp-article-card {
		min-height: auto;
	}

	.dp-article-title {
		font-size: 26px;
	}
}


/* ===== DP Header Mobile Right Drawer Menu ===== */
.dp-drawer-overlay,
.dp-drawer-mobile-head,
.dp-drawer-ornament,
.dp-mobile-trust-card,
.dp-nav-mobile-icon,
.dp-nav-chevron,
.dp-action-mobile-icon,
.dp-action-mobile-arrow {
	display: none;
}

@media (max-width: 1024px) {
	body.dp-mobile-drawer-active {
		overflow: hidden;
	}

	.dp-header-widget .dp-drawer-overlay {
		position: fixed;
		inset: 0;
		display: block;
		border: 0;
		padding: 0;
		background: rgba(0, 0, 0, .38);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .28s ease, visibility .28s ease;
		z-index: 999996;
	}

	.dp-header-widget.dp-menu-open .dp-drawer-overlay {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.dp-header-widget .dp-navigation-panel {
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		bottom: 0;
		width: min(368px, 100vw);
		height: 100dvh;
		max-height: 100dvh;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 16px 14px 18px;
		border: 0;
		border-radius: 0;
		background: #071725;
		box-shadow: -18px 0 50px rgba(0, 0, 0, .28);
		transform: translateX(104%);
		opacity: 1;
		visibility: visible;
		pointer-events: none;
		overflow-y: auto;
		overscroll-behavior: contain;
		transition: transform .34s cubic-bezier(.2, .9, .25, 1);
		z-index: 999997;
	}

	.dp-header-widget.dp-menu-open .dp-navigation-panel {
		transform: translateX(0);
		pointer-events: auto;
	}

	.dp-header-widget .dp-drawer-mobile-head {
		display: block;
		margin-bottom: 31px;
	}

	.dp-header-widget .dp-drawer-logo-card {
		min-height: 88px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		padding: 16px 22px 16px 22px;
		border-radius: 30px;
		background: #fff;
		box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
	}

	.dp-header-widget .dp-drawer-brand-link {
		min-width: 0;
	}

	.dp-header-widget .dp-drawer-logo-image {
		width: 146px !important;
		max-width: 146px;
		height: auto;
	}

	.dp-header-widget .dp-drawer-logo-card .dp-fallback-mark {
		width: 41px;
		height: 41px;
		font-size: 18px;
	}

	.dp-header-widget .dp-drawer-logo-card .dp-fallback-logo-title {
		font-size: 15px;
		max-width: 126px;
	}

	.dp-header-widget .dp-drawer-logo-card .dp-fallback-logo-subtitle {
		font-size: 7px;
	}

	.dp-header-widget .dp-drawer-close {
		flex: 0 0 auto;
		width: 42px;
		height: 42px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid #eef1f4;
		border-radius: 50%;
		background: #fff;
		color: #677281;
		font-size: 30px;
		font-weight: 300;
		line-height: 1;
		cursor: pointer;
	}

	.dp-header-widget .dp-drawer-ornament {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		margin-bottom: 25px;
		color: #f5c600;
	}

	.dp-header-widget .dp-drawer-ornament span {
		display: block;
		width: 45px;
		height: 1px;
		background: #f5c600;
		opacity: .28;
	}

	.dp-header-widget .dp-drawer-ornament b {
		color: #f5c600;
		font-size: 18px;
		font-weight: 800;
		line-height: 1;
	}

	.dp-header-widget .dp-navigation-panel .dp-nav {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 17px;
		margin: 0;
	}

	.dp-header-widget .dp-navigation-panel .dp-nav-link {
		min-height: 63px;
		display: grid;
		grid-template-columns: 40px minmax(0, 1fr) 18px;
		gap: 16px;
		align-items: center;
		padding: 0 7px 0 16px;
		border: 0;
		color: #fff;
		font-size: 15px;
		font-weight: 800;
		line-height: 1.2;
		text-decoration: none;
		white-space: normal;
	}

	.dp-header-widget .dp-nav-mobile-icon {
		width: 40px;
		height: 40px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid #20384f;
		border-radius: 50%;
		color: #f5c600;
		background: rgba(255, 255, 255, .015);
	}

	.dp-header-widget .dp-nav-mobile-icon i,
	.dp-header-widget .dp-nav-mobile-icon svg {
		width: 16px;
		height: 16px;
		font-size: 15px;
		color: currentColor;
		fill: currentColor;
	}

	.dp-header-widget .dp-nav-text {
		display: block;
	}

	.dp-header-widget .dp-nav-chevron {
		display: inline-flex;
		align-items: center;
		justify-content: flex-end;
		color: #f5c600;
		font-size: 24px;
		font-weight: 400;
		line-height: 1;
	}

	.dp-header-widget .dp-mobile-trust-card {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		align-items: center;
		gap: 16px;
		min-height: 104px;
		margin-top: 24px;
		padding: 20px 18px 20px 19px;
		border: 1px solid rgba(245, 198, 0, .42);
		border-radius: 19px;
		background: #102438;
	}

	.dp-header-widget .dp-mobile-trust-icon {
		width: 48px;
		height: 48px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid #f5c600;
		border-radius: 50%;
		color: #00c578;
		font-size: 22px;
	}

	.dp-header-widget .dp-mobile-trust-icon i,
	.dp-header-widget .dp-mobile-trust-icon svg {
		width: 22px;
		height: 22px;
		font-size: 22px;
		color: currentColor;
		fill: currentColor;
	}

	.dp-header-widget .dp-mobile-trust-copy {
		min-width: 0;
	}

	.dp-header-widget .dp-mobile-trust-title {
		margin-bottom: 7px;
		color: #f5c600;
		font-size: 15px;
		font-weight: 900;
		line-height: 1.25;
	}

	.dp-header-widget .dp-mobile-trust-text {
		color: #9cc1df;
		font-size: 12px;
		font-weight: 500;
		line-height: 1.55;
	}

	.dp-header-widget .dp-navigation-panel .dp-actions {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 11px;
		margin-top: 24px;
		padding: 0;
	}

	.dp-header-widget .dp-navigation-panel .dp-login-link {
		display: none;
	}

	.dp-header-widget .dp-navigation-panel .dp-header-button {
		position: relative;
		width: 100%;
		min-width: 0;
		min-height: 57px;
		gap: 10px;
		border-radius: 999px;
		padding: 0 24px;
		font-size: 16px;
		font-weight: 900;
		line-height: 1;
	}

	.dp-header-widget .dp-navigation-panel .dp-pricing-button {
		border: 1px solid #f5c600;
		background: transparent;
		color: #f5c600;
		box-shadow: none;
	}

	.dp-header-widget .dp-navigation-panel .dp-application-button {
		border: 0;
		background: #1e6945;
		color: #fff;
		box-shadow: none;
	}

	.dp-header-widget .dp-action-mobile-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: currentColor;
	}

	.dp-header-widget .dp-action-mobile-icon i,
	.dp-header-widget .dp-action-mobile-icon svg {
		width: 15px;
		height: 15px;
		font-size: 15px;
		color: currentColor;
		fill: currentColor;
	}

	.dp-header-widget .dp-action-mobile-arrow {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-left: 3px;
		color: currentColor;
		font-size: 25px;
		line-height: 1;
	}

	.dp-header-widget .dp-mobile-toggle {
		position: relative;
		z-index: 20;
	}
}

@media (max-width: 390px) {
	.dp-header-widget .dp-navigation-panel {
		width: 100vw;
	}

	.dp-header-widget .dp-drawer-logo-card {
		padding-left: 18px;
		padding-right: 18px;
	}

	.dp-header-widget .dp-navigation-panel .dp-nav-link {
		padding-left: 12px;
	}
}


/* ===== DP Header Desktop White + Sticky PC Refinement ===== */
@media (min-width: 1025px) {
	.elementor-widget-dp-header-widget.dp-desktop-sticky-yes .dp-header-widget {
		position: sticky;
		top: 0;
		z-index: 9999;
	}

	.dp-header-widget .dp-mainbar {
		background-color: #ffffff;
	}

	.dp-header-widget .dp-nav-link,
	.dp-header-widget .dp-login-link,
	.dp-header-widget .dp-pricing-button {
		color: #16253a;
	}

	.dp-header-widget .dp-pricing-button {
		background-color: #ffffff;
	}

	.dp-header-widget .dp-application-button {
		color: #ffffff;
	}

	.dp-header-widget .dp-drawer-overlay,
	.dp-header-widget .dp-drawer-mobile-head,
	.dp-header-widget .dp-drawer-ornament,
	.dp-header-widget .dp-mobile-trust-card,
	.dp-header-widget .dp-nav-mobile-icon,
	.dp-header-widget .dp-nav-chevron,
	.dp-header-widget .dp-action-mobile-icon,
	.dp-header-widget .dp-action-mobile-arrow {
		display: none !important;
	}
}

/* Keep white text on the dark right-side drawer only in mobile/tablet view. */
@media (max-width: 1024px) {
	.dp-header-widget .dp-navigation-panel .dp-nav-link,
	.dp-header-widget .dp-navigation-panel .dp-nav-text,
	.dp-header-widget .dp-mobile-trust-text {
		color: #ffffff;
	}
}
