/* ======================
   RESET & BASE STYLES
   ====================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.blog-container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 2rem;
}

.blog-header {
	text-align: center;
	margin-bottom: 3rem;
}

.blog-title {
	font-size: 2.5rem;
	color: #2a3c54;
	margin-bottom: 1rem;
}

.blog-description {
	color: #666;
	font-size: 1.1rem;
}

.blog-categories {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.category-tag {
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	background: #f0f7ff;
	color: #2196f3;
	cursor: pointer;
	transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
	background: #2196f3;
	color: #fff;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.blog-post {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.blog-post:hover {
	transform: translateY(-5px);
}

.post-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-content {
	padding: 1.5rem;
}

.post-title {
	font-size: 1.3rem;
	color: #2a3c54;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.post-excerpt {
	color: #666;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.post-meta {
	display: flex;
	justify-content: space-between;
	color: #888;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.post-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.post-meta i {
	font-size: 1rem;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #2196f3;
	text-decoration: none;
	font-weight: 500;
	transition: gap 0.3s ease;
}

.read-more:hover {
	gap: 0.8rem;
}

.read-more i {
	transition: transform 0.3s ease;
}

.read-more:hover i {
	transform: translateX(3px);
}

.load-more {
	display: block;
	margin: 2rem auto;
	padding: 1rem 2rem;
	background: #2196f3;
	color: white;
	border: none;
	border-radius: 30px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.load-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

@media (max-width: 768px) {
	.blog-container {
		margin: 1rem;
		padding: 1rem;
	}

	.blog-title {
		font-size: 2rem;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}
}