/**
 * Hero y layout base de secciones claustro.
 */

.jursoc-claustro {
	--claustro-primary: #003366;
	--claustro-dark: #001a33;
	--claustro-accent: #0d9488;
	--claustro-radius: 16px;
	font-family: inherit;
	color: #0f172a;
	max-width: none;
	width: 100%;
	margin: 0 auto 3rem;
	padding: 0 clamp(0.75rem, 1.5vw, 1.75rem);
	box-sizing: border-box;
}

.jursoc-claustro--estudiantes {
	--claustro-primary: #1e5aa8;
	--claustro-dark: #0f3460;
	--claustro-accent: #2d7dd2;
}

.jursoc-claustro--graduados {
	--claustro-primary: #0d9488;
	--claustro-dark: #065f56;
	--claustro-accent: #14b8a6;
}

.jursoc-claustro--docentes {
	--claustro-primary: #6d3fc0;
	--claustro-dark: #4a2875;
	--claustro-accent: #8b5cf6;
	--claustro-title-strip: #c4b5fd;
}

.jursoc-claustro--docentes.jursoc-claustro--layout-vertical {
	--claustro-strip: 12%;
	--claustro-content: 88%;
}

.jursoc-claustro--no-docentes {
	--claustro-primary: #c45c26;
	--claustro-dark: #8b3a14;
	--claustro-accent: #e07830;
}

.jursoc-claustro.alignwide,
.jursoc-claustro.alignfull {
	max-width: none;
	width: 100%;
}

/* Hero */
.jursoc-claustro__hero {
	position: relative;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
	border-radius: var(--claustro-radius);
	overflow: hidden;
	min-height: 0;
}

.jursoc-claustro__hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		118deg,
		var(--claustro-primary) 0%,
		var(--claustro-dark) 48%,
		color-mix(in srgb, var(--claustro-dark) 70%, var(--claustro-accent)) 78%,
		var(--claustro-accent) 100%
	);
}

.jursoc-claustro__hero-photo {
	position: absolute;
	inset: 0;
	left: 28%;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 72% center;
	opacity: 0.55;
	pointer-events: none;
}

.jursoc-claustro__hero-bg::after,
.jursoc-claustro__hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
}

.jursoc-claustro__hero-bg::after {
	background:
		linear-gradient(
			105deg,
			color-mix(in srgb, var(--claustro-dark) 92%, black) 0%,
			color-mix(in srgb, var(--claustro-primary) 72%, transparent) 42%,
			color-mix(in srgb, var(--claustro-primary) 25%, transparent) 68%,
			transparent 100%
		),
		radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.1), transparent 40%);
}

.jursoc-claustro__hero-photo::after {
	background: linear-gradient(90deg, color-mix(in srgb, var(--claustro-dark) 50%, transparent) 0%, transparent 35%);
}

.jursoc-claustro__hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem 1rem;
	padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1rem, 2.5vw, 1.5rem);
	color: #fff;
}

.jursoc-claustro__hero-copy {
	flex: 1 1 220px;
	min-width: 0;
	max-width: 36rem;
	color: #fff;
}

/* Kadence hereda color oscuro a h1 dentro de .entry-content */
.jursoc-claustro__hero .jursoc-claustro__eyebrow,
.jursoc-claustro__hero .jursoc-claustro__title:not(.jursoc-claustro__title--rotated),
.jursoc-claustro__hero .jursoc-claustro__lead,
.jursoc-claustro__hero h1.jursoc-claustro__title:not(.jursoc-claustro__title--rotated) {
	color: #fff !important;
}

.jursoc-claustro__eyebrow {
	margin: 0 0 0.15rem;
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.88;
}

.jursoc-claustro__title {
	margin: 0 0 0.2rem;
	font-size: clamp(1.35rem, 2.8vw, 1.65rem);
	font-weight: 700;
	line-height: 1.2;
}

