.nh-advertisers {
	padding: 0 22px;
}

.nh-advertisers__inner {
	max-width: 1092px;
	margin: 0 auto;
	min-height: 660px;
	padding: 0;
	background: var(--nh-card-bg);
	color: #000;
	text-decoration: none;
	border-radius: var(--nh-radius);
	display: grid;
	grid-template-columns: 460px 1fr;
	overflow: hidden;
	cursor: default;
	transition: transform .35s ease;
	will-change: transform;
}

.nh-advertisers__media {
	position: relative;
	background-color: #e8dcd6;
	border-radius: var(--nh-radius);
	overflow: hidden;
	align-self: stretch;
	min-height: 624px;
	margin: 18px 0 18px 18px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.nh-advertisers__inner:not(:has(.nh-advertisers__media)) {
	grid-template-columns: 1fr;
}

.nh-advertisers__content {
	padding: 110px 40px 90px 64px;
	display: flex;
	flex-direction: column;
}

.nh-advertisers__title {
	margin: 0;
	font-family: var(--nh-serif);
	font-size: 42px;
	line-height: 1.1;
	letter-spacing: -2px;
}

.nh-advertisers__title em {
	font-style: italic;
}

.nh-advertisers__subtitle {
	margin: auto 0 0;
	font-family: var(--nh-serif);
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: -0.5px;
	max-width: none;
}

.nh-advertisers__body {
	margin: 24px 0 0;
	font-family: var(--nh-sans);
	font-weight: 300;
	font-size: 18px;
	line-height: 1.1;
	letter-spacing: -0.3px;
	max-width: none;
}

.nh-advertisers__body ul {
	list-style: disc;
	padding-left: 20px;
	margin: 0;
}

.nh-advertisers__body li {
	margin-bottom: 8px;
}

.nh-advertisers__body li:last-child {
	margin-bottom: 0;
}

.nh-advertisers__cta {
	margin-top: 56px;
	height: 35px;
	background: #000;
	color: #fff;
	border-radius: var(--nh-radius);
	display: inline-flex;
	align-items: center;
	padding: 0 9px;
	overflow: hidden;
	align-self: flex-start;
	transition: padding 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.nh-advertisers__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
}

.nh-advertisers__cta-label {
	font-family: var(--nh-serif);
	font-style: italic;
	font-size: 18px;
	line-height: 1;
	letter-spacing: -0.4px;
	white-space: nowrap;
	max-width: 0;
	margin-right: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		max-width 1000ms cubic-bezier(0.22, 1, 0.36, 1),
		margin-right 1000ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 550ms ease;
}

a.nh-advertisers__inner {
	color: #000;
	cursor: pointer;
	text-decoration: none;
}

a.nh-advertisers__inner .nh-advertisers__content,
a.nh-advertisers__inner .nh-advertisers__title,
a.nh-advertisers__inner .nh-advertisers__subtitle,
a.nh-advertisers__inner .nh-advertisers__body {
	color: #000;
	text-decoration: none;
}

a.nh-advertisers__inner:hover,
a.nh-advertisers__inner:focus-visible {
	color: #000;
	text-decoration: none;
	outline: none;
}

.nh-advertisers__inner:hover .nh-advertisers__cta,
.nh-advertisers__inner:focus-visible .nh-advertisers__cta {
	padding: 0 16px;
}

.nh-advertisers__inner:hover .nh-advertisers__cta-label,
.nh-advertisers__inner:focus-visible .nh-advertisers__cta-label {
	max-width: 160px;
	margin-right: 10px;
	opacity: 1;
	transition:
		max-width 1000ms cubic-bezier(0.22, 1, 0.36, 1),
		margin-right 1000ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 600ms ease 250ms;
}

@media (max-width: 900px) {
	.nh-advertisers {
		padding: 0 22px;
	}

	.nh-advertisers__title {
		font-size: 32px;
	}

	.nh-advertisers__inner {
		grid-template-columns: 1fr;
		min-height: 0;
		margin: 0 auto;
		max-width: 100%;
	}

	.nh-advertisers__media {
		width: 100%;
		margin: 0;
		border-radius: var(--nh-radius) var(--nh-radius) 0 0;
		padding: 0;
		aspect-ratio: 784 / 944;
		height: auto;
		min-height: 520px;
	}

	.nh-advertisers__content {
		padding: 28px 24px 32px;
	}

	.nh-advertisers__subtitle {
		margin-top: 40px;
	}

	.nh-advertisers__cta,
	.nh-advertisers__inner:hover .nh-advertisers__cta,
	.nh-advertisers__inner:focus-visible .nh-advertisers__cta {
		padding: 0 16px;
		transition: none;
	}

	.nh-advertisers__cta-label,
	.nh-advertisers__inner:hover .nh-advertisers__cta-label,
	.nh-advertisers__inner:focus-visible .nh-advertisers__cta-label {
		max-width: 160px;
		margin-right: 10px;
		opacity: 1;
		transition: none;
	}
}

@media (max-width: 600px) {
	.nh-advertisers {
		padding: 0;
	}

	.nh-advertisers__inner {
		margin: 0 22px;
		max-width: none;
		min-height: 0;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.nh-advertisers__media {
		width: 100%;
		margin: 0;
		border-radius: var(--nh-radius) var(--nh-radius) 0 0;
		padding: 0;
		aspect-ratio: 784 / 944;
		height: auto;
		min-height: clamp(330px, 106vw, 430px);
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		text-align: center;
	}

	.nh-advertisers__content {
		padding: 40px 24px 32px;
	}

	.nh-advertisers__title {
		font-size: 22px;
		line-height: 1.1;
		letter-spacing: -0.04em;
	}

	.nh-advertisers__subtitle {
		font-size: 14px;
		line-height: 1.1;
		letter-spacing: -0.05em;
		margin-top: 56px;
	}

	.nh-advertisers__body {
		font-size: 13px;
		line-height: 1.1;
		letter-spacing: -0.025em;
		margin-top: 16px;
	}

	.nh-advertisers__cta {
		margin-top: 28px;
		height: 28px;
		padding: 0 6px;
	}

	.nh-advertisers__cta-icon {
		width: 14px;
		height: 14px;
	}

	.nh-advertisers__cta-icon svg {
		width: 14px;
		height: 14px;
	}

	.nh-advertisers__cta-label {
		font-size: 13px;
	}

	.nh-advertisers__cta,
	.nh-advertisers__inner:hover .nh-advertisers__cta,
	.nh-advertisers__inner:focus-visible .nh-advertisers__cta {
		padding: 0 12px;
	}

	.nh-advertisers__cta-label,
	.nh-advertisers__inner:hover .nh-advertisers__cta-label,
	.nh-advertisers__inner:focus-visible .nh-advertisers__cta-label {
		margin-right: 8px;
	}
}
