/***** CURRICULUM Y EXPERIENCIA *****/
#curriculum-and-experience { background-color: var(--blush); padding-bottom: 96px; }

#back-title { display: block; padding: 92px 0 20px; text-align: center; color: var(--ink); }
#back-title > div { width: 92%; max-width: 760px; margin: 0 auto; }

#cv-exp-items {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	column-gap: 56px;
	align-items: start;
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: left;
}

#curriculum { grid-column: 1; grid-row: 1 / span 3; }
#certifications, #awards, #experience { grid-column: 2; }

#curriculum, #certifications, #awards, #experience {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 44px;
}

.cv-exp-section {
	padding-bottom: 12px;
	margin-bottom: 2px;
	border-bottom: 1px solid var(--blush-2);
	background: none;
	height: auto;
	line-height: 1.2;
	text-align: left;
}

.cv-exp-section > p {
	margin: 0;
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.item {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	grid-template-areas: "mark text" "mark type";
	column-gap: 18px;
	align-items: start;
	width: auto;
	margin: 0;
	padding: 18px 20px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
}

.logo-institution { grid-area: mark; height: auto; margin: 0; background: transparent; display: block; }
.logo-institution > div { width: auto; margin: 0; }

.mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	padding: 0;
	border-radius: 16px;
	background: var(--blush-2);
	color: var(--primary-ink);
	font-family: var(--font-display);
	font-size: 13.5px;
	font-weight: 650;
	letter-spacing: .01em;
	line-height: 1;
}

.mark.mark--long { font-size: 11.5px; letter-spacing: 0; }
.mark svg { width: 28px; height: 28px; }
.mark img {
	height: 42px;
	width: auto;
	max-width: 44px;
	display: block;
	object-fit: contain;
	filter: saturate(1.05);
}

.circle-item { display: none; }

.degree-description { grid-area: text; min-height: 0; margin: 0; background: none; color: var(--text); padding: 0; font-size: 15px; text-align: left; }

.degree { margin: 0 0 4px; padding: 0 !important; font-family: var(--font-body); font-weight: 650; font-size: 17px; line-height: 1.3; color: var(--ink); }

.degree-description > p { margin: 0; padding: 0; line-height: 1.55; }

.type {
	grid-area: type;
	position: static;
	justify-self: start;
	margin-top: 10px;
	padding: 3px 12px;
	border-radius: 999px;
	background: var(--blush);
	color: var(--primary-ink);
	font-size: 12.5px;
	font-weight: 600;
	font-style: normal;
	text-transform: none;
}

.cv-image-placeholder { display: none; }
/***** FIN CURRICULUM Y EXPERIENCIA *****/

@media only screen and (max-width: 991px) {
	#cv-exp-items { grid-template-columns: 1fr; }
	#curriculum, #certifications, #awards, #experience { grid-column: 1; grid-row: auto; }
}

@media only screen and (max-width: 599px) {
	#back-title { padding-top: 64px; }
	#curriculum-and-experience { padding-bottom: 64px; }
	.item { grid-template-columns: 56px minmax(0, 1fr); column-gap: 14px; padding: 16px; }
	.mark { width: 56px; height: 56px; }
	#curriculum, #certifications, #awards, #experience { margin-top: 34px; }
}
