.author-section {
	padding: 10rem 0;
}
.author-section .page-numbers li {
	list-style-type: none;
}
.author-section__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.author-section__info-avatar {
	width: 5rem;
	height: 5rem;
	object-fit: cover;
	border-radius: 50%;
}

.author-section__info-name {
	font-size: 2.625rem;
	color: var(--Primary-color-Oxfordblue);
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.author-section__info-description {
	text-align: center;
	font-size: 1rem;
	color: var(--Primary-color-Oxfordblue);
	line-height: 1.5;
}

.list-post {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	column-gap: 2.5rem;
	row-gap: 2.5rem;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.item_category_news .img a img {
	width: 100%;
	height: 12.625rem;
	object-fit: cover;
	border-radius: 0.625rem;
	transition: 0.5s ease-in-out;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.item_category_news .img a img:hover {
	transform: scale(1.05);
	transition: 0.5s ease-in-out;
}

.item_category_news .content a:first-child {
	color: white;
	background: var(--Primary-color-Oxfordblue);
	padding: 2px 5px;
	font-size: 0.75rem;
	border-radius: 5px;
	width: fit-content;
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

.item_category_news .content .title {
	color: var(--Primary-color-Azure-blue);
	font-size: 1.375rem;
	letter-spacing: 0.05rem;
	line-height: 1.75rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 5.625rem;
}

.item_category_news .content .title:hover {
	color: var(--Primary-color-Azure-blue-2);
}

.item_category_news .content .author-date {
	display: flex;
	align-items: center;
}

.item_category_news .content .author-date .author,
.item_category_news .content .author-date .date {
	display: flex;
	align-items: center;
	margin-right: 1.5rem;
}

.item_category_news .content .author-date .date svg {
	width: 1rem;
	height: 1rem;
	margin-right: 0.5rem;
	transform: translatey(-1px);
}

.item_category_news .content .author-date .author svg {
	width: 1.5em;
	height: 1.5em;
	margin-right: 0.5rem;
}

.item_category_news .content .author-date .author a {
	font-size: 0.875rem;
	line-height: 1.313rem;
	color: var(--Primary-color-Azure-blue);
	font-weight: 500;
}

.item_category_news .content .author-date .author a:hover {
	color: var(--Primary-color-Tangerine-Red);
}

.content .author-date .date svg {
	filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(57%)
		hue-rotate(201deg) brightness(93%) contrast(87%);
}

.item_category_news .content .author-date .date {
	font-size: 0.875rem;
	line-height: 1.313rem;
	color: var(--color-light-gray-blue-01);
	font-weight: 400;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
}

.pagination .page-numbers {
	width: auto;
	padding: 0 1rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-dark-gray);
}

.pagination .page-numbers.current {
	border: 1px solid #ff4e41;
}

.categories-post .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.pagination .page-numbers {
	width: auto;
	padding: 0 1rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-dark-gray);
}

.pagination .page-numbers.current {
	border: 1px solid #ff4e41;
}

@media screen and (max-width: 639.9px) {
	.author-section {
		padding: 6rem 0;
	}

	.pagination .page-numbers {
		width: auto;
		padding: 0 0.75rem;
		height: 2.5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--color-dark-gray);
	}

	.list-post {
		grid-template-columns: repeat(1, 1fr);
		padding: 0 1rem;
	}
	.author-section__info-description {
		padding: 0 1.25rem;
	}
	.author-section .page-numbers li{
		font-size: 0.75rem;
	}
}
