.oc-info-cards {
	--oc-icards-cols: 3;
	--oc-icards-gap: 28px;
	--oc-icards-bg: #f2f1ed;
	--oc-icards-box-bg: #e6e1d6;
	--oc-icards-heading: #1a1a1a;
	--oc-icards-intro: #1a1a1a;
	--oc-icards-title: #1a1a1a;
	--oc-icards-subtitle: #1a1a1a;
	--oc-icards-body: #1a1a1a;
	--oc-icards-quote: #1a1a1a;
	--oc-icards-corner: #8ba870;
	--oc-icards-line: #1a1a1a;
	--oc-icards-diamond: #8ba870;
	--oc-icards-shadow: none;
	position: relative;
	width: 100%;
	padding: 72px 40px 56px;
	background-color: var(--oc-icards-bg);
	box-sizing: border-box;
	overflow: hidden;
}

.oc-info-cards *,
.oc-info-cards *::before,
.oc-info-cards *::after {
	box-sizing: border-box;
}

.oc-info-cards__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}

.oc-info-cards__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}

.oc-info-cards__heading {
	margin: 0 0 18px;
	color: var(--oc-icards-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.oc-info-cards__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	max-width: 200px;
	margin: 0 auto 18px;
}

.oc-info-cards__divider-line {
	flex: 1 1 auto;
	height: 1px;
	min-width: 28px;
	background-color: var(--oc-icards-line);
	opacity: 0.85;
}

.oc-info-cards__divider-diamond {
	display: inline-block;
	flex: 0 0 auto;
	color: var(--oc-icards-diamond);
	font-size: 10px;
	line-height: 1;
}

.oc-info-cards__intro {
	margin: 0;
	max-width: 560px;
	color: var(--oc-icards-intro);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.55;
	text-transform: uppercase;
}

.oc-info-cards__grid {
	display: grid;
	grid-template-columns: repeat(var(--oc-icards-cols), minmax(0, 1fr));
	gap: var(--oc-icards-gap);
	align-items: stretch;
}

.oc-info-cards__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 280px;
	padding: 44px 28px 36px;
	background-color: var(--oc-icards-box-bg);
	box-shadow: var(--oc-icards-shadow);
	text-align: center;
}

.oc-info-cards__corner {
	position: absolute;
	z-index: 2;
	color: var(--oc-icards-corner);
	font-size: 7px;
	line-height: 1;
	pointer-events: none;
}

.oc-info-cards__corner--tl { top: 14px; left: 14px; }
.oc-info-cards__corner--tr { top: 14px; right: 14px; }
.oc-info-cards__corner--bl { bottom: 14px; left: 14px; }
.oc-info-cards__corner--br { bottom: 14px; right: 14px; }

.oc-info-cards__title {
	margin: 0 0 14px;
	color: var(--oc-icards-title);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.01em;
}

.oc-info-cards__subtitle {
	margin: 0 0 22px;
	color: var(--oc-icards-subtitle);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.45;
	text-transform: uppercase;
}

.oc-info-cards__body {
	margin: 0;
	max-width: 280px;
	color: var(--oc-icards-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
}

.oc-info-cards__footer {
	display: grid;
	grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.4fr);
	gap: 36px 48px;
	align-items: center;
	margin-top: 48px;
}

.oc-info-cards__graphic {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}

.oc-info-cards__graphic-img {
	display: block;
	width: 100%;
	max-width: 360px;
	height: auto;
}

.oc-info-cards__quote {
	margin: 0;
	max-width: 560px;
	color: var(--oc-icards-quote);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-weight: 400;
	font-style: normal;
	line-height: 1.45;
	letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
	.oc-info-cards {
		padding: 56px 28px 40px;
	}

	.oc-info-cards__header {
		margin-bottom: 36px;
	}

	.oc-info-cards__footer {
		gap: 28px 36px;
		margin-top: 36px;
	}

	.oc-info-cards__graphic-img {
		max-width: 300px;
	}
}

@media (max-width: 768px) {
	.oc-info-cards__footer {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.oc-info-cards__graphic {
		justify-content: center;
	}

	.oc-info-cards__quote {
		max-width: 480px;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.oc-info-cards {
		padding: 44px 20px 32px;
	}

	.oc-info-cards__card {
		min-height: 240px;
		padding: 36px 24px 32px;
	}

	.oc-info-cards__title {
		font-size: 24px;
	}

	.oc-info-cards__graphic-img {
		max-width: 260px;
	}

	.oc-info-cards__footer {
		margin-top: 28px;
	}
}
