
.core-program-page {
	--core-program-accent: #0b285e;
	--core-program-accent-rgb: 11,40,94;
	--core-program-radius: 10px;
	--core-program-border: rgba(0,0,0,.10);
	box-sizing: border-box;
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw !important;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 0 15px;
	color: #202020;
	font-family: "Inter Tight", Inter, system-ui, sans-serif;
}

.core-program-page *,
.core-program-page *::before,
.core-program-page *::after {
	box-sizing: border-box;
}

.core-program-page button,
.core-program-page input,
.core-program-page select {
	font: inherit;
}

.core-program-loading {
	position: absolute;
	z-index: 100;
	inset: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 210px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .18s ease, visibility .18s ease;
}

.core-program-page.is-loading .core-program-loading {
	opacity: 1;
	visibility: visible;
}

.core-program-spinner {
	width: 34px;
	height: 34px;
	border: 3px solid rgba(255,255,255,.65);
	border-top-color: var(--core-program-accent);
	border-radius: 50%;
	background: rgba(255,255,255,.85);
	animation: core-program-spin .8s linear infinite;
}

@keyframes core-program-spin {
	to { transform: rotate(360deg); }
}

.core-program-page.is-loading > :not(.core-program-loading):not(.core-program-lightbox) {
	opacity: .38;
	filter: saturate(.88);
	pointer-events: none;
}

.core-program-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: start;
}

.core-program-head-left {
	display: grid;
	grid-template-rows: auto 56px 1fr;
	gap: 10px;
	height: 470px;
	min-width: 0;
}

.core-program-titlebox {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 48px 3.5vw;
	overflow: hidden;
	border-radius: var(--core-program-radius);
	background-image: url("https://fetean.org/wp-content/uploads/2026/01/blur-title-300x237.jpg");
	background-size: cover;
	background-position: center;
}

.core-program-titlebox h1 {
	margin: 0;
	overflow: hidden;
	color: #fff;
	font-family: "Inter Tight", Inter, system-ui, sans-serif;
	font-size: 64px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.06;
	text-overflow: ellipsis;
	text-transform: none;
	white-space: nowrap;
}

.core-program-years {
	display: flex;
	height: 56px;
	overflow: hidden;
	border: 1px solid var(--core-program-border);
	border-radius: var(--core-program-radius);
	background: #fff;
}

.core-program-year {
	flex: 1 1 0;
	min-width: 0;
	height: 56px;
	padding: 0 10px;
	border: 0;
	border-left: 1px solid var(--core-program-border);
	background: transparent;
	color: #222;
	font-family: "Roboto Mono", monospace;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: .06em;
	cursor: pointer;
	transition: color .18s ease, background-color .18s ease;
}

.core-program-page .core-program-years .core-program-year {
	font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
	font-weight: 600 !important;
	font-synthesis: none;
}


.core-program-year:first-child {
	border-left: 0;
}

.core-program-year:hover {
	color: var(--core-program-accent);
}

.core-program-year.is-active {
	background: var(--core-program-accent);
	color: #fff;
	font-family: "Roboto Mono", monospace;
	font-weight: 600;
	cursor: default;
}

.core-program-page .core-program-years .core-program-year.is-active {
	font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
	font-weight: 600 !important;
}


.core-program-year:disabled {
	opacity: 1;
}

.core-program-year-select-wrap {
	display: none;
}

.core-program-news {
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 32px 3.5vw;
	overflow: hidden;
	border-radius: var(--core-program-radius);
	background: var(--core-program-accent);
	color: #fff;
}

.core-program-news-heading {
	margin: 3px 0 16px;
	font-family: "Roboto Mono", monospace;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .10em;
}

.core-program-news-empty {
	max-width: 780px;
	padding: 10px 0;
	border-top: 1px solid rgba(255,255,255,.24);
	border-bottom: 1px solid rgba(255,255,255,.24);
	font-size: 16px;
	line-height: 1.42;
}

.core-program-posterbox {
	--core-program-poster: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	height: 470px;
	padding: 32px 3.5vw;
	overflow: hidden;
	border: 1px solid var(--core-program-border);
	border-radius: var(--core-program-radius);
	background: #f4f4f5;
	isolation: isolate;
}

.core-program-posterbox::before {
	content: "";
	position: absolute;
	inset: -15%;
	z-index: -2;
	background-image: var(--core-program-poster);
	background-size: cover;
	background-position: center;
	filter: blur(80px) saturate(1.1) brightness(1.08);
	opacity: .88;
}

.core-program-posterbox::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(var(--core-program-accent-rgb), .14);
}

.core-program-poster-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.core-program-poster-image {
	display: block;
	width: auto;
	max-width: none;
	height: 100%;
	max-height: 100%;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 10px;
	object-fit: contain;
}

.core-program-poster-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	max-width: 100%;
	height: 100%;
	padding: 30px;
	border: 1px dashed rgba(0,0,0,.20);
	border-radius: 10px;
	background: rgba(255,255,255,.50);
	color: rgba(0,0,0,.48);
	text-align: center;
}

.core-program-section,
.core-program-awards,
.core-program-entities-host {
	margin-top: 10px;
}

.core-program-section-titlebar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 64px;
	padding: 10px 3.5vw;
	border: 1px solid var(--core-program-border);
	border-top: 4px solid var(--core-program-accent);
	border-radius: var(--core-program-radius);
	background: #fff;
}

.core-program-section-titlebar h2 {
	margin: 0;
	color: #222;
	font-family: "Roboto Mono", monospace;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.15;
}

.core-program-programming-tools {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.core-program-stat {
	color: rgba(0,0,0,.55);
	font-family: "Roboto Mono", monospace;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	white-space: nowrap;
}

.core-program-search-control {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 40px;
}

.core-program-search-toggle {
	display: flex;
	flex: 0 0 40px;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--core-program-accent);
	color: #fff;
	cursor: pointer;
	transition:
		background-color .25s ease,
		border-radius .25s ease,
		transform .25s ease;
}

.core-program-search-toggle svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
	transition:
		color .25s ease,
		transform .35s ease,
		opacity .25s ease;
}

.core-program-search-field {
	width: 0;
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition:
		width .35s ease,
		max-width .35s ease,
		opacity .25s ease;
}

.core-program-search-control.is-open .core-program-search-field {
	width: min(460px, 36vw);
	max-width: 460px;
	opacity: 1;
	pointer-events: auto;
}

.core-program-search-control.is-open .core-program-search-toggle {
	border-radius: 10px;
	background: transparent;
	color: rgba(0,0,0,.55);
	transform: translateX(-2px);
}

.core-program-search-control.is-open .core-program-search-toggle svg {
	transform: translateY(1px);
}

.core-program-search-field label {
	display: block;
}

.core-program-search-field input {
	width: 100%;
	height: 40px;
	padding: 0 2px 2px;
	border: 0;
	border-bottom: 1px solid var(--core-program-border);
	border-radius: 0;
	background: transparent;
	color: #222;
	font-size: 16px;
	outline: 0;
}

