.dr1013blog {
	font-family: 'Segoe UI', sans-serif;
	background: #eaf4fb;
	color: #333;
}

/* Section Header */
.dr1013blog .blog-section {
	padding: 70px 20px;
	text-align: center;
	background: linear-gradient(135deg, #00bcd4, #2196f3);
	color: white;
	border-radius: 0 0 40px 40px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.dr1013blog .blog-section h2 {
	font-size: 2.8em;
	margin-bottom: 15px;
	font-weight: 700;
}

.dr1013blog .blog-section p {
	font-size: 1.2em;
	max-width: 760px;
	margin: 0 auto 45px;
	line-height: 1.7;
}

/* Blog Cards Grid */
.dr1013blog .blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 35px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Individual Card */
.dr1013blog .blog-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: 0.4s ease;
	overflow: hidden;
	position: relative;
}

.dr1013blog .blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Card Image */
.dr1013blog .blog-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* Card Content */
.dr1013blog .blog-content {
	padding: 25px;
	text-align: left;
}

.dr1013blog .blog-content h3 {
	color: #007acc;
	font-size: 1.3em;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dr1013blog .blog-content h3 i {
	color: #00bcd4;
	font-size: 1.2em;
}

.dr1013blog .blog-content p {
	color: #555;
	font-size: 1em;
	line-height: 1.6;
}

/* Read More Link */
.dr1013blog .read-more {
	display: inline-block;
	margin-top: 16px;
	font-weight: 600;
	color: #0288d1;
	text-decoration: none;
	transition: color 0.3s ease;
}

.dr1013blog .read-more:hover {
	color: #01579b;
}

/* Modal */
.dr1013blog .modal {
	display: none;
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	overflow-y: auto;
	padding: 60px 20px;
}

.dr1013blog .modal-content {
	background: #ffffff;
	margin: 5% auto;
	padding: 30px;
	border-radius: 12px;
	width: 90%;
	max-width: 800px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dr1013blog .closeblog {
	float: right;
	font-size: 28px;
	font-weight: bold;
	color: #888;
}

.dr1013blog .closeblog:hover {
	color: #000;
	cursor: pointer;
}

/* Responsive Adjustments */
@media screen and (max-width: 500px) {
	.dr1013blog .blog-section h2 {
		font-size: 2.2em;
	}
}
