/* ==========================================================
50th anniversary banner (index_test.html -> 50th.html)
========================================================== */

.bnr50_wrap { display: flex; justify-content: center; margin: 0 auto 40px auto; }

.bnr50 {
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	width: 80%;
	max-width: 960px;
	min-height: 112px;
	overflow: hidden;
	border-radius: 2px;
	box-shadow: 0 8px 20px -10px rgba(18,41,79,.35);
	text-decoration: none;
}

.bnr50_photo {
	position: absolute; inset: 0;
	background: url(../../images/50th/hero_50th.jpg) center 46% / cover no-repeat;
}

.bnr50_scrim {
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(18,29,54,.9) 0%, rgba(18,29,54,.8) 38%, rgba(18,29,54,.3) 68%, rgba(18,29,54,.08) 88%);
}

.bnr50_content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 16px 24px;
	width: 100%;
}

.bnr50_badge {
	flex: none;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #a6975c;
	color: #FFF;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	font-family: 'Merriweather', serif;
	font-weight: 700;
	line-height: 1.1;
	box-shadow: 0 4px 10px rgba(0,0,0,.25);
}
.bnr50_badge .num { font-size: 1.05rem; }
.bnr50_badge .th { font-size: .55rem; letter-spacing: .04em; }

.bnr50_text { color: #FFF; flex: 1; min-width: 0; }
.bnr50_eyebrow {
	font-family: 'Merriweather', serif;
	font-size: .62rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #c9bfa4;
	margin-bottom: 4px;
}
.bnr50_text h2 {
	font-size: 1.08rem;
	margin: 0;
	letter-spacing: .02em;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bnr50_cta {
	flex: none;
	font-family: 'Merriweather', serif;
	font-size: .74rem;
	letter-spacing: .05em;
	color: #12294f;
	background: #FFF;
	border: 1px solid #a6975c;
	padding: 9px 18px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	transition: .25s;
}
.bnr50:hover .bnr50_cta { background: #a6975c; color: #FFF; border-color: #a6975c; }
.bnr50_cta .bnr50_arrow { transition: .25s; }
.bnr50:hover .bnr50_cta .bnr50_arrow { transform: translateX(3px); }

@media screen and (max-width: 700px) {
	.bnr50 { width: 100%; min-height: 76px; }
	.bnr50_content { flex-wrap: nowrap; padding: 12px 16px; gap: 12px; }
	.bnr50_badge { width: 40px; height: 40px; }
	.bnr50_badge .num { font-size: .8rem; }
	.bnr50_badge .th { font-size: .45rem; }
	.bnr50_eyebrow { display: none; }
	.bnr50_text h2 { font-size: .86rem; white-space: normal; line-height: 1.35; }
	.bnr50_cta { display: none; }
}