.core-program-search-field input:focus {
	border-bottom-color: var(--core-program-accent);
	box-shadow: none;
}

.core-program-search-field input::placeholder {
	color: rgba(0,0,0,.43);
}

.core-program-events-host {
	margin-top: 10px;
}

.core-program-events-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.core-program-events-grid.has-video-mode {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.core-program-event-card {
	position: relative;
	display: flex;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--core-program-border);
	border-radius: var(--core-program-radius);
	background: #fff;
}

.core-program-events-grid.has-video-mode .core-program-event-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(230px, 39%);
	align-items: stretch;
}

.core-program-event-main {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.core-program-event-main:hover,
.core-program-event-main:focus {
	color: inherit;
	text-decoration: none;
}

.core-program-event-poster {
	position: relative;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: 142px;
	padding: 12px 1.7vw;
	overflow: hidden;
	background: #f2f3f7;
	isolation: isolate;
}

.core-program-event-poster::before {
	content: "";
	position: absolute;
	inset: -20%;
	z-index: -2;
	background-image: var(--core-program-card-poster, none);
	background-size: cover;
	background-position: center;
	filter: blur(80px) brightness(1.18);
	opacity: .96;
}

.core-program-event-poster img,
.core-program-event-poster-empty {
	position: relative;
	z-index: 1;
	display: block;
	width: 112px;
	height: 158px;
	max-width: 112px;
	max-height: 158px;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 8px;
	background: rgba(255,255,255,.62);
	object-fit: cover;
}

.core-program-event-copy {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 13px clamp(14px, 1.45vw, 22px);
	overflow: hidden;
	isolation: isolate;
}

.core-program-event-copy::before {
	content: "";
	position: absolute;
	inset: -20%;
	z-index: -2;
	background-image: var(--core-program-card-poster, none);
	background-size: cover;
	background-position: center;
	filter: blur(90px) brightness(1.18);
	opacity: 0;
	transition: opacity .22s ease;
}

.core-program-event-copy::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255,255,255,.91);
	transition: background-color .22s ease;
}

.core-program-event-card:hover .core-program-event-copy::before {
	opacity: 1;
}

.core-program-event-card:hover .core-program-event-copy::after {
	background: rgba(255,255,255,.80);
}

.core-program-event-title {
	overflow: hidden;
	color: #1f1f1f;
	font-family: "Inter Tight", Inter, system-ui, sans-serif;
	font-size: 23px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.14;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color .18s ease;
}

.core-program-event-card:hover .core-program-event-title {
	color: var(--core-program-accent);
}

.core-program-event-group {
	margin-top: 5px;
	overflow: hidden;
	color: #5a5a5a;
	font-family: "Inter Tight", Inter, system-ui, sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.24;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.core-program-event-separator {
	width: 100%;
	height: 1px;
	margin: 11px 0;
	background: rgba(0,0,0,.12);
}

.core-program-event-date {
	color: #343434;
	font-family: "Inter Tight", Inter, system-ui, sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.22;
}

.core-program-event-venue {
	margin-top: 4px;
	overflow: hidden;
	color: #666;
	font-family: "Inter Tight", Inter, system-ui, sans-serif;
	font-size: 15px;
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.core-program-event-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
}

.core-program-event-locality {
	color: var(--core-program-accent);
	font-family: "Roboto Mono", monospace;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.core-program-event-ticket {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	padding: 0 10px;
	border: 1px solid var(--core-program-accent);
	border-radius: 999px;
	color: var(--core-program-accent);
	font-family: "Roboto Mono", monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .06em;
}

.core-program-event-video {
	position: relative;
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 188px;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-left: 1px solid var(--core-program-border);
	background: #111;
	color: #fff;
	cursor: pointer;
}

.core-program-event-video img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 188px;
	object-fit: cover;
	transition: transform .24s ease, filter .24s ease;
}

.core-program-event-video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.48));
}

.core-program-event-video:hover img {
	transform: scale(1.05);
	filter: brightness(.92);
}

.core-program-event-video-pill {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 30px;
	max-width: calc(100% - 24px);
	padding: 0 12px;
	border: 1px solid rgba(255,255,255,.88);
	border-radius: 999px;
	background: rgba(255,255,255,.18);
	color: #fff;
	font-family: "Roboto Mono", monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .07em;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.core-program-event-video-pill svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.core-program-event-video.is-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background:
		linear-gradient(rgba(255,255,255,.70), rgba(255,255,255,.70)),
		var(--core-program-card-poster, none) center / cover;
	color: #333;
	cursor: default;
}

.core-program-event-video.is-empty::after {
	display: none;
}

.core-program-event-video.is-empty span {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 190px;
	min-height: 44px;
	padding: 10px 13px;
	border: 1px solid rgba(255,255,255,.75);
	border-radius: 999px;
	background: rgba(255,255,255,.46);
	font-family: "Roboto Mono", monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.18;
	text-align: center;
	text-transform: uppercase;
	backdrop-filter: blur(14px);
}

.core-program-events-empty,
.core-program-events-noresults {
	grid-column: 1 / -1;
	padding: 30px 18px;
	border: 1px solid var(--core-program-border);
	border-radius: var(--core-program-radius);
	background: #fff;
	color: rgba(0,0,0,.62);
	text-align: center;
}

.core-program-awards-summary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.core-program-award-summary-item {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	min-width: 0;
	min-height: 106px;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--core-program-border);
	border-radius: var(--core-program-radius);
	background: #fff;
	color: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color .18s ease, background-color .18s ease;
}

.core-program-award-summary-item:hover,
.core-program-award-summary-item.is-active {
	border-color: var(--core-program-accent);
	background: rgba(var(--core-program-accent-rgb), .05);
}

.core-program-award-summary-poster {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f1f2f4;
}

.core-program-award-summary-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.core-program-award-summary-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 12px 14px;
}

.core-program-award-summary-copy strong,
.core-program-award-summary-copy > span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.core-program-award-summary-copy strong {
	font-size: 17px;
	font-weight: 600;
}

.core-program-award-summary-copy > span {
	margin-top: 3px;
	color: rgba(0,0,0,.55);
	font-size: 14px;
}

.core-program-award-summary-counts {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}

.core-program-award-summary-counts b,
.core-program-award-summary-counts em {
	padding: 3px 6px;
	border-radius: 999px;
	font-family: "Roboto Mono", monospace;
	font-size: 9px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .04em;
}

.core-program-award-summary-counts b {
	background: var(--core-program-accent);
	color: #fff;
}

.core-program-award-summary-counts em {
	background: rgba(0,0,0,.07);
	color: rgba(0,0,0,.64);
}

.core-program-awards-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 10px;
}

.core-program-award-card {
	overflow: hidden;
	border: 1px solid var(--core-program-border);
	border-radius: var(--core-program-radius);
	background: #fff;
}

.core-program-award-card.is-filtered-out {
	display: none;
}

.core-program-award-head {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: stretch;
	min-height: 76px;
	background:
		radial-gradient(circle at 10% 0%, rgba(var(--core-program-accent-rgb), .14), transparent 48%),
		#fff;
}

