.ynwd-section{
	padding: 88px 0;
	background: var(--e-global-color-black, #050608);
	color: var(--ynwd-text, #f6f7f2);
}

.ynwd-container{
	width: min(1140px, calc(100% - 32px));
	margin: 0 auto;
}

.ynwd-section-title{
	margin-bottom: 28px;
}

.ynwd-section-title h2,
.ynwd-programmatic-page h1,
.ynwd-programmatic-page h2,
.ynwd-programmatic-page h3{
	color: var(--ynwd-text, #f6f7f2);
	letter-spacing: 0;
}

.ynwd-kicker{
	color: var(--ynwd-accent, #c8ff4d);
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.ynwd-hero{
	min-height: 68vh;
	display: flex;
	align-items: center;
}

.ynwd-hero-grid,
.ynwd-bento{
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
	gap: 28px;
	align-items: stretch;
}

.ynwd-hero-grid > div,
.ynwd-hero-aside,
.ynwd-bento,
.ynwd-card,
.ynwd-answer,
.ynwd-faq details,
.ynwd-recent-featured,
.ynwd-recent-card{
	background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.ynwd-hero-grid > div{
	padding: clamp(28px, 5vw, 64px);
}

.ynwd-hero h1{
	font-size: clamp(42px, 7vw, 92px);
	line-height: 0.98;
	max-width: 900px;
	margin-bottom: 22px;
}

.ynwd-hero p,
.ynwd-bento p,
.ynwd-faq p{
	color: rgba(246,247,242,0.76);
	font-size: 18px;
	line-height: 1.75;
}

.ynwd-hero-aside,
.ynwd-answer{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	padding: 32px;
}

.ynwd-hero-aside strong{
	font-size: 28px;
	color: var(--ynwd-text, #f6f7f2);
}

.ynwd-hero-aside small{
	color: rgba(246,247,242,0.7);
	font-weight: 700;
}

.ynwd-map-icon{
	width: 54px;
	height: 54px;
	display: inline-block;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, var(--ynwd-accent, #c8ff4d) 0 12%, transparent 13%),
		linear-gradient(135deg, rgba(200,255,77,0.28), rgba(200,255,77,0.04));
	border: 1px solid rgba(200,255,77,0.5);
	position: relative;
	flex: 0 0 auto;
}

.ynwd-map-icon:after{
	content: "";
	position: absolute;
	inset: 12px 18px 18px;
	border: 2px solid var(--ynwd-accent, #c8ff4d);
	border-top: 0;
	border-radius: 0 0 18px 18px;
	transform: rotate(45deg);
}

.ynwd-bento{
	padding: 34px;
}

.ynwd-grid{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.ynwd-card{
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 128px;
	padding: 24px;
	color: var(--ynwd-text, #f6f7f2);
	text-decoration: none;
	transform: translateY(0);
	will-change: transform;
	transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.ynwd-card:hover,
.ynwd-recent-card:hover,
.ynwd-recent-featured:hover{
	transform: translateY(-7px);
	border-color: var(--ynwd-accent, #c8ff4d);
	color: var(--ynwd-text, #f6f7f2);
}

.ynwd-card span{
	font-size: 18px;
	font-weight: 800;
}

.ynwd-card small{
	color: var(--ynwd-accent, #c8ff4d);
	font-weight: 700;
}

.ynwd-country-card{
	flex-direction: row;
	align-items: center;
}

.ynwd-faq{
	display: grid;
	gap: 16px;
}

.ynwd-faq details{
	padding: 22px 26px;
}

.ynwd-faq summary{
	cursor: pointer;
	font-weight: 800;
	color: var(--ynwd-text, #f6f7f2);
}

.ynwd-parent-link{
	display: inline-flex;
	margin-top: 22px;
	color: var(--ynwd-accent, #c8ff4d);
	font-weight: 800;
}

.ynwd-recent-layout{
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.35fr) minmax(0, .85fr);
	gap: 22px;
	align-items: stretch;
}

.ynwd-recent-side{
	display: grid;
	gap: 18px;
}

.ynwd-recent-featured,
.ynwd-recent-card{
	overflow: hidden;
	color: var(--ynwd-text, #f6f7f2);
	text-decoration: none;
	will-change: transform;
	transition: transform .28s ease, border-color .28s ease;
}

.ynwd-recent-featured figure{
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.ynwd-recent-featured img,
.ynwd-recent-card img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.ynwd-recent-featured:hover img,
.ynwd-recent-card:hover img{
	transform: scale(1.06);
}

.ynwd-recent-featured span{
	display: block;
	color: var(--ynwd-accent, #c8ff4d);
	font-weight: 800;
	padding: 24px 28px 10px;
}

.ynwd-recent-featured h3{
	font-size: 28px;
	line-height: 1.22;
	padding: 0 28px 28px;
}

.ynwd-recent-card{
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 16px;
	align-items: center;
	padding: 12px;
}

.ynwd-recent-card figure{
	aspect-ratio: 1;
	border-radius: 6px;
	overflow: hidden;
	background: var(--ynwd-panel, #111418);
}

.ynwd-recent-card small{
	display: block;
	color: var(--ynwd-accent, #c8ff4d);
	font-weight: 800;
	margin-bottom: 6px;
}

.ynwd-recent-card strong{
	display: block;
	line-height: 1.35;
}

.ynwd-post-placeholder{
	display: grid;
	place-items: center;
	min-height: 96px;
}

.ynwd-post-placeholder span{
	width: 38px;
	height: 38px;
	border: 2px solid var(--ynwd-accent, #c8ff4d);
	border-radius: 8px;
}

@media (max-width: 991px){
	.ynwd-hero-grid,
	.ynwd-bento,
	.ynwd-recent-layout{
		grid-template-columns: 1fr;
	}

	.ynwd-grid{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px){
	.ynwd-section{
		padding: 56px 0;
	}

	.ynwd-grid{
		grid-template-columns: 1fr;
	}

	.ynwd-recent-card{
		grid-template-columns: 82px 1fr;
	}
}
