.our-stories {
	text-align: center;
	background-color: var(--background1);
	padding: var(--global-v-spacing) var(--global-h-spacing);
}

.our-stories h2 {
	color: #00229D;
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 40px;
	margin-top: 0px;
}

.our-story-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	transition: transform 0.5s ease-in-out;
}

.story-card {
	flex: 1;
	min-width: 240px;
	aspect-ratio: 16/9;
	height: auto;
	border-radius: 5px;
	background: white;
	box-shadow: 0px 0px 10px rgb(69 69 85 / 35%);
	transition: all 0.3s;
	cursor: pointer;
}

.story-card:hover {
	transform: scale(1.03);
}

.story-card img {
	width: 100%;        
	height: 100%;       
	object-fit: contain; 
	border-radius: 5px; 
	display: block;     
	background: #fff;   
  }