.core-program-award-trophy {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--core-program-accent);
	font-size: 26px;
}

.core-program-award-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 14px 16px 14px 0;
}

.core-program-award-title-pre,
.core-program-award-title-main {
	display: block;
	font-family: "Roboto Mono", monospace;
	font-weight: 700;
	line-height: 1.16;
}

.core-program-award-title-pre {
	color: rgba(0,0,0,.50);
	font-size: 11px;
	letter-spacing: .07em;
}

.core-program-award-title-main {
	margin-top: 3px;
	color: var(--core-program-accent);
	font-size: 17px;
	letter-spacing: .035em;
}

.core-program-award-winners,
.core-program-award-nominations {
	padding: 14px 16px;
	border-top: 1px solid var(--core-program-border);
}

.core-program-award-winners {
	background: rgba(var(--core-program-accent-rgb), .045);
}

.core-program-award-label {
	margin-bottom: 10px;
	color: rgba(0,0,0,.50);
	font-family: "Roboto Mono", monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}

.core-program-award-entry {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-width: 0;
	padding: 7px 0;
}

.core-program-award-entry + .core-program-award-entry {
	border-top: 1px solid rgba(0,0,0,.07);
}

.core-program-award-entry-poster {
	width: 42px;
	height: 58px;
	overflow: hidden;
	border-radius: 4px;
	background: #f0f1f3;
}

.core-program-award-entry-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.core-program-award-entry-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.core-program-award-entry-copy strong {
	color: #222;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.22;
}

.core-program-award-entry-copy span {
	margin-top: 3px;
	color: rgba(0,0,0,.54);
	font-size: 13px;
	line-height: 1.25;
}

.core-program-awards-noresults {
	grid-column: 1 / -1;
	padding: 30px 18px;
	border: 1px solid var(--core-program-border);
	border-radius: var(--core-program-radius);
	background: #fff;
	text-align: center;
}

.core-program-entities {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	padding: 28px;
	border: 1px solid var(--core-program-border);
	border-top: 4px solid var(--core-program-accent);
	border-radius: var(--core-program-radius);
	background: #fff;
	flex-direction: column;
}

.core-program-entities-top {
	display: flex;
	justify-content: center;
	width: 100%;
}

.core-program-entities-grid {
	display: inline-grid;
	grid-auto-flow: column;
	grid-auto-columns: max-content;
	align-items: stretch;
	justify-content: center;
	width: max-content;
	max-width: 100%;
	margin: 0 auto;
	gap: 0;
}

.core-program-entity-group {
	display: flex;
	width: max-content;
	max-width: min(680px, 42vw);
	min-width: 0;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 0 60px;
	text-align: center;
}

.core-program-entity-group + .core-program-entity-group {
	border-left: 1px solid #d9d9d9;
}

.core-program-entity-group h3 {
	width: max-content;
	max-width: 100%;
	margin: 0 0 18px;
	color: #202020;
	font-family: "Roboto Mono", monospace;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .07em;
	text-align: center;
	text-transform: uppercase;
}

.core-program-entity-logos {
	display: flex;
	width: max-content;
	max-width: 100%;
	min-height: 56px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px 32px;
	padding: 0;
}

.core-program-entity-item {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.core-program-entity-item a,
.core-program-entity-item > div {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	color: inherit;
	text-decoration: none;
}

.core-program-entity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	text-decoration: none;
}

.core-program-entity .core-event-entity-logo,
.core-program-entity .core-event-entity-logo-svg {
	display: block;
	width: auto;
	max-width: none;
	object-fit: contain;
}

.core-program-entity .core-event-entity-name {
	display: inline-block;
}

.core-program-entities-separator {
	width: 100%;
	height: 1px;
	margin: 30px 0;
	background: var(--core-program-border);
}

.core-program-entities-local {
	display: flex;
	justify-content: center;
	width: 90%;
	max-width: 90%;
	margin: 0 auto;
}

.core-program-entity-group.is-local {
	width: 100%;
	max-width: 100%;
	padding: 0 60px;
}

.core-program-entities-empty {
	margin-top: 10px;
	padding: 24px;
	border: 1px solid var(--core-program-border);
	border-radius: var(--core-program-radius);
	background: #fff;
	color: rgba(0,0,0,.58);
	text-align: center;
}

.core-program-lightbox {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.core-program-lightbox.is-open {
	display: flex;
}

.core-program-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.86);
	backdrop-filter: blur(6px);
}

