


#interactive-darby-future-of-asia-2025{
	
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

.sections-container {
	margin-top: 4rem;
}

.section {
	position: relative;


	padding: 0 0 4rem 0;
	background-size: cover;
	background-position: center;
	
	h3,h4{
		color:white;
		font-family: inherit;
	}
}

/*
.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(18, 28, 38, 0.9), rgba(18, 28, 38, 0.7));
}*/

.section-content {
	position: relative;
	z-index: 1;
	//max-width: 1200px;
	
	width: 100%;
	padding:3rem;
	background-color: rgba(5,29,46, 0.9);
	
	
	@media (min-width: 768px) {
		width:75%;
	}
	
	@media (min-width: 1100px) {
		width:50%;
	}
}

.section:nth-child(odd){
	.section-content{
		margin-left:auto;
	}
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color:white;
	font-family: var(--mdc-font-family-default-secondary);
}

.section-description {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	max-width: 600px;
	color:white;
}

.view-collection {
	color: #ffffff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	//margin-bottom: 2rem;
}

.view-collection::after {
	content: '→';
	margin-left: 0.5rem;
}

.latest-insights {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top:1px solid rgba(255,255,255,0.1);
}

.latest-insights-title {
	font-size: 1rem;
	margin-bottom: 1rem;

}

.insights-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-top: 1rem;
	
	@media (min-width: 769px) {
		grid-template-columns: 1fr 1fr;
	}
}

.insight-card {
	//background: rgba(255, 255, 255, 0.1);
	//padding: 1.5rem;
	border-radius: 4px;
	transition: transform 0.3s ease;
}

.insight-card:hover {
	//transform: translateY(-5px);
}

.insight-type {
	font-size: 0.9rem;
	color:white;
	margin-bottom: 0.5rem;
}

.insight-title {
	font-size: 1.1rem;
	font-weight: 500;
	
}

.insight-link {
	color: inherit;
	text-decoration: none;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}

	.section {
		padding: 3rem 1.5rem;
	}

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

}