.nzad-auction-document,
.nzad-auction-document * {
	box-sizing: border-box;
}

.nzad-auction-document {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: calc(100% - 110px);
	max-width: 1790px;
	margin: 32px auto;
	padding: 38px 48px 24px;
	border: 1px solid #dce7e8;
	border-radius: 28px;
	color: var(--nzad-navy);
	background: linear-gradient(135deg, var(--nzad-surface) 0%, #e8f2f3 100%);
	direction: rtl;
	font-family: "IRANSans", "IRANSansX", Tahoma, "DejaVu Sans", sans-serif;
	-webkit-font-smoothing: antialiased;
}

.nzad-decor {
	position: absolute;
	z-index: -1;
	display: block;
	border-radius: 50%;
	pointer-events: none;
}

.nzad-decor--top {
	top: -190px;
	left: -125px;
	width: 410px;
	height: 410px;
	background: rgba(35, 195, 196, .08);
}

.nzad-decor--bottom {
	right: -180px;
	bottom: -230px;
	width: 430px;
	height: 430px;
	background: rgba(241, 171, 49, .08);
}

.nzad-heading {
	position: relative;
	z-index: 1;
	margin: 0 auto 28px;
	text-align: center;
}

.nzad-title-line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.nzad-dot {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--nzad-teal);
	box-shadow: 0 0 0 6px rgba(35, 195, 196, .12);
}

.nzad-title-line h2 {
	margin: 0;
	color: var(--nzad-navy);
	font-size: clamp(22px, 2.6vw, 34px);
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: -.03em;
}

.nzad-rule {
	display: block;
	width: 64px;
	height: 4px;
	margin: 12px auto 0;
	border-radius: 99px;
	background: var(--nzad-teal);
}

.nzad-intro {
	max-width: 720px;
	margin: 10px auto 0;
	color: #71838b;
	font-size: 14px;
	line-height: 1.9;
	white-space: pre-line;
}

.nzad-items {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	align-items: start;
	gap: 14px;
}