.jursoc-claustro__lead {
	margin: 0;
	max-width: 34rem;
	font-size: clamp(0.8rem, 1.6vw, 0.9rem);
	line-height: 1.4;
	opacity: 0.92;
}

.jursoc-claustro__quick {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.35rem;
	flex: 0 1 auto;
}

.jursoc-claustro__quick-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
	white-space: nowrap;
}

.jursoc-claustro__quick-link:hover,
.jursoc-claustro__quick-link:focus-visible {
	background: rgba(255, 255, 255, 0.24);
	transform: translateY(-1px);
	color: #fff;
}

.jursoc-claustro__quick-icon {
	display: inline-flex;
	flex-shrink: 0;
	opacity: 0.95;
}

.jursoc-claustro__quick-icon svg,
.jursoc-claustro__quick-icon .jursoc-svg-icon {
	display: block;
	width: 1rem;
	height: 1rem;
	stroke: #fff;
}

.jursoc-claustro__quick-link:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

@media (max-width: 640px) {
	.jursoc-claustro__hero-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.jursoc-claustro__quick {
		justify-content: flex-start;
		width: 100%;
	}

	.jursoc-claustro__hero-photo {
		left: 0;
		opacity: 0.35;
		background-position: center top;
	}
}

/* Cuerpo simple */
.jursoc-claustro__body {
	padding: clamp(1rem, 2vw, 1.5rem);
	border-radius: var(--claustro-radius);
	background: color-mix(in srgb, var(--claustro-primary) 6%, #fff);
	border: 1px solid color-mix(in srgb, var(--claustro-primary) 18%, transparent);
}

.jursoc-claustro__intro {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #334155;
}

/* Kadence: sin banda de título ni hueco superior */
body.jursoc-page-claustro .page-hero-section,
body.jursoc-page-claustro .entry-hero.page-hero-section,
body.jursoc-page-claustro .page-hero-section .entry-hero-container-inner,
body.jursoc-page-claustro .entry-hero .entry-header {
	display: none !important;
}

body.jursoc-page-claustro .content-area,
body.jursoc-page-claustro .site-container,
body.jursoc-page-claustro .content-container.site-container {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
}

body.jursoc-page-claustro #primary {
	margin: 0;
}

