﻿body {
	margin: 0;
	font-family: Tahoma, sans-serif;
	background-color: #f0f0f0;
}

.banner {
	/*background: linear-gradient(to right, #5dade2, #154360);*/
	width: 90%; /* عرض بنر 90 درصد */
	margin: 0 auto; /* مرکز کردن بنر */
	background-image: -webkit-linear-gradient(135deg, #00296b 0%, #007bff 50%, #66b3ff 100%);
	background-image: linear-gradient(135deg, #00296b 0%, #007bff 50%, #66b3ff 100%);
	color: white;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	border-radius: 20px;
}

	.banner .logo img {
		max-height: 60px;
	}

	.banner .title {
		text-align: center;
		flex: 1;
		min-width: 220px;
	}

		.banner .title h1 {
			margin: 0;
			font-family:fntTehran;
			font-size: 28px;
			text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
		}

		.banner .title p {
			margin: 5px 0;
			font-size: 16px;
			text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
		}

	.banner .date {
		font-size: 14px;
		text-align: left;
	}

	/*4 بخش اصلی صفحه*/
body {
	font-family: Tahoma, sans-serif;
	direction: rtl;
	background-color: #f4f4f4;
}

.container {
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	width: 90%;
	margin: 30px auto;
}

.topic-card {
	box-sizing: border-box;
	width: 48%;
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 10px;
	background-color: #ffffff;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	transition: transform 0.2s, box-shadow 0.2s;
}

	.topic-card:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	}

	.topic-card img {
		max-width: 120px;
		margin-left: 15px;
		border-radius: 5px;
	}

.topic-content {
	display: flex;
	flex-direction: column;
}

.topic-title {
	font-size: 1.2em;
	font-weight: bold;
	text-align: right;
	margin-bottom: 5px;
}

	.topic-title a {
		color: #007bff;
		text-decoration: none;
	}

		.topic-title a:hover {
			text-decoration: underline;
		}

.topic-desc {
	font-size: 1em;
	color: #333;
	text-align: right;
}

/* موبایل */
@media (max-width: 768px) {
	.banner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

		.banner .logo {
			order: -1; /* لوگو بالای عنوان */
			margin-bottom: 15px;
		}

		.banner .date {
			margin-top: 15px;
		}
		/*چهار بخش وسط صفحه*/
	.topic-card {
		width: 100%;
		flex-direction: row;
	}

		.topic-card img {
			max-width: 100px;
		}
}