.nzad-item {
	position: relative;
	display: flex;
	min-width: 0;
	padding: 15px 10px 14px;
	border: 1px solid #d5e1e4;
	border-radius: 22px;
	color: var(--nzad-navy);
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 8px 22px rgba(16, 43, 63, .05);
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

a.nzad-item {
	cursor: pointer;
}

.nzad-item.is-linked {
	border-color: var(--nzad-teal);
	background: linear-gradient(150deg, #efffff 0%, #ddf8f7 100%);
	box-shadow: 0 10px 25px rgba(35, 195, 196, .1);
}

.nzad-item:hover,
.nzad-item:focus-visible {
	border-color: var(--nzad-teal);
	box-shadow: 0 15px 30px rgba(16, 43, 63, .1);
	transform: translateY(-3px);
}

.nzad-item:focus-visible {
	outline: 3px solid rgba(35, 195, 196, .34);
	outline-offset: 4px;
}

.nzad-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border: 1px solid #d5e1e4;
	border-radius: 22px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 8px 20px rgba(16, 43, 63, .06);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nzad-icon::before {
	position: absolute;
	top: -5px;
	left: -5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--nzad-amber);
	content: "";
}

.nzad-item.is-linked .nzad-icon::before {
	background: #2db66f;
	animation: nzad-linked-dot-blink 1.35s ease-in-out infinite;
}

@keyframes nzad-linked-dot-blink {
	0%,
	100% {
		opacity: .38;
		box-shadow: 0 0 0 0 rgba(45, 182, 111, 0);
	}

	50% {
		opacity: 1;
		box-shadow: 0 0 0 5px rgba(45, 182, 111, .2);
	}
}

.nzad-item.is-linked .nzad-icon {
	border-color: rgba(35, 195, 196, .52);
	box-shadow: 0 8px 20px rgba(35, 195, 196, .12);
}

.nzad-item:hover .nzad-icon,
.nzad-item:focus-visible .nzad-icon {
	border-color: var(--nzad-teal);
	box-shadow: 0 12px 24px rgba(35, 195, 196, .17);
	transform: translateY(-4px);
}

.nzad-art {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform .28s ease;
}

.nzad-item:hover .nzad-art,
.nzad-item:focus-visible .nzad-art {
	transform: translateY(-3px) rotate(-2deg) scale(1.04);
}

.nzad-title {
	max-width: 100%;
	margin-top: 13px;
	color: var(--nzad-navy);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.7;
}

.nzad-item.is-linked .nzad-title {
	color: var(--nzad-teal-dark);
}

.nzad-subtitle {
	max-width: 100%;
	margin-top: 6px;
	color: #94a5aa;
	font-size: 11px;
	line-height: 1.7;
	white-space: pre-line;
}

.nzad-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 25px;
	margin-top: 11px;
	padding: 4px 12px;
	border: 1px solid #2db66f;
	border-radius: 99px;
	color: #fff;
	background: #2db66f;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.5;
	transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nzad-item:hover .nzad-cta,
.nzad-item:focus-visible .nzad-cta {
	border-color: #218f5d;
	background: #218f5d;
	box-shadow: 0 5px 13px rgba(45, 182, 111, .22);
	transform: translateY(-1px);
}

.nzad-link-badge {
	position: absolute;
	top: 13px;
	left: 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 3px 9px;
	border-radius: 99px;
	color: #fff;
	background: var(--nzad-teal);
	font-size: 10px;
	font-weight: 900;
	line-height: 1.4;
}

.nzad-hint {
	margin: 19px 0 0;
	color: #82979e;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
}

.nzad-credit {
	margin: 8px 0 0;
	color: #94a5aa;
	font-size: 11px;
	line-height: 1.7;
	text-align: center;
}

@media (max-width: 1100px) {
	.nzad-auction-document {
		width: calc(100% - 80px);
		padding-right: 30px;
		padding-left: 30px;
	}

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

@media (max-width: 760px) {
	.nzad-auction-document {
		width: calc(100% - 24px);
		max-width: none;
		margin: 20px 12px;
		padding: 28px 16px 20px;
		border-radius: 22px;
	}

	.nzad-heading {
		margin-bottom: 22px;
	}

	.nzad-title-line h2 {
		font-size: 24px;
	}

	.nzad-intro {
		font-size: 12px;
	}

	.nzad-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.nzad-item {
		padding: 12px 8px 12px;
		border-radius: 18px;
	}

	.nzad-icon {
		width: 62px;
		height: 62px;
		border-radius: 18px;
	}

	.nzad-art {
		width: 50px;
		height: 50px;
	}

	.nzad-title {
		margin-top: 10px;
		font-size: 12px;
	}

	.nzad-subtitle {
		margin-top: 4px;
		font-size: 10px;
	}

	.nzad-cta {
		margin-top: 8px;
		padding: 3px 9px;
		font-size: 10px;
	}

	.nzad-link-badge {
		top: 10px;
		left: 10px;
		min-height: 21px;
		padding: 2px 7px;
		font-size: 9px;
	}
}

@media (max-width: 430px) {
	.nzad-items {
		grid-template-columns: 1fr;
	}

	.nzad-item {
		display: grid;
		grid-template-columns: 58px minmax(0, 1fr) auto;
		grid-template-areas:
			"icon title cta"
			"icon subtitle cta";
		column-gap: 11px;
		align-items: center;
		padding: 10px 12px;
		text-align: right;
	}

	.nzad-icon {
		grid-area: icon;
		width: 54px;
		height: 54px;
	}

	.nzad-art {
		width: 43px;
		height: 43px;
	}

	.nzad-title {
		grid-area: title;
		margin-top: 0;
		text-align: right;
	}

	.nzad-subtitle {
		grid-area: subtitle;
		margin-top: 2px;
		text-align: right;
	}

	.nzad-cta {
		grid-area: cta;
		margin-top: 0;
		white-space: nowrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nzad-auction-document *,
	.nzad-auction-document *::before,
	.nzad-auction-document *::after {
		transition-duration: .01ms !important;
		animation: none !important;
	}
}