body.jursoc-page-claustro .entry.content-bg,
body.jursoc-page-claustro .entry-content-wrap,
body.jursoc-page-claustro .entry-content,
body.jursoc-page-claustro .wp-block-post-content {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

body.jursoc-page-claustro .entry-content-wrap {
	padding: 0 !important;
}

body.jursoc-page-claustro .jursoc-claustro,
body.jursoc-page-claustro .jursoc-docentes {
	width: 100%;
	margin-top: 0;
	padding-top: clamp(0.5rem, 1.5vw, 0.85rem);
}

/* ── Layout 90% contenido + 10% tira vertical derecha (Docentes) ─── */

.jursoc-claustro--layout-vertical {
	--claustro-strip: 10%;
	--claustro-content: 90%;
	max-width: none;
	width: 100%;
	padding: 0;
	margin: 0 0 3rem;
	overflow-x: hidden;
}

.jursoc-claustro--strip-right .jursoc-claustro__split {
	grid-template-columns: var(--claustro-content) minmax(64px, var(--claustro-strip));
}

body.jursoc-page-claustro .jursoc-claustro--layout-vertical {
	padding-top: 0;
}

.jursoc-claustro__split {
	display: grid;
	grid-template-columns: var(--claustro-strip) var(--claustro-content);
	align-items: stretch;
	width: 100%;
	min-height: 100vh;
}

.jursoc-claustro--strip-right .jursoc-claustro__main {
	grid-column: 1;
	grid-row: 1;
}

.jursoc-claustro--strip-right .jursoc-claustro__strip-panel {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	min-width: 0;
}

.jursoc-claustro--strip-right .jursoc-claustro__strip-panel .jursoc-claustro__hero--vertical {
	grid-column: auto;
	grid-row: auto;
	width: 100%;
}

/* Botón colapsar / expandir franja (Docentes) */
.jursoc-claustro__strip-toggle {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 12;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 3.25rem;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-right: none;
	border-radius: 0.45rem 0 0 0.45rem;
	background: color-mix(in srgb, var(--claustro-dark, #2d1b4e) 88%, transparent);
	color: #ede9fe;
	cursor: pointer;
	transform: translate(-100%, -50%);
	box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
	transition:
		background 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.35s ease;
}

.jursoc-claustro__strip-toggle:hover,
.jursoc-claustro__strip-toggle:focus-visible {
	background: var(--claustro-primary, #5b21b6);
	color: #fff;
	outline: 2px solid #c4b5fd;
	outline-offset: 2px;
}

.jursoc-claustro__strip-toggle-icon {
	display: block;
	transition: transform 0.35s ease;
}

.jursoc-claustro--strip-collapsed .jursoc-claustro__strip-toggle-icon {
	transform: rotate(180deg);
}

.jursoc-claustro--strip-right.jursoc-claustro--strip-collapsed .jursoc-claustro__split {
	grid-template-columns: 1fr 0;
	transition: grid-template-columns 0.35s ease;
}

.jursoc-claustro--strip-collapsed .jursoc-claustro__strip-panel .jursoc-claustro__hero--vertical {
	visibility: hidden;
	width: 0;
	max-width: 0;
	min-width: 0;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
}

.jursoc-claustro--strip-collapsed .jursoc-claustro__strip-toggle {
	position: fixed;
	top: 50%;
	right: 0;
	left: auto;
	border-right: 1px solid rgba(255, 255, 255, 0.22);
	border-left: none;
	border-radius: 0.45rem 0 0 0.45rem;
	transform: translateY(-50%);
}

.jursoc-claustro__hero.jursoc-claustro__hero--vertical {
	overflow: hidden;
}

.jursoc-claustro--layout-vertical .jursoc-claustro__hero--vertical {
	position: sticky;
	top: 0;
	align-self: start;
	width: 100%;
	height: 100vh;
	max-height: 100vh;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

/* Foto de fondo igual que el hero horizontal */
.jursoc-claustro__hero--vertical .jursoc-claustro__hero-photo {
	inset: 0;
	left: 0;
	opacity: 0.55;
	background-position: 72% center;
	background-size: cover;
}

.jursoc-claustro__hero--vertical .jursoc-claustro__hero-photo::after {
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--claustro-dark) 72%, transparent) 0%,
		color-mix(in srgb, var(--claustro-primary) 35%, transparent) 55%,
		transparent 100%
	);
}

.jursoc-claustro__hero-rail {
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1rem;
	min-height: 100%;
	padding: clamp(1rem, 2vw, 1.5rem) clamp(0.45rem, 1vw, 0.65rem);
}

.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail {
	--strip-head-h: clamp(3.25rem, 11vh, 5rem);
	--strip-foot-h: clamp(2.5rem, 8vh, 3.5rem);
	container-type: size;
	container-name: claustro-rail;
	position: relative;
	display: block;
	min-height: 100%;
	padding: var(--strip-head-h) clamp(0.25rem, 0.5vw, 0.4rem) var(--strip-foot-h);
	color: #fff;
	background: transparent;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.jursoc-claustro--strip-right .jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail {
	border-right: none;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail-head {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 12;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	padding: clamp(0.55rem, 1.2vh, 0.85rem) clamp(0.15rem, 0.35vw, 0.3rem) 0.35rem;
	background: linear-gradient(
		to bottom,
		color-mix(in srgb, var(--claustro-dark) 90%, transparent) 40%,
		transparent 100%
	);
}

.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail-foot {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 12;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	padding: 0 0 clamp(0.55rem, 1vh, 0.75rem);
	background: linear-gradient(
		to top,
		color-mix(in srgb, var(--claustro-dark) 88%, transparent) 35%,
		transparent 100%
	);
}

.jursoc-claustro__hero-rail::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(
		180deg,
		var(--claustro-accent),
		color-mix(in srgb, var(--claustro-accent) 40%, transparent)
	);
}

.jursoc-claustro--strip-right .jursoc-claustro__hero-rail::before {
	left: auto;
	right: 0;
}

.jursoc-claustro__hero--vertical .jursoc-claustro__title-zone {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-height: calc(100% - var(--strip-head-h) - var(--strip-foot-h) - 1rem);
	margin: 0;
	padding: 0;
	overflow: visible;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

/* Título centrado en la franja (Docentes) */
.jursoc-claustro--strip-right .jursoc-claustro__hero--vertical .jursoc-claustro__title-zone {
	inset: var(--strip-head-h) 0 var(--strip-foot-h) 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	padding: 0 0.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transform: none;
}

.jursoc-claustro__hero--vertical h1.jursoc-claustro__strip-title,
#jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
	display: block;
	visibility: visible;
	opacity: 1;
	margin: 0;
	padding: 0;
	font-size: clamp(1.65rem, 5vmin, 2.65rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #c4b5fd !important;
	-webkit-text-fill-color: #c4b5fd !important;
	background: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	text-shadow: 0 2px 12px rgba(74, 40, 117, 0.85);
	white-space: nowrap;
	transform: rotate(-90deg);
	transform-origin: center center;
}

.jursoc-claustro--strip-right .jursoc-claustro__hero--vertical h1.jursoc-claustro__strip-title,
.jursoc-claustro--strip-right #jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
	--title-chars: 8;
	display: block;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	font-size: max(
		1.45rem,
		min(
			76cqw,
			calc((100cqh - var(--strip-head-h) - var(--strip-foot-h) - 2rem) / (var(--title-chars) * 0.68)),
			3.35rem
		)
	);
	line-height: 1;
	letter-spacing: 0.06em;
	transform: rotate(-90deg);
	transform-origin: center center;
}

/* Docentes: título lateral más grande, ajustado al alto de la franja */
.jursoc-claustro--docentes.jursoc-claustro--strip-right #jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
	font-size: max(
		1.65rem,
		min(
			92cqw,
			calc((100cqh - var(--strip-head-h) - var(--strip-foot-h) - 1.15rem) / (var(--title-chars) * 0.58)),
			4.55rem
		)
	);
	font-weight: 900;
	letter-spacing: 0.11em;
	text-shadow:
		0 0 32px rgba(167, 139, 250, 0.5),
		0 0 10px rgba(221, 214, 254, 0.35),
		0 3px 20px rgba(45, 25, 72, 0.92);
}

@supports not (width: 1cqw) {
	.jursoc-claustro--strip-right .jursoc-claustro__hero--vertical h1.jursoc-claustro__strip-title,
	.jursoc-claustro--strip-right #jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
		font-size: max(1.45rem, min(8.5vw, calc((100svh - 14rem) / 5.5), 3.35rem));
	}

	.jursoc-claustro--docentes.jursoc-claustro--strip-right #jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
		font-size: max(1.65rem, min(10.5vw, calc((100svh - 12rem) / 4.85), 4.55rem));
	}
}

