/* Store Notice Bar — front-end base styles */

.simple-banner {
	display: block;
	overflow: hidden;
	line-height: 1.4;
	transition: background-color 0.2s ease;
}

.simple-banner.snb-hidden {
	display: none !important;
}

.simple-banner-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: inherit;
	padding: 8px 16px;
	box-sizing: border-box;
}

.simple-banner-text a {
	text-decoration: underline;
	font-weight: 600;
}

.simple-banner-text a:hover {
	text-decoration: none;
}

@media (max-width: 600px) {
	.simple-banner-inner {
		padding: 8px 14px;
		font-size: 0.95em;
	}
}
