/* .pga-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	font-family: inherit;
} */

/* Controls bar */
.pga-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 55px;
}

.pga-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}


.pga-cat-btn {
	border: 1px solid #A4AEC0;
	background: #fff;
	color: #444;
	padding: 11px 16px;
	border-radius: 999px;
	font-size: 16px;
	line-height: 24px;
	cursor: pointer;
	font-weight: 400;
	text-transform: capitalize;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}


.pga-cat-btn:hover {
	background: #007DC3;
	border-color: #007DC3;
	color: #FDFDFD;
}

.pga-cat-btn.active {
	background: #007DC3;
	border-color: #007DC3;
	color: #FDFDFD;
}

.pga-search {
	position: relative;
	max-width: 528px;
	flex: 1 1 220px;
}


.pga-search-input {
    width: 100%;
    padding: 12px 16px 12px 50px;
    border-radius: 100px !important;
    border: 1px solid #A4AEC0;
    font-size: 16px;
    outline: none;
    line-height: 24px;
    font-weight: 400;
    background: #F2F4F6;
}

.pga-search-input:focus {
	border-color: #FFD204;
}

.pga-search-icon {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	display: flex;
}

/* Grid */
.pga-grid-container {
	position: relative;
}

.pga-grid {
	display: grid;
	grid-template-columns: repeat(var(--pga-columns, 3), 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.pga-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.pga-grid {
		grid-template-columns: 1fr;
	}
}



.pga-card {
	background: #F2F4F6;
	border-radius: 16px;
	padding: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .15s ease, box-shadow .15s ease;
}

/* .pga-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
} */


.pga-card-thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: #eee;
}


.pga-card-thumb img {
    width: 100%;
    height: 280px !important;
    object-fit: cover;
    display: block;
    border-radius: 12px !important;
}

.pga-card-thumb-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eee, #ddd);
}



.pga-card-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.pga-pga-badge-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pga-badge {
    background: #F8CAF9;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #030302;
}

.pga-card-date {
    font-size: 16px;
    color: #030302;
    line-height: 24px;
    font-weight: 400;
}

.pga-card-title {
	margin: 0;
    line-height: 32px !important;
	margin-bottom: 3px;
}

.pga-card-title a {
	text-decoration: none;
	font-size: 24px;
    font-weight: 600;
    line-height: 32px !important;
    color: #030302;
}

.pga-card-title a:hover {
	color: #007DC3;
}


.pga-card-excerpt {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #50515C;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pga-card-readmore {
    margin-top: auto;
    padding-top: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #007DC3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pga-card-readmore span {
	transition: transform .15s ease;
}

.pga-card-readmore:hover span {
	transform: translateX(3px);
}

.pga-no-results {
	grid-column: 1 / -1;
	text-align: center;
	color: #888;
	padding: 40px 0;
}

/* Loading overlay */
.pga-loading {
	display: none;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .08);
}

.pga-loading-visible {
	display: flex;
}

.pga-spinner {
	width: 32px;
	height: 32px;
	border: 3px solid #e2e2ea;
	border-top-color: #4f2fd8;
	border-radius: 50%;
	animation: pga-spin .7s linear infinite;
}

@keyframes pga-spin {
	to {
		transform: rotate(360deg);
	}
}

.pga-is-loading .pga-grid {
	opacity: .45;
	pointer-events: none;
	transition: opacity .15s ease;
}

/* Pagination */
.pga-pagination {
	margin-top: 55px;
	display: flex;
	justify-content: center;
}

.pga-pag-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.pga-page-btn {
    min-width: 48px;
    height: 48px;
    padding: 0 8px;
    border-radius: 4px;
    border: 1px solid #EBEFF9;
    background: #F2F4F6;
    color: #030302;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.pga-page-btn:hover:not(:disabled):not(.active) {
	background: #f4f4fb;
}

.pga-page-btn.active {
	background: #203965;
	border-color: #203965;
	color: #fff;
	cursor: default;
}

.pga-page-btn:disabled {
	opacity: .4;
	cursor: not-allowed;
}

.pga-dots {
	padding: 0 4px;
	color: #999;
}

.pga-page-btn.pga-next,
.pga-page-btn.pga-prev {
    background: #974399;
    width: 100px;
    color: #FDFDFD;
	transition: all 0.3s ease-in-out;
}

.pga-page-btn.pga-next:hover{
	background: #9f51a0 !important;
}