.jursoc-claustro__hero--vertical .jursoc-claustro__eyebrow--strip {
	display: none;
}

.jursoc-claustro__eyebrow-dot {
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	margin-right: 0.4rem;
	border-radius: 50%;
	background: var(--claustro-accent);
	box-shadow: 0 0 12px var(--claustro-accent);
	vertical-align: middle;
}

.jursoc-claustro__title--sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail-mid {
	display: none;
}


.jursoc-claustro__hero-rule {
	height: 1px;
	margin-top: 1rem;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), transparent);
}

.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top {
	display: block;
	width: 100%;
}

.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-list {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 1.85rem;
	min-height: 1.85rem;
	padding: 0.35rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	opacity: 1;
	transform: none;
	animation: none;
}

.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-link:hover,
.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-link:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

.jursoc-claustro--layout-vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-icon svg,
.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-icon .jursoc-svg-icon {
	width: 1.05rem;
	height: 1.05rem;
}

.jursoc-claustro__quick-label {
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	opacity: 0.7;
}

.jursoc-claustro--layout-vertical .jursoc-claustro__quick-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.jursoc-claustro--layout-vertical .jursoc-claustro__hero-scroll span {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.jursoc-claustro--layout-vertical .jursoc-claustro__hero-scroll {
	align-self: center;
	padding: 0.35rem;
}

.jursoc-claustro__quick--vertical .jursoc-claustro__quick-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.jursoc-claustro__quick--vertical .jursoc-claustro__quick-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 100%;
	padding: 0.45rem 0.35rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.72rem;
	white-space: normal;
	text-align: center;
	opacity: 0;
	transform: translateY(8px);
	animation: claustro-link-in 0.5s ease forwards;
	animation-delay: calc(0.35s + var(--link-i, 0) * 0.07s);
}

