main .inner {
	padding: 5rem;
	background-color: white;
}
.news-contents {
	width: 70%;
}
.topics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
}
.topic {
	margin: 0 1.5rem;
	padding: 1.5rem 0;
}
.topic a {
	overflow: hidden;
}
.topic a img {
	width: 100%;
	height: auto;
	transition: transform .3s ease;
	transform-origin: center center; 
	backface-visibility: hidden;
	transform: translateZ(0);
	will-change: transform;
	image-rendering: -webkit-optimize-contrast;
}
.topic a:hover img {
	transform: scale(1.08) translateZ(0);
}
.topic:hover:not(:has(.news-text:hover)) img {
	transform: scale(1.08) translateZ(0);
}
.date {
	padding: 2rem 0 .5rem;
	color: #999;
}
.news-title a {
	line-height: normal;
	font-size: 2.5rem;
	background: linear-gradient(#222, #222) 0 100% / 0 2px no-repeat;
	transition: background-size .3s ease;
}
.news-title a:hover {
	background-size: 100% 2px;
}
.topic:has(.news-read-more:hover) .news-title a,
.topic:has(a:hover img) .news-title a {
	background-size: 100% 2px;
}
.news-text {
	margin: 2rem 0 0;
	color: #333;
}
.news-read-more {
	display: inline-block;
	width: 55%;
	padding: 17px;
	margin: 2rem 0 0;
	font-size: 1.3rem;
	border: 1px solid #222;
	border-radius: 96px;
}
.news-read-more:hover{
	background-color: #222;
	color: #fff;
}
.pagination {
	margin: 10rem 0 0;
}
.pagination ul {
	display: inline-flex;
	gap: 3rem;
	padding: 4rem 0;
}
.pagination a:hover {
	color: #999;
}
.pagination li.current {
	color: #999;
}
.pagination .prev {
	position: absolute;
	top: 3.75rem;
	left: 0;
}
.pagination .next {
	position: absolute;
	top: 3.75rem;
	right: 0;
}
main .side-bar {
	padding: 1.5rem 1.5rem 0 6.5rem;
	width: 30%;
}
.new-posts, .category {
	margin: 0 0 3rem;
}
.new-posts h2, .category h2 {
	padding: 0 0 5px;
	margin: 0 0 2rem;
	font-size: 1.6rem;
	border-bottom: 2px solid #222;
}
.new-posts li, .category li {
	padding: 2rem 0;
}
.new-posts li:first-child, .category li:first-child {
	border: none;
}
.new-posts li a, .category li a {
	color: #333;
}
.new-posts li a:hover, .category li a:hover {
	color: #999;
}



/* ++++++++++++++++++++++++++ */
/* ++++++++smartPhone+++++ */
/* ++++++++++++++++++++++++++ */
@media screen and (max-width: 768px){
	main .inner {
		padding: 0;
	}
	.news-contents {
		width: 100%;
	}
	.topics {
		display: flex;
		flex-direction: column;
	}
	.topic {
		padding: 1.5rem 0 5rem;
		border-bottom: 1px solid #eee;
	}
	.topic:last-child {
		border-bottom: none;
	}
	.pagination {
		margin: 10rem 1.5rem 0;
	}
	main .side-bar {
		padding: 1.5rem 1.5rem 0;
		width: 100%;
	}
}