.core-program-lightbox-panel {
	position: relative;
	z-index: 1;
	width: min(1180px, 94vw);
	aspect-ratio: 16 / 9;
	background: #000;
	box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.core-program-lightbox-frame,
.core-program-lightbox-frame iframe {
	width: 100%;
	height: 100%;
}

.core-program-lightbox-frame iframe {
	display: block;
	border: 0;
}

.core-program-lightbox-close {
	position: absolute;
	z-index: 3;
	top: -106px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100px;
	height: 100px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 92px;
	font-weight: 300;
	line-height: 1;
	text-shadow: 0 2px 14px rgba(0,0,0,.48);
	cursor: pointer;
	transition: opacity .18s ease, transform .18s ease;
}

html.core-program-lightbox-lock,
body.core-program-lightbox-lock {
	overflow: hidden;
}

.core-program-empty-family {
	padding: 70px 3.5vw;
	border-radius: var(--core-program-radius);
	background: #f3f4f6;
}

@media (max-width: 1280px) {
	.core-program-events-grid:not(.has-video-mode) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.core-program-awards-summary {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1290px) {
	.core-program-events-grid.has-video-mode {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1100px) {
	.core-program-awards-summary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.core-program-head {
		grid-template-columns: 1fr;
	}

	.core-program-head-left {
		height: auto;
		grid-template-rows: auto auto auto;
	}

	.core-program-titlebox {
		padding: 34px 20px;
	}

	.core-program-titlebox h1 {
		font-size: 34px;
		line-height: 1.10;
		white-space: normal;
	}

	.core-program-years {
		display: none;
	}

	.core-program-year-select-wrap {
		display: block;
	}

	.core-program-year-select {
		width: 100%;
		height: 50px;
		padding: 0 16px;
		border: 1px solid var(--core-program-border);
		border-radius: var(--core-program-radius);
		background: #fff;
		font-family: "Roboto Mono", monospace;
		font-weight: 600;
	}

.core-program-page .core-program-year-select {
	font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
	font-weight: 600 !important;
	font-synthesis: none;
}


	.core-program-news {
		padding: 26px 20px;
	}

	.core-program-posterbox {
		width: 100%;
		height: 470px;
		padding: 28px 20px;
	}

	.core-program-section-titlebar {
		align-items: stretch;
		flex-direction: column;
		padding: 16px 20px;
	}

	.core-program-programming-tools {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.core-program-search-control {
		width: 100%;
		justify-content: flex-start;
	}

	.core-program-search-control.is-open .core-program-search-field {
		width: calc(100% - 40px);
		max-width: none;
	}

	.core-program-search-field {
		flex: 1 1 auto;
	}

	.core-program-events-grid,
	.core-program-events-grid:not(.has-video-mode),
	.core-program-events-grid.has-video-mode,
	.core-program-awards-grid {
		grid-template-columns: 1fr;
	}

	.core-program-events-grid.has-video-mode .core-program-event-card {
		display: flex;
		flex-direction: row;
	}

	.core-program-events-grid.has-video-mode .core-program-event-main {
	min-height: 188px;
}

	.core-program-events-grid.has-video-mode .core-program-event-video {
	order: 0;
	width: 100%;
	min-height: 188px;
	aspect-ratio: auto;
	border-left: 1px solid var(--core-program-border);
	border-bottom: 0;
}

	.core-program-events-grid.has-video-mode .core-program-event-video img {
	width: 100%;
	height: 100%;
	min-height: 188px;
	aspect-ratio: auto;
	object-fit: cover;
}

	.core-program-awards-summary {
		grid-template-columns: 1fr;
	}

	.core-program-entities {
		padding: 24px 20px;
	}

	.core-program-entities-grid {
		display: flex;
		width: 100%;
		flex-direction: column;
		align-items: center;
	}

	.core-program-entity-group {
		width: 100%;
		max-width: none;
		padding: 24px 0;
	}

	.core-program-entity-group + .core-program-entity-group {
		border-top: 1px solid #d9d9d9;
		border-left: 0;
	}

	.core-program-entity-group:first-child {
		padding-top: 0;
	}

	.core-program-entity-group:last-child {
		padding-bottom: 0;
	}

	.core-program-entities-local {
		width: 90%;
		max-width: 90%;
	}

	.core-program-entity-group.is-local {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}

	.core-program-entity-logos {
		width: 100%;
		flex-direction: column;
		gap: 20px;
	}

	.core-program-entity-item,
	.core-program-entity-item a,
	.core-program-entity-item > div {
		width: 100%;
	}
}


@media (max-width: 720px) {
	.core-program-events-grid.has-video-mode .core-program-event-card {
		display: flex;
		flex-direction: column;
	}

	.core-program-events-grid.has-video-mode .core-program-event-video {
		order: -1;
		flex: 0 0 auto;
		width: 100%;
		min-width: 0;
		min-height: 0;
		aspect-ratio: 16 / 7.5;
		border-left: 0;
		border-bottom: 1px solid var(--core-program-border);
	}

	.core-program-events-grid.has-video-mode .core-program-event-video img {
		min-height: 0;
		aspect-ratio: 16 / 7.5;
	}
}

@media (max-width: 640px) {
	.core-program-event-poster {
		min-width: 128px;
		padding: 12px;
	}

	.core-program-event-poster img,
	.core-program-event-poster-empty {
		width: 104px;
		height: 154px;
	}

	.core-program-event-title {
		white-space: normal;
	}

	.core-program-event-group,
	.core-program-event-venue {
		white-space: normal;
	}

	.core-program-event-date {
		font-size: 16px;
		font-weight: 600;
	}

	.core-program-award-summary-item {
		grid-template-columns: 66px minmax(0, 1fr);
	}

	.core-program-lightbox {
		padding: 12px;
	}
}


/* Festival: vídeo lateral, con un máximo de dos cards por fila. */
.core-program-events-grid.has-video-mode .core-program-event-video {
	order: 0;
	width: 100%;
	min-height: 188px;
	aspect-ratio: auto;
	border-left: 1px solid var(--core-program-border);
	border-bottom: 0;
}

.core-program-events-grid.has-video-mode .core-program-event-video img {
	width: 100%;
	height: 100%;
	min-height: 188px;
	aspect-ratio: auto;
	object-fit: cover;
}

.core-program-events-grid.has-video-mode .core-program-event-main {
	min-height: 188px;
}

.core-program-events-grid.has-video-mode .core-program-event-poster {
	min-width: 142px;
	padding: 12px 1.7vw;
}

.core-program-events-grid.has-video-mode .core-program-event-poster img,
.core-program-events-grid.has-video-mode .core-program-event-poster-empty {
	width: 112px;
	height: 158px;
	max-width: 112px;
	max-height: 158px;
}

.core-program-events-grid.has-video-mode .core-program-event-video-pill {
	height: 30px;
	padding: 0 12px;
	background: rgba(255,255,255,.18);
	box-shadow: none;
}

.core-program-events-grid.has-video-mode .core-program-event-video.is-empty {
	aspect-ratio: auto;
	min-height: 188px;
}

.core-program-events-grid.has-video-mode .core-program-event-video.is-empty span {
	max-width: 190px;
}

/* Más aire en programación sin vídeo. */
.core-program-events-grid:not(.has-video-mode) .core-program-event-card {
	min-height: 188px;
}

.core-program-events-grid:not(.has-video-mode) .core-program-event-main {
	width: 100%;
}


.core-program-lightbox-close:hover,
.core-program-lightbox-close:focus-visible {
	opacity: .62;
	transform: scale(1.05);
	outline: 0;
}

/* =========================================================
 * 4.4.7 — altura uniforme y centrado real de programación
 * ========================================================= */

/* Muestra/general: altura exacta de card y zona informativa. */
.core-program-events-grid:not(.has-video-mode) .core-program-event-card,
.core-program-events-grid:not(.has-video-mode) .core-program-event-main {
	height: 188px;
	min-height: 188px;
	max-height: 188px;
}

/* Festival: card, información y vídeo comparten exactamente 188px. */
.core-program-events-grid.has-video-mode .core-program-event-card {
	height: 188px;
	min-height: 188px;
	max-height: 188px;
}

.core-program-events-grid.has-video-mode .core-program-event-main,
.core-program-events-grid.has-video-mode .core-program-event-video,
.core-program-events-grid.has-video-mode .core-program-event-video.is-empty {
	height: 188px;
	min-height: 188px;
	max-height: 188px;
}

/*
 * La miniatura real deja de aportar altura intrínseca al grid.
 * Así una card con vídeo y otra sin vídeo ocupan exactamente lo mismo.
 */
.core-program-events-grid.has-video-mode .core-program-event-video img {
	display: block;
	width: 100%;
	height: 188px;
	min-height: 188px;
	max-height: 188px;
	object-fit: cover;
}

/* Centrado vertical real del bloque blanco. */
.core-program-event-copy {
	justify-content: center;
	padding-top: 0;
	padding-bottom: 0;
}

/*
 * Compensación óptica mínima: el bloque incluye localidad/CTA en la parte
 * inferior y visualmente pesa más abajo. Se desplaza 2px para centrarlo.
 */
.core-program-event-copy > * {
	transform: translateY(2px);
}

/* La zona de cartel conserva el mismo tamaño en Muestra y Festival. */
.core-program-event-poster,
.core-program-events-grid.has-video-mode .core-program-event-poster {
	min-width: 142px;
	padding: 12px 1.7vw;
}

.core-program-event-poster img,
.core-program-event-poster-empty,
.core-program-events-grid.has-video-mode .core-program-event-poster img,
.core-program-events-grid.has-video-mode .core-program-event-poster-empty {
	width: 112px;
	height: 158px;
	max-width: 112px;
	max-height: 158px;
}

/* En tablet, Festival sigue lateral y mantiene la misma altura. */
@media (max-width: 900px) and (min-width: 721px) {
	.core-program-events-grid.has-video-mode .core-program-event-card,
	.core-program-events-grid.has-video-mode .core-program-event-main,
	.core-program-events-grid.has-video-mode .core-program-event-video,
	.core-program-events-grid.has-video-mode .core-program-event-video.is-empty {
		height: 188px;
		min-height: 188px;
		max-height: 188px;
	}

	.core-program-events-grid.has-video-mode .core-program-event-video img {
		height: 188px;
		min-height: 188px;
		max-height: 188px;
	}
}

/*
 * En móvil estrecho el vídeo se apila: aquí la card completa crece,
 * pero todas las cards de Festival mantienen la misma estructura.
 */
@media (max-width: 720px) {
	.core-program-events-grid.has-video-mode .core-program-event-card {
		height: auto;
		min-height: 0;
		max-height: none;
	}

	.core-program-events-grid.has-video-mode .core-program-event-main {
		height: 188px;
		min-height: 188px;
		max-height: 188px;
	}

	.core-program-events-grid.has-video-mode .core-program-event-video,
	.core-program-events-grid.has-video-mode .core-program-event-video.is-empty {
		height: auto;
		min-height: 0;
		max-height: none;
		aspect-ratio: 16 / 7.5;
	}

	.core-program-events-grid.has-video-mode .core-program-event-video img {
		width: 100%;
		height: 100%;
		min-height: 0;
		max-height: none;
		aspect-ratio: 16 / 7.5;
		object-fit: cover;
	}
}

/* =========================================================
 * 4.4.8 — límite 16:9 de la carátula de vídeo
 * ========================================================= */

/*
 * Con 188px de alto, una miniatura 16:9 no puede superar:
 * 188 × 16 / 9 = 334.222px.
 *
 * Así:
 * - si el hueco es más estrecho, object-fit:cover recorta laterales;
 * - nunca se crea un hueco más panorámico que 16:9;
 * - por tanto nunca es necesario recortar arriba y abajo.
 */
.core-program-events-grid.has-video-mode .core-program-event-card {
	grid-template-columns: minmax(0, 1fr) minmax(230px, 334.222px);
}

.core-program-events-grid.has-video-mode .core-program-event-video,
.core-program-events-grid.has-video-mode .core-program-event-video.is-empty {
	width: 100%;
	max-width: 334.222px;
	height: 188px;
	min-height: 188px;
	max-height: 188px;
	justify-self: end;
}

.core-program-events-grid.has-video-mode .core-program-event-video img {
	display: block;
	width: 100%;
	max-width: 334.222px;
	height: 188px;
	min-height: 188px;
	max-height: 188px;
	object-fit: cover;
	object-position: center center;
}

/* En layout lateral responsive se conserva el mismo máximo 16:9. */
@media (max-width: 1290px) and (min-width: 721px) {
	.core-program-events-grid.has-video-mode .core-program-event-card {
		grid-template-columns: minmax(0, 1fr) minmax(230px, 334.222px);
	}

	.core-program-events-grid.has-video-mode .core-program-event-video,
	.core-program-events-grid.has-video-mode .core-program-event-video.is-empty,
	.core-program-events-grid.has-video-mode .core-program-event-video img {
		width: 100%;
		max-width: 334.222px;
		height: 188px;
		min-height: 188px;
		max-height: 188px;
	}
}

/*
 * En móvil apilado usamos como máximo 16:9.
 * Se elimina la proporción anterior 16/7.5, que sí podía recortar verticalmente.
 */
@media (max-width: 720px) {
	.core-program-events-grid.has-video-mode .core-program-event-video,
	.core-program-events-grid.has-video-mode .core-program-event-video.is-empty {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 0;
		max-height: none;
		aspect-ratio: 16 / 9;
		justify-self: stretch;
	}

	.core-program-events-grid.has-video-mode .core-program-event-video img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		min-height: 0;
		max-height: none;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		object-position: center center;
	}
}

/* =========================================================
 * 4.4.9 — IR AL EVENTO, comportamiento de card de Agenda
 * ========================================================= */

.core-program-event-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 12px;
}

.core-program-event-locality {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.core-program-event-open {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
	color: #1f1f1f;
	font-family: "Roboto Mono", monospace;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .015em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.core-program-event-open > span {
	position: relative;
	display: inline-block;
	padding-bottom: 2px;
	line-height: 1.2;
	transition: transform 200ms ease;
}

.core-program-event-open > span::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 220ms ease;
}

.core-program-event-open svg {
	width: 0;
	height: 14px;
	margin-left: 0;
	fill: currentColor;
	opacity: 0;
	transform: translateX(-5px);
	transition:
		width 200ms ease,
		margin-left 200ms ease,
		opacity 160ms ease,
		transform 200ms ease;
}

.core-program-event-main:hover .core-program-event-open > span,
.core-program-event-main:focus-visible .core-program-event-open > span {
	transform: translateX(-4px);
}

.core-program-event-main:hover .core-program-event-open > span::after,
.core-program-event-main:focus-visible .core-program-event-open > span::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.core-program-event-main:hover .core-program-event-open svg,
.core-program-event-main:focus-visible .core-program-event-open svg {
	width: 14px;
	margin-left: 4px;
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 640px) {
	.core-program-event-open {
		font-size: 11px;
	}
}

/* =========================================================
 * 4.4.10 — Festival mixto: 3 columnas sin vídeo / 2 con vídeo
 * ========================================================= */

.core-program-events-grid.is-festival-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.core-program-events-grid.is-festival-grid .core-program-event-card.no-video {
	grid-column: span 2;
	display: flex;
	height: 188px;
	min-height: 188px;
	max-height: 188px;
}

.core-program-events-grid.is-festival-grid .core-program-event-card.has-video {
	grid-column: span 3;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(230px, 334.222px);
	align-items: stretch;
	height: 188px;
	min-height: 188px;
	max-height: 188px;
}

.core-program-events-grid.is-festival-grid .core-program-event-card.has-video .core-program-event-main,
.core-program-events-grid.is-festival-grid .core-program-event-card.no-video .core-program-event-main {
	height: 188px;
	min-height: 188px;
	max-height: 188px;
}

.core-program-events-grid.is-festival-grid .core-program-event-card.has-video .core-program-event-video {
	width: 100%;
	max-width: 334.222px;
	height: 188px;
	min-height: 188px;
	max-height: 188px;
	justify-self: end;
	border-left: 1px solid var(--core-program-border);
	border-bottom: 0;
}

.core-program-events-grid.is-festival-grid .core-program-event-card.has-video .core-program-event-video img {
	display: block;
	width: 100%;
	max-width: 334.222px;
	height: 188px;
	min-height: 188px;
	max-height: 188px;
	object-fit: cover;
	object-position: center center;
}

.core-program-events-grid.is-festival-grid .core-program-event-poster {
	min-width: 142px;
	padding: 12px 1.7vw;
}

.core-program-events-grid.is-festival-grid .core-program-event-poster img,
.core-program-events-grid.is-festival-grid .core-program-event-poster-empty {
	width: 112px;
	height: 158px;
	max-width: 112px;
	max-height: 158px;
}

@media (max-width: 1280px) {
	.core-program-events-grid.is-festival-grid .core-program-event-card.no-video {
		grid-column: span 3;
	}

	.core-program-events-grid.is-festival-grid .core-program-event-card.has-video {
		grid-column: span 6;
	}
}

@media (max-width: 900px) {
	.core-program-events-grid.is-festival-grid .core-program-event-card.no-video,
	.core-program-events-grid.is-festival-grid .core-program-event-card.has-video {
		grid-column: span 6;
	}
}

@media (max-width: 720px) {
	.core-program-events-grid.is-festival-grid .core-program-event-card.has-video {
		display: flex;
		flex-direction: column;
		height: auto;
		min-height: 0;
		max-height: none;
	}

	.core-program-events-grid.is-festival-grid .core-program-event-card.has-video .core-program-event-main {
		height: 188px;
		min-height: 188px;
		max-height: 188px;
	}

	.core-program-events-grid.is-festival-grid .core-program-event-card.has-video .core-program-event-video {
		order: -1;
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 0;
		max-height: none;
		aspect-ratio: 16 / 9;
		border-left: 0;
		border-bottom: 1px solid var(--core-program-border);
	}

	.core-program-events-grid.is-festival-grid .core-program-event-card.has-video .core-program-event-video img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		min-height: 0;
		max-height: none;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		object-position: center center;
	}
}

/* =========================================================
 * 4.4.10 — cierre de lightbox respecto al propio vídeo
 * ========================================================= */

.core-program-lightbox-close {
	position: absolute;
	z-index: 3;
	top: -44px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 42px;
	font-weight: 300;
	line-height: 1;
	text-shadow: 0 2px 12px rgba(0,0,0,.48);
	cursor: pointer;
	transition: opacity .18s ease, transform .18s ease;
}

/* =========================================================
 * 4.4.11 — cierre lightbox definitivo
 * ========================================================= */
.core-program-lightbox-close {
	width: 14px;
	font-size: 28px !important;
}

/* =========================================================
 * 4.5.1 — CTA de Programas reducido a flechas en hover
 * ========================================================= */

.core-program-event-open {
	display: inline-flex;
	flex: 0 0 0;
	align-items: center;
	justify-content: flex-end;
	width: 0;
	margin-left: auto;
	overflow: visible;
	color: #1f1f1f;
}

.core-program-event-open svg {
	display: block;
	width: 0;
	height: 14px;
	margin-left: 0;
	fill: currentColor;
	opacity: 0;
	transform: translateX(-5px);
	transition:
		width 200ms ease,
		opacity 160ms ease,
		transform 200ms ease;
}

.core-program-event-main:hover .core-program-event-open svg,
.core-program-event-main:focus-visible .core-program-event-open svg {
	width: 14px;
	opacity: 1;
	transform: translateX(0);
}

/* =========================================================
 * 4.5.2 — flecha visible en hover de Programas
 * ========================================================= */

/*
 * Se reservan 14px para la flecha.
 * El contenedor anterior medía 0px y podía quedar recortado por
 * .core-program-event-copy { overflow:hidden; }.
 */
.core-program-event-open {
	display: inline-flex;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
	overflow: visible;
}

.core-program-event-open svg {
	display: block;
	width: 14px;
	height: 14px;
	margin: 0;
	fill: currentColor;
	opacity: 0;
	transform: translateX(-5px);
	transition:
		opacity 160ms ease,
		transform 200ms ease;
}

.core-program-event-main:hover .core-program-event-open svg,
.core-program-event-main:focus-visible .core-program-event-open svg {
	width: 14px;
	opacity: 1;
	transform: translateX(0);
}

/* =========================================================
 * 4.5.3 — flecha de Programas sin cambio de tamaño
 * ========================================================= */

/*
 * Una regla anterior de hover conservaba margin-left:4px.
 * Dentro de un hueco fijo de 14px eso recortaba visualmente el SVG:
 * aparecía pequeño y recuperaba 14px durante el fade-out.
 */
.core-program-event-open {
	width: 14px !important;
	min-width: 14px !important;
	max-width: 14px !important;
	height: 14px !important;
	flex: 0 0 14px !important;
	overflow: visible !important;
}

.core-program-event-open svg {
	display: block !important;
	width: 14px !important;
	min-width: 14px !important;
	max-width: 14px !important;
	height: 14px !important;
	margin: 0 !important;
	margin-left: 0 !important;
	opacity: 0;
	transform: translateX(-5px) scale(1) !important;
	transform-origin: center center;
	transition:
		opacity 160ms ease,
		transform 200ms ease !important;
}

.core-program-event-main:hover .core-program-event-open svg,
.core-program-event-main:focus-visible .core-program-event-open svg {
	width: 14px !important;
	min-width: 14px !important;
	max-width: 14px !important;
	height: 14px !important;
	margin: 0 !important;
	margin-left: 0 !important;
	opacity: 1;
	transform: translateX(0) scale(1) !important;
}



/* =========================================================
 * 4.5.8 — premios expositivos
 * ========================================================= */

.core-program-awards-summary,
.core-program-awards-noresults {
	display: none !important;
}

.core-program-awards-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.core-program-award-head {
	grid-template-columns: 72px minmax(0, 1fr);
	min-height: 92px;
}

.core-program-award-trophy {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 6px;
}

.core-program-award-trophy img {
	display: block;
	width: 48px;
	height: 66px;
	object-fit: contain;
	object-position: center;
}

.core-program-award-entry-poster {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 64px;
	padding: 2px;
	overflow: hidden;
	border-radius: 4px;
	background: #f0f1f3;
}

.core-program-award-entry-poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.core-program-award-entry.is-winner {
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 12px;
	min-height: 102px;
	padding: 9px 0;
}

.core-program-award-entry.is-winner .core-program-award-entry-poster {
	width: 68px;
	height: 94px;
}

.core-program-award-entry.is-winner .core-program-award-entry-copy strong {
	font-size: 19px;
	font-weight: 650;
	line-height: 1.18;
}

.core-program-award-entry.is-winner .core-program-award-entry-copy span {
	margin-top: 4px;
	font-size: 14px;
	line-height: 1.28;
}

.core-program-award-entry.is-nominee {
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 10px;
}

.core-program-award-entry.is-nominee .core-program-award-entry-copy strong {
	font-size: 15px;
}

.core-program-award-card {
	cursor: default;
}

@media (max-width: 1280px) and (min-width: 761px) {
	.core-program-awards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.core-program-awards-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}


/* =========================================================
 * 4.5.9 — ajuste editorial de premios
 * ========================================================= */

.core-program-award-head {
	padding: 0 22px;
	background: #fff !important;
}

.core-program-award-title {
	padding: 16px 0;
}

.core-program-award-winners {
	padding: 15px 22px;
}

.core-program-award-nominations {
	padding: 12px 22px 14px;
}

.core-program-award-title-main {
	margin-top: 4px;
	font-size: 21px;
	line-height: 1.14;
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.core-program-award-label {
	margin-bottom: 6px;
	font-size: 13px;
	line-height: 1.1;
}

.core-program-award-entry.is-nominee {
	gap: 9px;
	padding: 4px 0;
}

.core-program-award-entry-poster {
	padding: 0;
	overflow: visible;
	background: transparent;
}

.core-program-award-entry-poster img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.core-program-award-entry.is-winner .core-program-award-entry-poster img,
.core-program-award-entry.is-nominee .core-program-award-entry-poster img {
	width: auto;
	max-width: 100%;
	height: 100%;
}

.core-program-award-entry.is-winner .core-program-award-entry-copy strong {
	font-size: 20px;
}

@media (max-width: 760px) {
	.core-program-award-head,
	.core-program-award-winners,
	.core-program-award-nominations {
		padding-right: 18px;
		padding-left: 18px;
	}
}

/* =========================================================
 * 4.5.10 — refinado tipográfico de premios
 * ========================================================= */

/* PREMIO A ligeramente más visible. */
.core-program-award-kicker {
	font-size: 12px;
	line-height: 1.1;
}

/* Subrayado de MEJOR XXX más rotundo. */
.core-program-award-title-main {
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

/* Carteles con esquina suave, preservando proporción. */
.core-program-award-entry-poster,
.core-program-award-entry-poster img {
	border-radius: 4px;
}

/* =========================================================
 * 4.5.11 — ajustes finales de premios
 * ========================================================= */

.core-program-award-title-pre {
	font-size: 14px;
}

.core-program-award-trophy {
	padding: 8px 16px 8px 0;
}

.core-program-award-entry.is-winner {
	gap: 18px;
}

.core-program-award-entry.is-nominee {
	gap: 16px;
}

.core-program-award-entry.is-winner .core-program-award-entry-copy span {
	font-size: 15px;
}

.core-program-award-entry.is-nominee .core-program-award-entry-copy strong {
	font-size: 16px;
}

.core-program-award-entry-copy span {
	font-size: 14px;
}

.core-program-award-title-main {
	margin-top: 6px;
	text-underline-offset: 6px;
}

.core-program-award-entry-poster,
.core-program-award-entry-poster img {
	border-radius: 7px;
}

.core-program-award-entry.is-nominee .core-program-award-entry-poster {
	box-sizing: border-box;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.14);
	background: #fff;
}

.core-program-award-label {
	margin-bottom: 9px;
}

/* =========================================================
 * 4.6.0 — noticias relacionadas por Programa
 * ========================================================= */

.core-program-news-list-host {
	min-height: 0;
	overflow: hidden;
}

.core-program-news-list {
	display: grid;
	min-height: 0;
	max-height: 100%;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,.45) transparent;
}

.core-program-news-item {
	display: grid;
	grid-template-columns: 94px minmax(0, 1fr) 16px;
	gap: 12px;
	align-items: center;
	min-width: 0;
	padding: 10px 0;
	border-top: 1px solid rgba(255,255,255,.24);
	color: #fff;
	text-decoration: none;
}

.core-program-news-item:last-child {
	border-bottom: 1px solid rgba(255,255,255,.24);
}

.core-program-news-item time {
	color: rgba(255,255,255,.82);
	font-family: "Roboto Mono", monospace;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .035em;
	line-height: 1.15;
	white-space: nowrap;
}

.core-program-news-item-title {
	min-width: 0;
	overflow: hidden;
	font-family: "Inter Tight", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: transform 200ms ease;
}

.core-program-news-item svg {
	width: 0;
	height: 14px;
	fill: currentColor;
	opacity: 0;
	transform: translateX(-5px);
	transition:
		width 200ms ease,
		opacity 160ms ease,
		transform 200ms ease;
}

.core-program-news-item:hover .core-program-news-item-title,
.core-program-news-item:focus-visible .core-program-news-item-title {
	transform: translateX(-3px);
}

.core-program-news-item:hover svg,
.core-program-news-item:focus-visible svg {
	width: 14px;
	opacity: 1;
	transform: translateX(0);
}

.core-program-news-item:focus-visible {
	outline: 1px solid rgba(255,255,255,.72);
	outline-offset: 3px;
}

@media (max-width: 900px) {
	.core-program-news-item {
		grid-template-columns: 82px minmax(0, 1fr) 14px;
		gap: 10px;
	}

	.core-program-news-item-title {
		font-size: 15px;
	}
}

/* =========================================================
 * 4.6.1 — interacción editorial de noticias
 * ========================================================= */

.core-program-news-item {
	grid-template-columns: 136px minmax(0, 1fr);
	gap: 14px;
	color: #fff;
}

.core-program-news-item time {
	font-size: 16px;
	line-height: 1.2;
}

/* Flecha antes del titular, sin modificar el color. */
.core-program-news-item-link {
	display: flex;
	align-items: center;
	min-width: 0;
	overflow: hidden;
	color: inherit;
}

.core-program-news-item-link > svg {
	display: block;
	width: 0;
	min-width: 0;
	height: 14px;
	flex: 0 0 0;
	margin-right: 0;
	fill: currentColor;
	opacity: 0;
	transform: translateX(-6px);
	transition:
		width 260ms cubic-bezier(.22,1,.36,1),
		min-width 260ms cubic-bezier(.22,1,.36,1),
		flex-basis 260ms cubic-bezier(.22,1,.36,1),
		margin-right 260ms cubic-bezier(.22,1,.36,1),
		opacity 180ms ease,
		transform 260ms cubic-bezier(.22,1,.36,1);
}

.core-program-news-item-title {
	position: relative;
	display: inline-block;
	min-width: 0;
	overflow: hidden;
	color: inherit;
	font-size: 16px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
	transform: translateX(0);
	transition: transform 260ms cubic-bezier(.22,1,.36,1);
}

.core-program-news-item-title::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 240ms ease;
}

.core-program-news-item:hover,
.core-program-news-item:focus-visible,
.core-program-news-item:hover time,
.core-program-news-item:focus-visible time,
.core-program-news-item:hover .core-program-news-item-title,
.core-program-news-item:focus-visible .core-program-news-item-title {
	color: inherit;
}

.core-program-news-item:hover .core-program-news-item-link > svg,
.core-program-news-item:focus-visible .core-program-news-item-link > svg {
	width: 14px;
	min-width: 14px;
	flex-basis: 14px;
	margin-right: 5px;
	opacity: 1;
	transform: translateX(0);
}

.core-program-news-item:hover .core-program-news-item-title,
.core-program-news-item:focus-visible .core-program-news-item-title {
	transform: translateX(2px);
}

.core-program-news-item:hover .core-program-news-item-title::after,
.core-program-news-item:focus-visible .core-program-news-item-title::after {
	transform: scaleX(1);
	transform-origin: left center;
}

/* Neutraliza la antigua flecha final. */
.core-program-news-item > svg {
	display: none !important;
}

@media (max-width: 900px) {
	.core-program-news-item {
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 12px;
	}

	.core-program-news-item time,
	.core-program-news-item-title {
		font-size: 15px;
	}
}

/* =========================================================
 * 4.6.2 — noticias: formato clásico + paginación 3×3
 * ========================================================= */

.core-program-news-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.core-program-news-heading > span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.core-program-news-nav {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.core-program-news-nav-button {
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	padding: 0;
	border: 0;
	background: none;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition:
		color .2s ease,
		opacity .18s ease;
}

.core-program-news-nav-button:hover,
.core-program-news-nav-button:focus-visible {
	color: rgba(255,255,255,.5);
	outline: 0;
}

.core-program-news-nav-button:disabled {
	opacity: .3;
	cursor: default;
	pointer-events: none;
}

.core-program-news-nav-button[hidden] {
	display: none !important;
}

.core-program-news-list-host,
.core-program-news-wrap {
	min-height: 0;
	overflow: hidden;
}

.core-program-news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-height: 0;
	max-height: none;
	overflow: visible;
}

.core-program-news-item {
	display: flex !important;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 10px;
	min-width: 0;
	padding: 10px 0;
	border: 0;
	border-bottom: 1px solid rgba(255,255,255,.22);
	background: transparent;
	color: #fff;
	text-decoration: none;
}

.core-program-news-item:last-child {
	border-bottom: 0;
}

.core-program-news-item[hidden] {
	display: none !important;
}

/* Tipografía recuperada del snippet antiguo. */
.core-program-news-item-date {
	flex: 0 0 auto;
	color: rgba(255,255,255,.85);
	font-family: "Roboto Mono", monospace;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .04em;
	line-height: 1.2;
	white-space: nowrap;
}

.core-program-news-item-dot {
	flex: 0 0 auto;
	color: rgba(255,255,255,.68);
	font-size: 16px;
	line-height: 1.2;
	white-space: nowrap;
}

.core-program-news-item-link {
	display: flex;
	flex: 1 1 auto;
	align-items: baseline;
	min-width: 0;
	overflow: hidden;
	color: #fff;
	font-weight: 400;
}

.core-program-news-item-link > svg {
	align-self: center;
	display: block;
	width: 0;
	min-width: 0;
	height: 14px;
	flex: 0 0 0;
	margin-right: 0;
	fill: currentColor;
	opacity: 0;
	transform: translateX(-6px);
	transition:
		width 260ms cubic-bezier(.22,1,.36,1),
		min-width 260ms cubic-bezier(.22,1,.36,1),
		flex-basis 260ms cubic-bezier(.22,1,.36,1),
		margin-right 260ms cubic-bezier(.22,1,.36,1),
		opacity 180ms ease,
		transform 260ms cubic-bezier(.22,1,.36,1);
}

.core-program-news-item-title {
	position: relative;
	display: inline;
	min-width: 0;
	overflow: hidden;
	color: #fff;
	font-family: "Inter Tight", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
	transform: none;
}

.core-program-news-item-title::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition:
		transform .75s cubic-bezier(.2,0,0,1);
}

