/* Estilos completos de la sección Blog/Actualidad */
.blog-section {
	padding: 80px 0;
	background-color: #FFFFFF;
}

.container-blog-section {
	padding: 0px 60px;
}

.blog-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
}

.blog-header-left {
	flex: 1;
}

.blog-tag-header {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0B7BBB;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 20px;
}

.blog-tag-header .tag-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.blog-section h2 {
	font-size: 48px;
	margin-bottom: 0;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}

.blog-tag-header .aef-logo-tag {
	width: 16px;
	height: 21px;
	flex-shrink: 0;
}

.btn-blog {
	background-color: transparent;
	color: #0B7BBB;
	border: 2px solid #0B7BBB;
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	margin-top: 40px;
}

.btn-blog i {
	font-size: 14px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-card {
	background-color: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-image {
	position: relative;
	width: 100%;
	height: 350px;
	overflow: hidden;
	border-radius: 16px;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.blog-content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.blog-category {
	display: inline-block;
	color: #0B7BBB;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.blog-content h3 {
	font-size: 20px;
	line-height: 1.4;
	color: #1a1a1a;
	font-weight: 700;
	margin: 0;
}

.blog-date {
	font-size: 14px;
	color: #999999;
	margin: 0;
}

@media (max-width: 1024px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-section h2 {
		font-size: 38px;
	}

	.blog-header {
		flex-direction: column;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.blog-section {
		padding: 60px 0;
	}

	.blog-section h2 {
		font-size: 32px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.blog-image {
		height: 300px;
	}

	.btn-blog {
		width: 100%;
		justify-content: center;
	}
}
