/*
 * Under Construction notice — styled to match the AuthorCats theme,
 * with a wink to the classic 1990s "men at work" page. 🚧
 */

.under-construction-wrap {
	padding: 0 0 10px;
	text-align: center;
	display: block;
}

.under-construction-wrap h6 {
	display: block;
	margin: 0 auto;
	padding: 15px 0 0;
}

.under-construction {
	display: inline-block;
	margin: 8px auto 0;
	padding: 18px 28px;
	border: 2px dashed rgba(255, 255, 255, 0.35);
	border-radius: 30px;
	font-family: "Merriweather", serif;
	font-weight: 900;
	font-size: 19px;
	line-height: 1.4;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #ffffff;
}

.under-construction .uc-emoji {
	display: inline-block;
	font-size: 22px;
	vertical-align: -2px;
	margin: 0 8px;
	animation: uc-pulse 1.6s ease-in-out infinite;
}

.under-construction .uc-emoji:last-child {
	animation-delay: 0.8s;
}

@keyframes uc-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.25); opacity: 0.75; }
}

p.uc-sub {
	margin: 18px auto 0;
	font-size: 15px;
	opacity: 0.85;
}

/* Light (basic content) context, e.g. below the book blurb */
.basic-content-wrap .under-construction {
	border-color: rgba(35, 35, 35, 0.3);
	color: #232323;
}

@media screen and (max-width: 767px) {
	.under-construction {
		font-size: 17px;
		letter-spacing: 1px;
		padding: 14px 18px;
	}
	.under-construction .uc-emoji {
		font-size: 20px;
		margin: 0 6px;
	}
}
