/* DLEZone Brand Logo */

.go-brand {
	display: inline-flex;
	align-items: center;
	gap: 0;
	color: #fff !important;
	text-decoration: none !important;
	line-height: 1;
	transition: color .25s ease, transform .25s ease;
}

.dz-icon-d {
	display: inline-block;
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
	vertical-align: middle;
	background-image: url("../images/brand/dlezone-d-icon-approved.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.dz-icon-logo {
	font-size: 38px;
	width: 1.35em;
	height: 1em;
	margin-right: -8px;
	transition: transform .25s ease, filter .25s ease;
}

.go-brand-text {
	display: inline-block;
	white-space: nowrap;
	font-size: 23px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
	transition: color .25s ease, text-shadow .25s ease;
}

.logo-z {
	position: relative;
	display: inline;
	color: #ffce10;
}

.logo-z sup {
	position: absolute;
	top: -2px;
	right: -16px;
	font-size: 11px;
	font-weight: 800;
	color: #ffce10;
	line-height: 1;
	pointer-events: none;
}

/* Hover */
.go-brand:hover {
	color: #ffce10 !important;
	transform: translateY(-1px);
}

.go-brand:hover .go-brand-text {
	color: #ffce10;
	text-shadow: 0 0 10px rgba(255, 206, 16, .45);
}

.go-brand:hover .logo-z {
	color: #fff;
}

.go-brand:hover .logo-z sup {
	color: #ffce10;
	text-shadow: 0 0 8px rgba(255, 206, 16, .6);
}

.go-brand:hover .dz-icon-logo {
	transform: translateY(-2px) scale(1.04);
	filter: drop-shadow(0 0 10px rgba(255, 206, 16, .55));
}

/* Tablet */
@media (max-width: 768px) {
	.dz-icon-logo {
		font-size: 36px;
		width: 1.35em;
		margin-right: -7px;
	}

	.go-brand-text {
		font-size: 22px;
	}

	.logo-z sup {
		top: -2px;
		right: -15px;
		font-size: 10px;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.dz-icon-logo {
		font-size: 34px;
		width: 1.32em;
		margin-right: -6px;
	}

	.go-brand-text {
		font-size: 21px;
	}

	.logo-z sup {
		top: -1px;
		right: -14px;
		font-size: 9px;
	}
}

/* Very small phones */
@media (max-width: 360px) {
	.dz-icon-logo {
		font-size: 31px;
		margin-right: -5px;
	}

	.go-brand-text {
		font-size: 19px;
	}

	.logo-z sup {
		right: -12px;
		font-size: 8px;
	}
}