.theme-eligibility{
	padding: var(--section-pad-y) 0;
	background:#fff;
}

.theme-eligibility--yellow{
	background: #F4F3B8;
}

.theme-eligibility--green{
	background: var(--bg-green-light);
}

.theme-eligibility__header{
	margin: 0 0 40px;
	text-align: left;
}

.theme-eligibility__title{
	font-family: var(--serif);
	font-size: var(--h1);
	font-weight: 600;
	color: var(--brand);
	margin-bottom: 10px;
	text-align: left;
	letter-spacing: -0.01em;
}

.theme-eligibility__sub{
	font-family: var(--sans);
	color: var(--brand);
	font-size: var(--body-lg);
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
}

.theme-eligibility__grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	grid-template-columns:repeat(5, minmax(0, 1fr));
	gap: 40px;
	margin-bottom: 50px;
}

.theme-eligibility__card{
	display:flex;
	flex-direction:column;
	align-items: center;
	justify-content: start;
	text-align: center;
	gap: 16px;
	max-width: 195px;
	width: 100%;
}

.theme-eligibility__icon{
	width: 100px;
	height: 110px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.theme-eligibility__icon img{
	max-width:100%;
	max-height:100%;
	object-fit:contain;
}

.theme-eligibility__text{
	font-size: clamp(16px, 1.4vw, 23px);
	font-weight: 550;
	color: var(--ink);
	max-width: 210px;
	margin: 0 auto;
	line-height: 1.5;
}

.theme-eligibility__cta{
	display:flex;
	justify-content:center;
}

.theme-eligibility__cta .btn-layout{
	font-weight: 700;
	text-transform: uppercase;
	padding: 14px 32px;
}
@media (max-width: 1050px) {
	.theme-eligibility__grid{
		justify-content: center
	}
}
@media (max-width: 991px){
	.theme-eligibility__title{
		font-size: 36px;
		text-align: center;
	}
	.theme-eligibility__sub {
		font-size: 18px;
		text-align: center;
	}
	.theme-eligibility__grid{ grid-template-columns:repeat(3, minmax(0, 1fr)); gap: 30px; }
}

@media (max-width: 520px){
	.theme-eligibility__grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); gap: 24px; }
	.theme-eligibility__cta .btn-layout{padding: 14px 28px;}
}
