/*  frontend styles for bk-category-posts-with-pagination plug-in */

/* widget container */
.cpwp-widget-container {}
.cpwp-flex-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.cpwp-container-image {}
.cpwp-container-text {}
.cpwp-inner-text {
	padding-left: 0.8rem;
}
.cpwp-entry-title {
	font-size:12px;
}
.cpwp-excerpt {
	font-size: 11px;
}

/* pagination */
.cpwp-pagination {
	display: inline-block;
}
.cpwp-pagination a {
	float: left;
	padding: 8px 16px;
	text-decoration: none;
	border: 1px solid #ddd;
	font-size: 14px;
}
.bkcpwp-entry-title a {
	text-decoration:none !important;
}
.cpwp-pagination a.active {
	background-color: #238be7;
	color: white;
	border: 1px solid #238be7;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.cpwp-pagination a:hover:not(.active) {
	background-color: #1e73be;
	color: white !important;
}
.cpwp-pagination a:hover {
	color: white !important;
}
.cpwp-pagination a:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.cpwp-pagination a:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

/* tablet breakpoint */
@media all and (min-width: 768px) {
    .cpwp-flex-container > * {
        width: 50%;
    }
}

