.soon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	margin-bottom: 100px;
}
.blog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.glossary {
	margin: 2rem 0;
}

.glossary h2 {
	text-align: center;
	margin-bottom: 4rem;
	color: var(--secondaryColor);
	font-size: 4rem;
	font-weight: bold;
	font-style: italic;
}

.glossary-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.glossary-item {
	background: var(--mainColor);
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 4px var(--fourthcolor);
}

.glossary-item h3 {
	color: var(--secondaryColor);
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.glossary-item p {
	color: var(--textColor);
	line-height: 1.5;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.glossary-grid {
		grid-template-columns: 1fr;
	}
}
.blog-articles {
	margin-bottom: 4rem;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.article-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.article-card:hover {
	transform: translateY(-5px);
}

.article-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-content {
	padding: 1.5rem;
}

.article-content h3 {
	margin: 0 0 0.5rem 0;
	color: #333;
}

.article-date {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.article-excerpt {
	color: #444;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.read-more {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: #333;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.read-more:hover {
	background: #555;
}

@media (max-width: 768px) {
	.articles-grid {
		grid-template-columns: 1fr;
	}
}
.blog-articles h2 {
	margin-bottom: 4rem;
	text-align: center;
	color: var(--secondaryColor);
	font-size: 4rem;
	font-weight: bold;
	font-style: italic;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.article-card {
	background: var(--textColor);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.article-card:hover {
	transform: translateY(-5px);
}

.article-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-content {
	padding: 1.5rem;
}

.article-content h3 {
	margin: 0 0 0.5rem 0;
	color: var(--secondaryColor);
}

.article-date {
	color: var(--mainColor);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.article-excerpt {
	color: var(--fourthColor);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.read-more {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--mainColor);
	color: var(--textColor);
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.read-more:hover {
	background: #555;
}

@media (max-width: 768px) {
	.articles-grid {
		grid-template-columns: 1fr;
	}
}
