@charset "utf-8";
/* CSS Document */

/************ Blog / Page List Cards ************/

.rssWrapper {
	width: 100%;
	margin: 0;
	padding: 0;
}

.listHeader {
	margin-bottom: 25px;
}

/* Card grid */
.thumbnailWrapper {
	width: 100%;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
	line-height: 1.45;
	text-align: left;
	box-sizing: border-box;
}

/* Individual card */
.thumbnailContainer {
	width: 100%;
	margin: 0;
	padding: 0;
	display: block;
	background-color: rgba(255,255,255,0.88);
	color: #363636;
	border: 4px solid #c9ddea;
	border-radius: 24px;
	box-sizing: border-box;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(23,63,122,0.12);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.thumbnailContainer:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 32px rgba(23,63,122,0.18);
	border-color: #6f8fe9;
}

/* Card content */
.thumbnail {
	min-height: 100%;
	padding: 22px 20px 24px;
	font-size: 0.95em;
	border: 0;
	box-sizing: border-box;
}

.thumbnail a {
	text-decoration: none;
}

/* Round image */
.thumbnail .imageThumb {
	width: 170px;
	height: 170px;
	display: block;
	margin: 0 auto 18px auto;
	text-align: center;
	border-radius: 50%;
	overflow: hidden;
	border: 6px solid #e7f1f8;
	box-shadow: 0 5px 16px rgba(23,63,122,0.14);
	box-sizing: border-box;
}

.thumbnail img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 50%;
	transition: transform 0.4s ease;
}

.thumbnailContainer:hover .thumbnail img {
	transform: scale(1.05);
}

/* Blog title */
.pagelistTitle {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	line-height: 1.35;
	color: #173f7a;
}

.pagelistTitle a {
	color: #173f7a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.pagelistTitle a:hover,
.pagelistTitle a:focus {
	color: #449b46;
}

/* Date */
.pagelistDate {
	margin: 12px 0 0 0;
	padding: 0 0 0 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 0.82em;
	line-height: 1.3;
	color: #5d6878;
	background-image: url("blog-clock.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 13px 13px;
}

/* Description */
.pagelistDescription {
	margin: 12px 0 0 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 0.92em;
	line-height: 1.55;
	color: #4d5665;
}

/* Optional alternate link */
.pagelistAltLink {
	margin: 16px 0 0 0;
	padding: 0;
}

.pagelistAltLink a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #449b46;
	font-weight: 600;
	text-decoration: none;
}

.pagelistAltLink a:hover {
	color: #173f7a;
	text-decoration: underline;
}

.pagelistAltLink a::after {
	content: "→";
}


/************ Pagination ************/

.ccm-pagination-wrapper {
	width: 100%;
	display: block;
	margin: 0;
	padding: 30px 0 0 0;
}

ul.pagination {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}

ul.pagination li {
	display: inline-block;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul.pagination li a,
ul.pagination li span {
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #173f7a;
	border: 2px solid #c9ddea;
	border-radius: 20px;
	box-sizing: border-box;
	text-decoration: none;
	font-weight: 600;
}

ul.pagination li a:hover {
	background: #6f8fe9;
	color: #ffffff;
	border-color: #6f8fe9;
}

ul.pagination li.page-item.active span {
	background: #173f7a;
	color: #ffffff;
	border-color: #173f7a;
}

ul.pagination li.page-item.disabled span {
	opacity: 0.45;
}

ul.pagination li.page-item .visually-hidden {
	display: none;
}


/************ Responsive ************/

@media only screen and (max-width: 1024px) {

	.thumbnailWrapper {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}

	.thumbnail .imageThumb {
		width: 160px;
		height: 160px;
	}
}

@media only screen and (max-width: 600px) {

	.thumbnailWrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4px;
	}

	.thumbnailContainer {
		border-radius: 20px;
	}

	.thumbnail {
		padding: 20px 18px 22px;
	}

	.thumbnail .imageThumb {
		width: 125px;
		height: 125px;
	}

	.pagelistTitle {
		font-size: 0.8em;
	}
}