.ash-break-notice[hidden] {
	display: none;
}

.ash-break-notice {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 24px;
	position: fixed;
	z-index: 100000;
}

.ash-break-notice__backdrop {
	background: rgba(43, 37, 32, 0.72);
	inset: 0;
	position: absolute;
}

.ash-break-notice__card {
	background: #faf6ee;
	border: 1px solid rgba(138, 63, 28, 0.28);
	box-shadow: 0 24px 70px rgba(43, 37, 32, 0.28);
	color: #2b2520;
	max-width: 560px;
	padding: 46px 48px 44px;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 1;
}

.ash-break-notice__card::before {
	background: #8a3f1c;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.ash-break-notice__close {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: #2b2520;
	cursor: pointer;
	display: flex;
	font-family: Arial, sans-serif;
	font-size: 30px;
	height: 44px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 44px;
}

.ash-break-notice__close:hover,
.ash-break-notice__close:focus-visible {
	background: #eee4d3;
	color: #8a3f1c;
}

.ash-break-notice__close:focus-visible,
.ash-break-notice__facebook:focus-visible {
	outline: 3px solid rgba(189, 91, 44, 0.45);
	outline-offset: 3px;
}

.ash-break-notice__eyebrow {
	color: #8a3f1c;
	font-family: "IBM Plex Sans", Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.ash-break-notice__card h2 {
	color: #2b2520;
	font-family: Spectral, Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 5vw, 42px);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.08;
	margin: 0 0 20px;
}

.ash-break-notice__card p#ash-break-notice-message {
	color: #5f554a;
	font-family: "IBM Plex Sans", Inter, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	margin: 0 auto 28px;
	max-width: 460px;
}

.ash-break-notice__facebook {
	background: #8a3f1c;
	color: #fff;
	display: inline-flex;
	font-family: "IBM Plex Sans", Inter, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	justify-content: center;
	line-height: 1.2;
	padding: 14px 22px;
	text-decoration: none;
}

.ash-break-notice__facebook:hover,
.ash-break-notice__facebook:focus {
	background: #6e3216;
	color: #fff;
}

body.ash-break-notice-open {
	overflow: hidden;
}

@media (max-width: 600px) {
	.ash-break-notice {
		align-items: flex-end;
		padding: 12px;
	}

	.ash-break-notice__card {
		padding: 40px 24px 28px;
	}

	.ash-break-notice__card h2 {
		font-size: 30px;
	}

	.ash-break-notice__card p#ash-break-notice-message {
		font-size: 16px;
	}

	.ash-break-notice__facebook {
		width: 100%;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.ash-break-notice__backdrop {
		animation: ash-break-fade-in 180ms ease-out both;
	}

	.ash-break-notice__card {
		animation: ash-break-rise-in 220ms ease-out both;
	}
}

@keyframes ash-break-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes ash-break-rise-in {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
