/*
 * Diario TI — bloque nativo Detalles
 * Tratamiento editorial para información complementaria desplegable.
 */

.dt-article-content .wp-block-details {
	background: #f2f6fb;
	border: 1px solid #d7e1ed;
	border-left: 5px solid #244a86;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(20, 47, 82, 0.06);
	margin: 32px 0;
	overflow: hidden;
	padding: 0 22px;
}

.dt-article-content .wp-block-details summary {
	color: #183e73;
	cursor: pointer;
	font-size: 1.05em;
	font-weight: 800;
	list-style: none;
	padding: 18px 38px 18px 0;
	position: relative;
}

.dt-article-content .wp-block-details summary::-webkit-details-marker {
	display: none;
}

.dt-article-content .wp-block-details summary::after {
	content: "+";
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	position: absolute;
	right: 2px;
	top: 15px;
}

.dt-article-content .wp-block-details[open] summary {
	border-bottom: 1px solid #d7e1ed;
	margin-bottom: 20px;
}

.dt-article-content .wp-block-details[open] summary::after {
	content: "−";
}

.dt-article-content .wp-block-details > :last-child {
	margin-bottom: 22px;
}

.dt-article-content .wp-block-details img {
	border-radius: 6px;
	height: auto;
	max-width: 100%;
}

@media (max-width: 600px) {
	.dt-article-content .wp-block-details {
		margin: 26px 0;
		padding: 0 16px;
	}
}
