body {
	direction: rtl;
	text-align: right;
	margin: 0;
	padding: 0;
}
.posts-list-hero-container {
	position: relative;
	width: 100%;
	height: 300px;
	background-color: #2E3E77;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	box-sizing: border-box;
	overflow: hidden;
}
.hero-container-image-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	z-index: 0;
}
.posts-list-hero-container::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(102, 51, 153, 0.7), rgba(50, 18, 122, 0.5));
	z-index: 1;
}
.hero-container-header {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #FFF;
}
h1.hero-container-header-title {
	color: #FFF;
	margin: 0;
	padding: 0;
}
.hero-container-header-meta {
	color: #FFF;
	font-size: 12px;
	margin: 0;
	padding: 0;
}
.posts-list-container-main {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.posts-list-container {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 50px 0;
}
.posts-list-container-header {
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.posts-list-container-main-title {
	font-size: 24px;
	font-weight: 800;
	color: #4D4D4D;
	line-height: 30px;
	margin: 0;
	text-align: right;
}
.posts-list-container-main-subtitle {
	font-size: 14px;
	font-weight: 500;
	color: #636C68;
	line-height: 20px;
	margin: 0;
	text-align: right;
}
.posts-list-container-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}
.keywords-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	direction: rtl;
}
.keyword-card {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	text-align: center;
	color: white;
}
.keyword-overlay {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	width: 100%;
	height: 100%;
	padding: 25px;
	align-items: center;
	align-content: center;
	text-align: center;
	color: #FFF;
	backdrop-filter: blur(4px);
}
.keyword-title, a.keyword-title {
	text-align: center;
	text-decoration: none;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
.keyword-count {
	color: #555;
	margin-bottom: 12px;
	font-size: 12px;
	color: #FFF;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
@media (max-width: 992px) {
	.keywords-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.keyword-card {
		position: relative;
		background-size: cover;
		background-position: center;
		overflow: hidden;
		min-height: 180px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 15px;
		text-align: center;
		color: white;
	}
	.keyword-overlay {
		background-color: rgba(0, 0, 0, 0.5);
		color: white;
		width: 100%;
		height: 100%;
		padding: 25px;
		align-items: center;
		align-content: center;
		text-align: center;
		color: #FFF;
		backdrop-filter: blur(4px);
	}
	.posts-list-container-main-title {
		font-size: 20px;
		font-weight: 900;
	}
	.posts-list-container-main-subtitle {
		font-size: 14px;
		font-weight: 500;
	}
}
@media (max-width: 576px) {
	.keywords-grid {
		grid-template-columns: 1fr;
	}
	.keyword-card {
		position: relative;
		background-size: cover;
		background-position: center;
		overflow: hidden;
		min-height: 180px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 15px;
		text-align: center;
		color: white;
	}
	.keyword-overlay {
		background-color: rgba(0, 0, 0, 0.5);
		color: white;
		width: 100%;
		height: 100%;
		padding: 25px;
		align-items: center;
		align-content: center;
		text-align: center;
		color: #FFF;
		backdrop-filter: blur(4px);
	}
	.posts-list-container-main-title {
		font-size: 20px;
		font-weight: 900;
	}
	.posts-list-container-main-subtitle {
		font-size: 14px;
		font-weight: 500;
	}
}