.core-program-news-item:hover,
.core-program-news-item:focus-visible,
.core-program-news-item:hover .core-program-news-item-date,
.core-program-news-item:focus-visible .core-program-news-item-date,
.core-program-news-item:hover .core-program-news-item-title,
.core-program-news-item:focus-visible .core-program-news-item-title {
	color: inherit;
}

.core-program-news-item:hover .core-program-news-item-link > svg,
.core-program-news-item:focus-visible .core-program-news-item-link > svg {
	width: 14px;
	min-width: 14px;
	flex-basis: 14px;
	margin-right: 5px;
	opacity: 1;
	transform: translateX(0);
}

.core-program-news-item:hover .core-program-news-item-title,
.core-program-news-item:focus-visible .core-program-news-item-title {
	transform: none;
}

.core-program-news-item:hover .core-program-news-item-title::after,
.core-program-news-item:focus-visible .core-program-news-item-title::after {
	transform: scaleX(1);
}

/* Neutraliza reglas previas de grid/flecha final. */
.core-program-news-item > svg {
	display: none !important;
}

@media (max-width: 900px) {
	.core-program-news-item-date,
	.core-program-news-item-dot,
	.core-program-news-item-title {
		font-size: 15px;
	}
}

/* =========================================================
 * 4.6.3 — alineación estricta de noticias
 * ========================================================= */

