/* BRD Hero Strip — ACF Image post header */

.brd-hero-strip {
	position: relative;
	display: flex;
	width: 100%;
	overflow: hidden;
	border-radius: 0;
}

.brd-hero-strip__cell {
	flex: 1 1 0;
	min-width: 0;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

/* Brand overlay — Deep Ocean navy, flat 0.75 */
.brd-hero-strip__overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 24, 53, 0.75) !important;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 2rem 3rem;
}

/* Title — white */
.brd-hero-strip__title {
	color: #ffffff !important;
	font-size: clamp(2.5rem, 4vw, 3rem) !important;
	font-weight: 700 !important;
	line-height: 1.2;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	max-width: 80%;
}

/* Single image — centre it */
.brd-hero-strip[data-cells="1"] .brd-hero-strip__cell {
	flex: 1 1 100%;
}

/* Responsive */
@media (max-width: 767px) {
	.brd-hero-strip {
		height: 200px !important;
	}

	.brd-hero-strip__overlay {
		padding: 1.25rem 1.5rem;
	}

	.brd-hero-strip__title {
		font-size: 1.25rem !important;
	}

	.brd-hero-strip__cell:nth-child(n+3) {
		display: none;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.brd-hero-strip {
		height: 240px !important;
	}

	.brd-hero-strip__cell:nth-child(4) {
		display: none;
	}
}
