.blog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 2rem;
	width: 100%;
}

.blog-card {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.blog-card:hover {
	transform: translateY(-5px);
}

.blog-image {
	height: 200px;
	background-color: #1a1f2d;
	position: relative;
}



.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.3rem 0.8rem;
	font-size: 0.8rem;
	font-weight: bold;
	border-radius: 2px;
}

.blog-content {
	padding: 1.5rem;
}

.blog-date {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0.5rem;
}

.blog-title {
	color:white;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.blog-excerpt {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.blog-card .read-more {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
}

.blog-card .read-more::after {
	content: "→";
	margin-left: 0.5rem;
}

.blog-pagination {
	display: flex;
	justify-content: center;
	margin: 4rem 0;
}

.blog-page-button {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	padding: 0.5rem 1rem;
	margin: 0 0.3rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.blog-page-button:hover, .blog-page-button.active {
	background-color: #001924;
	color: white;
	border-color: #001924;
}
@media screen and (max-width: 768px) {
	.blog-container {
		grid-template-columns: 1fr;
	}
}

.blog-main-container{
	display: flex;
    flex-direction: column;
    align-content: space-around;
    align-items: center;
}

.blog-main-container > h2{
	text-align: center;
}

.blog-section{
	background-color: #050707;
}
.blog-main-container h2{
	color:white;
}

.blog-image .blog-category{
	background-color: white;
    color: var(--primary);
}