/**
 * Audience Section – frontend styles
 */

.oc-audience-section {
	--oc-accent: #6b7a67;
	--oc-service-line: #1a1a1a;
	position: relative;
	isolation: isolate;
	width: 100%;
	background-color: #f3f1ec;
	overflow: hidden;
}

.oc-audience-section__texture {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
	opacity: 0.55;
}

.oc-audience-section__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.oc-audience-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.4;
	color: #1a1a1a;
}

.oc-audience-section__diamond {
	color: var(--oc-accent);
	font-size: 10px;
	line-height: 1;
}

.oc-audience-section__heading {
	margin: 0;
	color: #1a1a1a;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.015em;
}

.oc-audience-section__panels {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	border-style: solid;
	border-color: #c5a46e;
	box-sizing: border-box;
	overflow: hidden;
}

.oc-audience-section__panels-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
}

.oc-audience-section__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-left-style: solid;
	border-left-color: #c5a46e;
	background: transparent;
	text-align: left;
	font: inherit;
	color: inherit;
	overflow: hidden;
}

.oc-audience-section__panel:first-child {
	border-left-width: 0 !important;
}

.oc-audience-section__panel-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.oc-audience-section__panel-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	box-sizing: border-box;
}

.oc-audience-section__panel-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	box-sizing: border-box;
}

.oc-audience-section__panel.has-card .oc-audience-section__panel-card {
	background-color: #fff;
}

.oc-audience-section__panel-label {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.45em;
}

.oc-audience-section__panel-number {
	color: #c5a46e;
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1;
}

.oc-audience-section__panel-title {
	color: #6b7a67;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.3;
}

.oc-audience-section__panel-body {
	margin: 0;
	color: #1a1a1a;
	font-size: 14px;
	line-height: 1.55;
}

.oc-audience-section__stats {
	border-top: 1px solid #d6d0c6;
	padding-top: 14px;
	margin-top: 4px;
}

.oc-audience-section__stats-list {
	display: flex;
	flex-direction: column;
}

.oc-audience-section__stat {
	display: grid;
	grid-template-columns: minmax(72px, 0.85fr) minmax(0, 1.4fr);
	gap: 12px;
	align-items: baseline;
}

.oc-audience-section__stat-value {
	color: #c5a46e;
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1.15;
	white-space: nowrap;
}

.oc-audience-section__stat-label {
	color: #1a1a1a;
	font-size: 13px;
	line-height: 1.4;
}

.oc-audience-section__panel-cta {
	margin-top: 4px;
}

.oc-audience-section__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	background-color: #c5a46e;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.3;
	border: 0;
	border-radius: 0;
	box-shadow: 0 3px 0 #1a1a1a;
	transition: background-color 0.25s ease, color 0.25s ease;
	box-sizing: border-box;
}

.oc-audience-section__btn:hover,
.oc-audience-section__btn:focus {
	text-decoration: none;
	color: #fff;
	background-color: #b08f55;
}

.oc-audience-section__services-grid {
	display: grid;
	width: 100%;
	border-top: 1px solid #c5a46e;
	border-left: 1px solid #c5a46e;
	box-sizing: border-box;
}

.oc-audience-section__service {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-right: 1px solid #c5a46e;
	border-bottom: 1px solid #c5a46e;
	box-sizing: border-box;
	overflow: hidden;
	transition: background-color 0.25s ease;
}

.oc-audience-section__service-hover-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.oc-audience-section__service.has-hover-image:hover .oc-audience-section__service-hover-bg,
.oc-audience-section__service.has-hover-image:focus-within .oc-audience-section__service-hover-bg {
	opacity: 1;
}

.oc-audience-section__service-link {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.oc-audience-section__service-title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #1a1a1a;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.3;
	transition: color 0.25s ease;
}

.oc-audience-section__service-divider {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 72%;
	max-width: 140px;
}

.oc-audience-section__service-line {
	flex: 1 1 auto;
	height: 1px;
	background-color: var(--oc-service-line, #1a1a1a);
	opacity: 0.85;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.oc-audience-section__service-divider .oc-audience-section__diamond {
	transition: color 0.25s ease;
}

.oc-audience-section__services-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.oc-audience-section__services-link {
	text-decoration: none;
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.4;
	transition: color 0.25s ease;
}

.oc-audience-section__services-link:hover {
	color: var(--oc-accent);
	text-decoration: none;
}

@media (max-width: 1024px) {
	.oc-audience-section__panels {
		grid-template-columns: 1fr;
	}

	.oc-audience-section__panel {
		border-left-width: 0 !important;
		border-top: 1px solid #c5a46e;
	}

	.oc-audience-section__panel:first-child {
		border-top-width: 0;
	}

	.oc-audience-section__stat {
		grid-template-columns: minmax(80px, 0.7fr) minmax(0, 1.5fr);
	}
}

@media (max-width: 767px) {
	.oc-audience-section__services-cta {
		align-items: stretch;
	}

	.oc-audience-section__btn {
		width: 100%;
	}
}
