h2 {
	font-size: 3rem;
	color: var(--dark-teal);
	margin-bottom: 20px;
}

.blog-single iframe {
	max-width: 100%;
	aspect-ratio: 16/9;
	height: unset;
}

/* ===================================================
   AUTHOR BOX - Sección de autor del artículo
   =================================================== */

/* Author Box - Diseño discreto y elegante, el foco está en el artículo */
.author-box {
	background: #f8f9fa;
	border-left: 3px solid #0066cc;
	border-radius: 6px;
	padding: 20px 25px;
	margin: 40px 0 30px 0;
	display: flex;
	align-items: center;
	gap: 20px;
}

.author-box__image {
	flex-shrink: 0;
}

.author-box__image img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.author-box__content h3 {
	font-size: 10px;
	color: #aaa;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 500;
	margin: 0 0 5px 0;
}

.author-box__name {
	font-size: 15px;
	color: #333;
	font-weight: 600;
	margin: 0 0 3px 0;
	line-height: 1.3;
}

.author-box__role {
	font-size: 13px;
	color: #777;
	margin: 0 0 2px 0;
	font-weight: 400;
}

.author-box__org {
	font-size: 12px;
	color: #999;
	margin: 0 0 8px 0;
}

.author-box__link {
	display: inline-block;
	color: #0066cc;
	padding: 4px 0;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.author-box__link:hover {
	opacity: 1;
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.author-box {
		padding: 18px 20px;
		gap: 15px;
	}

	.author-box__image img {
		width: 70px;
		height: 70px;
	}

	.author-box__name {
		font-size: 14px;
	}

	.author-box__role,
	.author-box__org {
		font-size: 12px;
	}

	.author-box__link {
		font-size: 11px;
	}
}

/* ===================================================
   DOCTOR CARD - Para menciones de doctores en el contenido
   =================================================== */

/* Card de doctor mencionado en el artículo */
.doctor-mention {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 12px 16px;
	margin: 20px 0;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	max-width: 100%;
}

.doctor-mention:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border-color: #0066cc;
}

.doctor-mention__image {
	flex-shrink: 0;
}

.doctor-mention__image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.doctor-mention__info {
	flex: 1;
	min-width: 0;
}

.doctor-mention__name {
	font-size: 16px;
	font-weight: 700;
	color: #003366;
	margin: 0 0 4px 0;
	line-height: 1.2;
}

.doctor-mention__role {
	font-size: 13px;
	color: #666;
	margin: 0 0 2px 0;
	line-height: 1.3;
}

.doctor-mention__org {
	font-size: 12px;
	color: #999;
	margin: 0;
}

.doctor-mention__arrow {
	flex-shrink: 0;
	color: #0066cc;
	font-size: 20px;
	opacity: 0.7;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.doctor-mention:hover .doctor-mention__arrow {
	transform: translateX(3px);
	opacity: 1;
}

/* Variante en bloque (full-width) */
.doctor-mention--block {
	display: flex;
	width: 100%;
	margin: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
	.doctor-mention {
		padding: 10px 12px;
		gap: 10px;
	}

	.doctor-mention__image img {
		width: 50px;
		height: 50px;
	}

	.doctor-mention__name {
		font-size: 15px;
	}

	.doctor-mention__role {
		font-size: 12px;
	}

	.doctor-mention__org {
		font-size: 11px;
	}
}