/*
 * Columnas invariantes:
 * 11ch  → "02 MAY 2026"
 * 12px  → punto separador
 * resto → titular
 */
.core-program-news-item {
	display: grid !important;
	grid-template-columns: 11ch 12px minmax(0, 1fr);
	column-gap: 10px;
	align-items: baseline;
}

.core-program-news-item-date {
	width: 11ch;
	min-width: 11ch;
	max-width: 11ch;
	justify-self: start;
	text-align: left;
	font-variant-numeric: tabular-nums;
}

.core-program-news-item-dot {
	width: 12px;
	min-width: 12px;
	max-width: 12px;
	justify-self: center;
	text-align: center;
}

.core-program-news-item-link {
	min-width: 0;
	width: 100%;
}

@media (max-width: 900px) {
	.core-program-news-item {
		grid-template-columns: 11ch 12px minmax(0, 1fr);
		column-gap: 9px;
	}
}

/* =========================================================
 * 5.0.1 — responsive Programas unificado a 900px
 * ========================================================= */

@media (max-width: 900px) {
	/*
	 * Mismo sistema full-bleed que Catálogo, Agenda y fichas.
	 * Evita el desplazamiento lateral que producía el cálculo
	 * margin-left: calc(50% - 50vw) dentro de contenedores móviles.
	 */
	.core-program-page {
		left: 50%;
		width: 100vw;
		max-width: 100vw !important;
		margin-left: -50vw;
		margin-right: -50vw;
		padding-right: 15px;
		padding-left: 15px;
	}

	/*
	 * Una entidad por línea y altura real según el factor
	 * configurado en datos maestros. Se neutraliza el height:auto
	 * móvil heredado de las fichas de evento, que podía mostrar
	 * imágenes a su tamaño intrínseco y hacerlas enormes.
	 */
	.core-program-entity-logos {
		display: flex;
		width: 100%;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 20px;
	}

	.core-program-entity-item,
	.core-program-entity-item a,
	.core-program-entity-item > div,
	.core-program-entity {
		width: 100%;
		max-width: 100%;
		min-height: 0;
	}

	.core-program-entity .core-event-entity-logo,
	.core-program-entity .core-event-entity-logo-svg {
		width: auto !important;
		max-width: min(100%, 280px) !important;
		height: var(--core-entity-height, 56px) !important;
		max-height: none !important;
		margin: 0 auto;
		object-fit: contain;
	}
}

