.announcement {
	display: block;
	width: 100%;
	height: 395px;
	padding: 20px 0;
	margin-top: -395px;
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
	transition: margin 0.3s ease;
	border-bottom: 1px solid #394635;
	z-index: 1;
}
	.announcement.is-active { margin-top: 0; }

	.announcement .closer {
		display: inline-block;
		padding: 5px 10px;
		margin: 0;
		position: absolute;
		top: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.2);
		border: 0;
		z-index: 1;
	}
		.announcement .closer .fa {
			font-size: 32px;
			color: #394635;
		}

	.announcement .image-cont { display: none; }

	.announcement .detail-cont h2 {
		width: 92%;
		margin-bottom: 10px;
		font-size: 25px;
		line-height: 27px;
		cursor: default;
	}

	.announcement .detail-cont p {
		cursor: default;
		font-size: 1.3rem;
	}
		.announcement .detail-cont p img {
			padding: 8px 10px 5px 0;
			float: left;
		}

	.announcement .detail-cont .cta {
		display: block;
		padding: 12px 20px;
		background-color: #eca24f;
		text-align: center;
		text-shadow: 3px 1px 3px #333;
		font-family: "Alegreya Sans", sans-serif;
		font-size: 1rem;
		font-weight: 700;
		line-height: 1.25rem;
		color: #fff;
		border-radius: 5px;
		clear: both;
		transition: border-color 0.5s ease, background-color 0.5s ease;
	}

/* Tablet & up */
@media only screen and (min-width: 40.063em) {
	.announcement { height: 265px; }
}

/* Desktop & up */
@media only screen and (min-width: 64.063em) {
	.announcement {
		padding: 20px;
		margin-top: -265px;
		border-bottom: 0;
	}
	.announcement .closer {
		top: 15px;
		right: 25px;
	}
	.announcement .container {
		display: flex;
		flex-direction: row;
	}
	.announcement .image-cont {
		display: block;
		flex: 1 1 25%;
		margin-bottom: 0;
		text-align: center;
	}
	.announcement .detail-cont { flex: 1 1 75%; }
	.announcement .detail-cont h2 {
		width: 100%;
		font-size: 40px;
		line-height: 44px;
	}
	.announcement .detail-cont p img { display: none; }
	.announcement .detail-cont .cta { display: inline-block; }
}
