@charset "UTF-8";

.announcements-search {
	display: flex;
	margin: 25px 0;
	justify-content: flex-end;
}
.announcements-search-input {
	width: 100%;
	max-width: 250px;
	height: 38px;
	margin-left: auto;
	padding: 3px 0 3px 20px;
	line-height: 30px;
	background: #fff;
	outline: none;
	font-size: 15px;
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
	border: 1px solid #ddd;
	border-right: none;
	transition: all ease 0.25s;
}
.announcements-search-input.wide {
	max-width: unset;
}
.announcements-search-button {
	width: 48px;
	height: 38px;
	line-height: 36px;
	background: #fff;
	border: 1px solid #ddd;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	transition: all ease 0.25s;
	font-size: 16px;
	color: #777;
}
.announcements-search-button:hover,
.announcements-search-button:active,
.announcements-search-button:focus {
	outline: none;
	color: #333;
	background: #eee;
}
.announcements-search-input:focus, .announcements-search-input:focus + .announcements-search-button {
	border-color: #07c;
}


.announcement-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.announcement-preview {
	margin: 25px 0;
	padding: 15px;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	border-radius: 3px;
}
.ap-heading {
	position: relative;
}
.ap-badges {
	position: absolute;
	top: 0;
	right: 0;
}
.ap-badge {
	float: left;
	margin-left: 5px;
	font-size: 18px;
	padding: 5px;
	background: #fff;
	border-radius: 100px;
	width: 32px;
	height: 32px;
	text-align: center;
	box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}
.ap-badge.pin {
	color: #555;
}
.ap-badge.new {
	color: #d21;
}

.ap-heading h2 {
	margin: 0;
	padding: 0;
}
.ap-heading a {
	color: #555;
	color: #23527c;
}
.ap-info {
	font-size: 13px;
	color: #777;
	margin: 10px 0;
}
.ap-intro {
	border-top: 1px solid #eee;
	padding: 10px 0 10px 0;
}
.ap-content {
	border-top: 1px solid #eee;
	padding-top: 15px;
}
.ap-read-more {
	font-size: 13px;
}

.announcement-content {
}
.ac-info {
	margin-top: 10px;
	font-size: 13px;
	color: #777;
}
.ac-content {
	margin-top: 30px;
}