.jursoc-claustro--layout-vertical .jursoc-claustro__quick--vertical .jursoc-claustro__quick-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.jursoc-claustro--layout-vertical .jursoc-claustro__quick-arrow {
	display: none;
}

.jursoc-claustro__quick-arrow {
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s, transform 0.2s;
	font-size: 1rem;
}

.jursoc-claustro__quick--vertical .jursoc-claustro__quick-link:hover .jursoc-claustro__quick-arrow,
.jursoc-claustro__quick--vertical .jursoc-claustro__quick-link:focus-visible .jursoc-claustro__quick-arrow {
	opacity: 1;
	transform: translateX(0);
}

@keyframes claustro-link-in {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.jursoc-claustro__hero-scroll {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	align-self: center;
	flex-shrink: 0;
	margin-top: 0;
	padding: 0.35rem 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.72rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	transition: color 0.2s, border-color 0.2s;
}

.jursoc-claustro__hero-scroll:hover,
.jursoc-claustro__hero-scroll:focus-visible {
	color: #fff;
	border-color: #fff;
}

.jursoc-claustro__hero-scroll svg {
	flex-shrink: 0;
}

.jursoc-claustro--strip-right .jursoc-claustro__hero-scroll svg {
	transform: scaleX(-1);
}

.jursoc-claustro--layout-vertical .jursoc-claustro__main {
	min-width: 0;
	max-width: none;
	margin: 0;
	padding: clamp(1.25rem, 2.5vw, 2.5rem) clamp(1.25rem, 3vw, 2.75rem);
	box-sizing: border-box;
}

@media (max-width: 900px) {
	.jursoc-claustro--layout-vertical {
		--claustro-strip: 100%;
		--claustro-content: 100%;
	}

	.jursoc-claustro__split {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.jursoc-claustro--layout-vertical .jursoc-claustro__hero--vertical {
		container-type: normal;
		position: relative;
		height: auto;
		max-height: none;
		min-height: 0;
		overflow: visible;
	}

	.jursoc-claustro--strip-right .jursoc-claustro__split {
		display: flex;
		flex-direction: column;
	}

	.jursoc-claustro--strip-right .jursoc-claustro__strip-panel {
		order: -1;
		grid-column: auto;
		grid-row: auto;
	}

	.jursoc-claustro--strip-right .jursoc-claustro__strip-panel .jursoc-claustro__hero--vertical {
		order: 0;
	}

	.jursoc-claustro--strip-collapsed .jursoc-claustro__strip-panel {
		order: 2;
		width: 0;
		min-height: 0;
		overflow: visible;
	}

	.jursoc-claustro--strip-collapsed .jursoc-claustro__strip-panel .jursoc-claustro__hero--vertical {
		display: none;
	}

	.jursoc-claustro--strip-collapsed .jursoc-claustro__strip-toggle {
		position: fixed;
		top: auto;
		bottom: 1.25rem;
		right: 1rem;
		left: auto;
		z-index: 50;
		transform: none;
		border-radius: 0.45rem;
		border: 1px solid rgba(255, 255, 255, 0.22);
	}

	.jursoc-claustro--strip-right .jursoc-claustro__main {
		order: 0;
		grid-column: auto;
		grid-row: auto;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail {
		--strip-head-h: auto;
		--strip-foot-h: auto;
		display: flex;
		flex-direction: column;
		gap: 1rem;
		min-height: min(380px, 52vh);
		padding: clamp(1.25rem, 4vw, 1.75rem) clamp(1rem, 4vw, 1.5rem);
		border-right: none;
		border-left: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: none;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail-head {
		position: static;
		order: 1;
		background: none;
		padding: 0;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.45rem;
	}

	.jursoc-claustro--layout-vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-text {
		position: static;
		width: auto;
		height: auto;
		margin: 0;
		overflow: visible;
		clip: auto;
		white-space: normal;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__quick--strip-top .jursoc-claustro__quick-link {
		min-width: auto;
		padding: 0.5rem 0.65rem;
		gap: 0.4rem;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail {
		container-type: normal;
	}

	.jursoc-claustro--strip-right .jursoc-claustro__hero--vertical .jursoc-claustro__title-zone {
		position: relative;
		inset: auto;
		order: 2;
		width: 100%;
		max-height: none;
		padding: 0;
		justify-content: center;
		transform: none;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail-foot {
		position: static;
		order: 4;
		background: none;
		padding: 0;
	}

	.jursoc-claustro__hero--vertical h1.jursoc-claustro__strip-title,
	#jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
		transform: none;
		transform-origin: center center;
		font-size: clamp(1.85rem, 9vw, 2.75rem);
		letter-spacing: 0.06em;
		padding-right: 0;
		color: #c4b5fd !important;
		-webkit-text-fill-color: #c4b5fd !important;
	}

	.jursoc-claustro--docentes.jursoc-claustro--strip-right #jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
		font-size: clamp(2rem, 11vw, 3.15rem);
		font-weight: 900;
		letter-spacing: 0.1em;
	}

	.jursoc-claustro--strip-right .jursoc-claustro__hero--vertical h1.jursoc-claustro__strip-title,
	.jursoc-claustro--strip-right #jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
		text-align: center;
		width: 100%;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail-mid {
		display: block;
		order: 3;
		text-align: center;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__hero-rail-mid .jursoc-claustro__lead {
		font-size: 0.85rem;
		max-width: 28rem;
		margin: 0 auto;
	}

	.jursoc-claustro__hero-rail-foot {
		order: 4;
		width: 100%;
	}


	.jursoc-claustro__hero-scroll {
		align-self: center;
	}

	.jursoc-claustro__hero--vertical .jursoc-claustro__hero-photo {
		left: 0;
		opacity: 0.55;
		background-position: 72% center;
	}

	.jursoc-claustro--layout-vertical .jursoc-claustro__quick-label,
	.jursoc-claustro--layout-vertical .jursoc-claustro__hero-scroll span {
		position: static;
		width: auto;
		height: auto;
		margin: 0;
		overflow: visible;
		clip: auto;
		white-space: normal;
	}
}

@media (max-width: 480px) {
}

@media (prefers-reduced-motion: reduce) {
	.jursoc-claustro__quick--vertical .jursoc-claustro__quick-link,
	.jursoc-claustro__hero-scroll svg {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.jursoc-claustro--strip-right .jursoc-claustro__hero--vertical h1.jursoc-claustro__strip-title,
	.jursoc-claustro--strip-right #jursoc-claustro-title-docentes.jursoc-claustro__strip-title {
		transform: none;
		transform-origin: center center;
	}

	.jursoc-claustro__strip-toggle,
	.jursoc-claustro__strip-toggle-icon,
	.jursoc-claustro--strip-right.jursoc-claustro--strip-collapsed .jursoc-claustro__split {
		transition: none;
	}
}
