/* Announcements List - Styles */
.al-container {
	font-family: 'Roboto', system-ui, Arial, Helvetica, sans-serif;
	margin: 30px 0px;
	color: #073334;
}

.al-note {
	color: #1b4540;
	margin-bottom: 18px;
	font-size: 20px;
}

.al-filter-form {
	margin-bottom: 10px;
}

.al-filters {
	display: flex;
	gap: 12px;
	align-items: center;
}

.al-filters input[type="text"],
.al-filters input[type="date"] {
	padding: 12px 14px;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	min-width: 180px;
	box-sizing: border-box;
}

.al-search {
    background: #1b441d;
	color: #fff;
	border: none;
	padding: 12px 26px;
	border-radius: 28px;
	cursor: pointer;
}

.al-year-tabs {
	float: right;
	margin-top: -42px;
}

.al-year {
	margin-left: 8px;
	text-decoration: none;
	color: #0b4b47;
	font-weight: 600;
}

.al-year.active {
	text-decoration: underline;
}

.al-year-heading {
	clear: both;
	margin-top: 20px;
	margin-bottom: 10px;
	color: #073334;
	font-size: 18px !important;
}

.al-total {
	color: #666;
	margin-bottom: 18px;
}

.al-list {
	border-top: 1px solid #eee;
}

.al-row {
	display: flex;
/* 	grid-template-columns: 220px 1fr 48px; */
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #f1f1f1;
	justify-content: space-between;
	padding: 20px 10px;
}

.al-row.alt {
	background: #f6f6f6;
}

.al-date {
	font-weight: 700;
	color: #0b4b47;
}

.al-title a {
	color: #073334;
	text-decoration: none;
	font-size: 20px;
}

.al-pdf .dashicons {
	font-size: 20px;
}

.al-empty {
	padding: 20px;
	color: #666;
}

@media (max-width:800px) {
	.al-row {
		grid-template-columns: 1fr;
		grid-gap: 8px;
	}

	.al-year-tabs {
		float: none;
		margin-top: 10px;
	}
}