.revi-ag-page {
	width: 100%;
}

.revi-ag-container {
	width: 100%;
	margin: 0 auto;
	padding: 24px 0 40px;
}

.revi-ag-header {
	margin-bottom: 24px;
}

.revi-ag-title {
	margin: 0 0 8px;
}

.revi-ag-description > :last-child {
	margin-bottom: 0;
}

.revi-ag-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.revi-ag-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dfe5ec;
	border-radius: 14px;
}

.revi-ag-media {
	position: relative;
	background: #f4f6f8;
}

.revi-ag-image-link {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.revi-ag-image,
.revi-ag-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.revi-ag-image {
	object-fit: cover;
}

.revi-ag-placeholder {
	background: #eef1f4;
}

.revi-ag-category {
	position: absolute;
	z-index: 2;
	top: 14px;
	left: 14px;
	max-width: calc(100% - 28px);
	padding: 7px 11px;
	overflow: hidden;
	color: #075f3a;
	background: #d8fae9;
	border: 1px solid #a7eecb;
	border-radius: 7px;
	font-size: .875rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.revi-ag-category:hover,
.revi-ag-category:focus {
	color: #053f2a;
	background: #c4f5dd;
}

.revi-ag-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 20px 20px;
}

.revi-ag-date {
	margin-bottom: 10px;
	color: #667085;
	font-size: .875rem;
}

.revi-ag-post-title {
	margin: 0 0 18px;
	font-size: inherit;
	line-height: 1.3;
}

.revi-ag-post-title a {
	color: inherit;
	text-decoration: none;
}

.revi-ag-post-title a:hover,
.revi-ag-post-title a:focus {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.revi-ag-read-more {
	align-self: flex-start;
	margin-top: auto;
	font-weight: 700;
	text-decoration: none;
}

.revi-ag-read-more span {
	margin-left: 4px;
}

.revi-ag-pagination {
	margin-top: 32px;
}

.revi-ag-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.revi-ag-pagination .page-numbers {
	display: inline-flex;
	min-width: 40px;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	text-decoration: none;
}

.revi-ag-pagination .page-numbers.current {
	font-weight: 700;
}

.revi-ag-empty {
	padding: 32px 0;
}

@media (max-width: 1024px) {
	.revi-ag-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.revi-ag-container {
		padding-top: 16px;
	}

	.revi-ag-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.revi-ag-body {
		padding: 16px;
	}
}
