.announcement-stack {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1300;
}

body.has-announcements {
	padding-top: var(--announcement-stack-height, 0px);
}

body.has-announcements #header,
body.has-announcements #topnav {
	top: var(--announcement-stack-height, 0px);
}

.announcement-banner {
	border: 0;
	color: #172033;
	display: block;
	font-family: inherit;
	padding: 12px 18px;
	width: 100%;
}

.announcement-banner[hidden] {
	display: none;
}

.announcement-banner--green {
	background: #dcfce7;
	border-bottom: 1px solid #86efac;
	color: #14532d;
}

.announcement-banner--amber {
	background: #fef3c7;
	border-bottom: 1px solid #fbbf24;
	color: #78350f;
}

.announcement-banner--red {
	background: #fee2e2;
	border-bottom: 1px solid #f87171;
	color: #7f1d1d;
}

.announcement-banner__inner {
	align-items: flex-start;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1180px;
	width: 100%;
}

.announcement-banner__content {
	line-height: 1.45;
	min-width: 0;
}

.announcement-banner__title {
	display: inline;
	font-size: 15px;
	font-weight: 700;
	margin: 0 6px 0 0;
}

.announcement-banner__description {
	display: inline;
	font-size: 14px;
	margin: 0;
	overflow-wrap: anywhere;
}

.announcement-banner__description p,
.announcement-banner__description ul,
.announcement-banner__description ol {
	display: inline;
	margin: 0;
	padding-left: 0;
}

.announcement-banner__description li {
	display: inline;
	margin-right: 8px;
}

.announcement-banner__actions {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 10px;
}

.announcement-banner__cta {
	align-items: center;
	border: 1px solid currentColor;
	border-radius: 999px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 7px;
	line-height: 1;
	padding: 8px 12px;
	text-decoration: none;
	white-space: nowrap;
}

.announcement-banner__cta:hover,
.announcement-banner__cta:focus {
	color: #fff;
	font-size: 15px;
	text-decoration: none;
}

.announcement-banner__cta i {
	font-style: normal;
	font-size: 15px;
	line-height: 1;
}

.announcement-banner__cta--green {
	background: #166534;
	color: #fff;
}

.announcement-banner__cta--amber {
	background: #92400e;
	color: #fff;
}

.announcement-banner__cta--red {
	background: #991b1b;
	color: #fff;
}

.announcement-banner__close {
	align-items: center;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid currentColor;
	border-radius: 999px;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 20px;
	height: 28px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 28px;
}

.announcement-admin-description {
	color: #667085;
	font-size: 13px;
	line-height: 1.45;
	margin-top: 5px;
	max-width: 720px;
}

.announcement-admin-pill {
	border-radius: 999px;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 10px;
}

.announcement-admin-pill--green {
	background: #dcfce7;
	color: #166534;
}

.announcement-admin-pill--amber {
	background: #fef3c7;
	color: #92400e;
}

.announcement-admin-pill--red {
	background: #fee2e2;
	color: #991b1b;
}

.announcement-admin-status {
	border-radius: 999px;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 6px 10px;
	white-space: nowrap;
}

.announcement-admin-status--active {
	background: #dcfce7;
	color: #166534;
}

.announcement-admin-status--closed {
	background: #f2f4f7;
	color: #344054;
}

@media (max-width: 767px) {
	.announcement-banner {
		padding: 10px 12px;
	}

	.announcement-banner__inner {
		gap: 10px;
		flex-wrap: wrap;
	}

	.announcement-banner__title {
		font-size: 14px;
	}

	.announcement-banner__description {
		font-size: 13px;
	}

	.announcement-banner__actions {
		width: 100%;
	}

	.announcement-banner__cta {
		justify-content: center;
		white-space: normal;
	}
}
