/* Articles Section */
.articles-section {
	padding: 64px;
	width: 100%;
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	font-family: Arial, sans-serif;
}

.articles-section .heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin-bottom: 32px;
}

.articles-section img {
	background: var(--bblue);
	height: 200px;
	width: 150px;
	object-fit: cover;
	border-radius: 8px;
}

.articles-section h2 {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 2rem;
	color: var(--bblue);
}

.articles-section .articles-list {
	width: 100%;
	max-width: 1200px;
}

.articles-section .articles-list ul {
	list-style: none;
	padding: 0;
}

.articles-section .article-item {
	margin: 16px 0;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #f9f9f9;
}

.articles-section .article-details {
	display: flex;
	flex-direction: column;
}


.articles-section .article-details strong {
	font-size: 1rem;
	max-width: 800px;
	color: var(--bblue);
	text-decoration: underline;
	cursor: pointer;

}
.articles-section .article-details strong:hover {
	color: var(--red);
	transition: all 0.5s ease-in-out;
}



.articles-section .article-details span {
	font-size: 1em;

}
.articles-section .buttons {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}

.articles-section .download-btn {
	padding: 8px 20px;
	background-color: var(--bblue);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.articles-section .download-btn:hover {
	background-color: #005f8c;
}

@media (max-width: 768px) {
	.articles-section {
		padding: 40px 16px;
	}

	.articles-section .heading {
		flex-direction: column;
		gap: 16px;
	}

	.articles-section img {
		width: 120px;
		height: 120px;
	}

	.articles-section h2 {
		font-size: 1.8rem;
	}

	.articles-section .article-item {
		flex-direction: column;
		gap: 16px;
		padding: 12px;
	}

	.articles-section .buttons {
		justify-content: center;
	}
}
