.accolade-example-references {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

/* Label Styles */
.accolade-example-references__label-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.accolade-example-references__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 28px;
	height: 12px;
	flex-shrink: 0;
}

.accolade-example-references__circle {
	position: absolute;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}

.accolade-example-references__circle--dark {
	left: 10px;
	background-color: #0A3681;
	z-index: 1;
}

.accolade-example-references__circle--light {
	left: 0;
	background-color: #1d82ea;
	z-index: 2;
}

.accolade-example-references__label {
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	color: rgb(31, 131, 240);
	font-size: 16px;
	line-height: 24px;
	text-transform: capitalize;
	-webkit-font-smoothing: antialiased;
}

/* Heading Styles */
.accolade-example-references__heading {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-weight: 800;
	color: #062250;
	font-size: 2.8rem;
	line-height: 1.2;
}

/* Subtitle Styles */
.accolade-example-references__subtitle {
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #848484;
}

/* Image Cards Grid */
.accolade-example-references__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 20px;
}

.accolade-example-references__card {
	background-color: #ffffff;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
	border: 1px solid #f0f0f0;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.accolade-example-references__card-header {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.accolade-example-references__card-title {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-weight: 800;
	color: #062250;
	font-size: 1.25rem;
}

.accolade-example-references__card-subtitle {
	font-family: "DM Sans", sans-serif;
	color: #848484;
	font-size: 0.9rem;
}

.accolade-example-references__card-image-wrap {
	width: 100%;
	min-height: 250px;
	background-color: #f7f9fc;
	border: 1px dashed #d0d7e5;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.accolade-example-references__card-image-wrap img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.accolade-example-references__card-placeholder {
	text-align: center;
	color: #10387E;
	font-family: "Inter", sans-serif;
	font-size: 0.9rem;
}

@media (max-width: 767px) {
	.accolade-example-references__cards {
		grid-template-columns: 1fr;
	}
	.accolade-example-references__card {
		padding: 20px;
	}
}
