.make-program {
	--program-blue: #005bc3;
	--program-yellow: #f2fe34;
	--program-white: #fff;
	--program-soft: rgba(255, 255, 255, .14);
	--program-line: rgba(255, 255, 255, .52);
	background: var(--program-blue);
	color: var(--program-white);
	font-family: "Space Grotesk", sans-serif;
	position: relative;
}

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

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

.make-program button,
.make-program input,
.make-program select,
.make-program__modal button {
	font-family: inherit;
}

.make-program .material-symbols-outlined,
.make-program__modal .material-symbols-outlined {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
	justify-content: center;
	line-height: 1;
	vertical-align: middle;
}

.make-program__header {
	align-items: end;
	display: grid;
	gap: 35px;
	grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
	padding-bottom: 35px;
}

.make-program__title {
	color: #fff;
	font-size: clamp(52px, 8vw, 110px);
	font-weight: 600;
	letter-spacing: -.07em;
	line-height: .84;
	margin: 22px 0 0;
	max-width: 850px;
}

.make-program__title span {
	display: block;
}

@media (max-width: 1400px) {
	.make-program__title {
		font-size: clamp(38px, 7.5vw, 90px);
		white-space: nowrap;
	}

	.make-program__title span {
		display: inline;
	}

	.make-program__title span + span::before {
		content: " ";
	}
}

.make-program__lede {
	color: #fff;
	font-size: clamp(17px, 1.55vw, 23px);
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
	max-width: 430px;
}

.make-program__finder {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(300px, 2fr) repeat(3, minmax(170px, 1fr));
	padding-bottom: 10px;
	padding-top: 0;
}

.make-program__finder > [hidden] {
	display: none;
}

.make-program__search,
.make-program__select,
.make-program__views {
	display: flex;
	flex-direction: column;
	gap: 7px;
	position: relative;
}

.make-program__search {
	grid-column: span 2;
	justify-content: end;
}

.make-program__select > span,
.make-program__views > span {
	color: #fff;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.make-program__views {
	grid-column: span 2;
}

.make-program__view-options {
	background: rgba(255, 255, 255, .12);
	border-radius: 14px;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	min-height: 55px;
	overflow: hidden;
	padding: 4px;
}

.make-program__view-options button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 11px;
	font-weight: 700;
	gap: 6px;
	justify-content: center;
	line-height: 1.05;
	padding: 8px 7px;
	text-align: center;
	transition: background .18s ease, color .18s ease;
}

.make-program__view-options button:hover,
.make-program__view-options button:focus-visible {
	background: rgba(255, 255, 255, .14);
	outline: 0;
}

.make-program__view-options button[aria-pressed="true"] {
	background: var(--program-yellow);
	color: var(--program-blue);
}

.make-program__view-options .material-symbols-outlined {
	font-size: 19px;
}

.make-program__az {
	white-space: nowrap;
}

.make-program__search > .material-symbols-outlined {
	bottom: 16px;
	color: #fff;
	font-size: 22px;
	left: 17px;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.make-program__search input,
.make-program__select input,
.make-program__select select {
	appearance: none;
	background: rgba(255, 255, 255, .12);
	border: 1px solid transparent;
	border-radius: 14px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	height: 55px;
	outline: 0;
	transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
	width: 100%;
}

.make-program__search input {
	padding: 13px 48px 13px 50px;
}

.make-program__search input::-webkit-search-cancel-button,
.make-program__search input::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
}

.make-program__search input::placeholder {
	color: rgba(255, 255, 255, .82);
}

.make-program__search button {
	background: none;
	border: 0;
	bottom: 4px;
	color: #fff;
	cursor: pointer;
	font-size: 28px;
	height: 46px;
	position: absolute;
	right: 6px;
	width: 46px;
}

.make-program__select select,
.make-program__select input {
	padding: 13px 42px 13px 15px;
}

.make-program__date::after {
	bottom: 16px;
	color: #fff;
	content: "calendar_month";
	font-family: "Material Symbols Outlined";
	font-size: 22px;
	font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
	line-height: 1;
	pointer-events: none;
	position: absolute;
	right: 15px;
}

.make-program__select select {
	background-image:
		linear-gradient(45deg, transparent 50%, #fff 50%),
		linear-gradient(135deg, #fff 50%, transparent 50%);
	background-position: calc(100% - 21px) 24px, calc(100% - 15px) 24px;
	background-repeat: no-repeat;
	background-size: 6px 6px, 6px 6px;
	cursor: pointer;
}

.make-program__select option {
	background: #fff;
	color: #005bc3;
}

.make-program__search:focus-within input,
.make-program__select:focus-within input,
.make-program__select:focus-within select {
	background: rgba(255, 255, 255, .17);
	border-color: var(--program-yellow);
	box-shadow: 0 0 0 2px var(--program-yellow);
}

.make-program__summary {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-bottom: 18px;
	padding-top: 22px;
}

.make-program__status {
	color: #fff;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.make-program__reset {
	background: var(--program-yellow);
	border: 0;
	border-radius: 999px;
	color: var(--program-blue);
	cursor: pointer;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .06em;
	padding: 11px 16px;
	text-transform: uppercase;
}

.make-program__results {
	padding-bottom: 55px;
	padding-top: 0;
}

.make-program__group {
	border-top: 1px solid var(--program-line);
}

.make-program__group-head {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px;
}

.make-program__group-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: grid;
	gap: 18px;
	grid-template-columns: 78px minmax(0, 1fr) auto;
	padding: 24px 0;
	text-align: left;
	width: 100%;
}

.make-program__group-toggle:hover,
.make-program__group-toggle:focus-visible,
.make-program__group-info:hover,
.make-program__group-info:focus-visible {
	color: var(--program-yellow);
	outline: 0;
}

.make-program__group-code {
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 650;
	letter-spacing: -.04em;
}

.make-program__group-title {
	font-size: clamp(23px, 2.4vw, 37px);
	font-weight: 550;
	letter-spacing: -.035em;
	line-height: 1.02;
}

.make-program__group-count {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	margin-top: 8px;
	opacity: .78;
	text-transform: uppercase;
}

.make-program__group-chevron {
	font-size: 28px;
	transition: transform .18s ease;
}

.make-program__group-toggle[aria-expanded="true"] .make-program__group-chevron {
	transform: rotate(180deg);
}

.make-program__group-info {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	height: 48px;
	padding: 0;
	width: 48px;
}

.make-program__group-info .material-symbols-outlined {
	font-size: 25px;
}

.make-program__panels {
	display: grid;
	gap: 18px 42px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 0 0 32px;
}

.make-program__panel {
	background: transparent;
	padding: 13px 0 17px;
}

.make-program__panel-head {
	align-items: start;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: grid;
	gap: 14px;
	grid-template-columns: 25px minmax(0, 1fr) auto;
	padding: 8px 0;
	text-align: left;
	width: 100%;
}

.make-program__panel-icon {
	color: var(--program-yellow);
	font-size: 20px;
	margin-top: 1px;
}

.make-program__panel-title {
	color: var(--program-yellow);
	display: block;
	font-size: 21px;
	font-weight: 650;
	letter-spacing: -.025em;
	line-height: 1.08;
}

.make-program__panel-meta,
.make-program__paper-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}

.make-program__chip {
	align-items: center;
	display: inline-flex;
	font-size: 10px;
	font-weight: 700;
	gap: 4px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.make-program__chip + .make-program__chip::before {
	content: "·";
	margin-right: 2px;
	opacity: .65;
}

.make-program__chip .material-symbols-outlined {
	font-size: 14px;
}

.make-program__panel-arrow {
	align-self: center;
	font-size: 25px;
}

.make-program__papers {
	margin-left: 0;
}

.make-program__paper {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: grid;
	gap: 14px;
	grid-template-columns: 25px minmax(0, 1fr) auto;
	padding: 11px 0;
	text-align: left;
	width: 100%;
}

.make-program__panel-head:hover,
.make-program__panel-head:focus-visible {
	color: var(--program-yellow);
	outline: 0;
}

.make-program__paper {
	transition: opacity .16s ease;
}

.make-program__paper:hover,
.make-program__paper:focus-visible {
	opacity: .68;
	outline: 0;
}

.make-program__paper-icon {
	font-size: 18px;
	margin-top: 1px;
}

.make-program__paper-title {
	display: block;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.2;
}

.make-program__paper-presenter {
	display: block;
	font-size: 12px;
	line-height: 1.3;
	margin-top: 5px;
	opacity: .88;
}

.make-program__directory {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.make-program__paper-directory {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-right: 28px;
}

.make-program__letter-sections {
	min-width: 0;
}

.make-program__letter-section {
	scroll-margin-top: 18px;
}

.make-program__letter-section + .make-program__letter-section {
	margin-top: 30px;
}

.make-program__letter-heading {
	color: var(--program-yellow);
	font-size: 32px;
	font-weight: 650;
	letter-spacing: -.04em;
	line-height: 1;
	margin: 0 0 8px;
}

.make-program__alphabet {
	background: #f2fe34;
	border: 1px solid #005bc3;
	border-radius: 999px;
	box-shadow: 0 1px 4px rgba(0, 91, 195, .24);
	display: grid;
	font-family: "Space Grotesk", sans-serif;
	grid-template-rows: repeat(26, minmax(0, 1fr));
	height: auto;
	left: auto !important;
	opacity: 0;
	padding: 7px 4px;
	pointer-events: none;
	position: fixed;
	right: 18px !important;
	top: 82px;
	bottom: 12px;
	transform: none;
	transition: opacity .22s ease;
	width: 34px;
	z-index: 2147483000;
}

.make-program__alphabet.is-visible {
	opacity: 1;
	pointer-events: auto;
}

body.make-program-alphabet-active .make-program__finder,
body.make-program-alphabet-active .make-program__summary {
	padding-right: 76px;
}

.make-program__alphabet button,
.make-program__alphabet span {
	align-items: center;
	background: transparent;
	border: 0;
	color: #005bc3;
	display: flex;
	font-size: 10px;
	font-weight: 750;
	height: 100%;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 26px;
}

.make-program__alphabet button {
	border-radius: 999px;
	cursor: pointer;
}

.make-program__alphabet button:hover,
.make-program__alphabet button:focus-visible,
.make-program__alphabet button.is-active {
	background: #005bc3;
	color: #f2fe34;
	outline: 0;
}

.make-program__alphabet span {
	opacity: .25;
}

.make-program__directory-item {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--program-line);
	color: #fff;
	cursor: pointer;
	display: grid;
	gap: 16px;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	min-height: 102px;
	padding: 18px;
	text-align: left;
	width: 100%;
}

.make-program__directory-item--static {
	cursor: default;
	grid-template-columns: 42px minmax(0, 1fr);
}

.make-program__directory-item--static:hover {
	color: #fff;
}

.make-program__directory-item:hover,
.make-program__directory-item:focus-visible {
	color: var(--program-yellow);
	outline: 0;
}

.make-program__directory-icon {
	color: var(--program-yellow);
	font-size: 27px;
}

.make-program__directory-title {
	display: block;
	font-size: 18px;
	font-weight: 650;
	line-height: 1.12;
}

.make-program__directory-meta {
	display: block;
	font-size: 12px;
	margin-top: 6px;
	opacity: .86;
}

.make-program__empty,
.make-program__error {
	border-top: 1px solid var(--program-line);
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	padding: 32px 0;
}

.make-program__schedule-day {
	border-top: 1px solid var(--program-line);
	padding: 28px 0 10px;
}

.make-program__schedule-date {
	color: var(--program-yellow);
	font-size: clamp(30px, 4vw, 54px);
	font-weight: 600;
	letter-spacing: -.045em;
	line-height: 1;
	margin: 0 0 25px;
}

.make-program__timeslot {
	display: grid;
	gap: 24px;
	grid-template-columns: 150px minmax(0, 1fr);
	margin-bottom: 34px;
}

.make-program__timeslot-time {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.15;
	padding-top: 16px;
}

.make-program__timeslot-sessions {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.make-program__schedule-session {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--program-line);
	color: #fff;
	cursor: pointer;
	padding: 19px;
	text-align: left;
}

.make-program__schedule-session:hover,
.make-program__schedule-session:focus-visible {
	color: var(--program-yellow);
	outline: 0;
}

.make-program__schedule-session strong {
	display: block;
	font-size: 19px;
	line-height: 1.1;
}

.make-program__schedule-session small {
	display: block;
	font-size: 12px;
	margin-top: 8px;
}

.make-program__coming-soon {
	padding: 42px 0;
}

.make-program__coming-soon h2 {
	color: #fff;
	font-size: clamp(34px, 5vw, 64px);
	letter-spacing: -.05em;
	line-height: .95;
	margin: 0 0 15px;
}

.make-program__coming-soon p {
	font-size: 17px;
	margin: 0 0 22px;
}

.make-program__coming-soon button {
	background: var(--program-yellow);
	border: 0;
	border-radius: 999px;
	color: var(--program-blue);
	cursor: pointer;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .07em;
	padding: 13px 18px;
	text-transform: uppercase;
}

.make-program__modal {
	--program-blue: #005bc3;
	--program-yellow: #f2fe34;
	--program-line: rgba(255, 255, 255, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Space Grotesk", sans-serif;
	inset: 0;
	opacity: 0;
	padding: 24px;
	pointer-events: none;
	position: fixed;
	transition: opacity .18s ease;
	visibility: hidden;
	overflow: hidden;
	z-index: 2147483646;
}

.make-program__modal.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.make-program__modal-backdrop {
	background: rgba(0, 35, 86, .78);
	backdrop-filter: blur(7px);
	inset: 0;
	position: absolute;
}

.make-program__modal-dialog {
	background: #005bc3 !important;
	border-radius: 14px;
	box-shadow: 0 30px 90px rgba(0, 24, 66, .48);
	color: #fff;
	display: block;
	max-height: min(calc(100dvh - 48px), 920px);
	max-width: 980px;
	overflow: hidden;
	position: relative;
	transform: translateY(18px) scale(.985);
	transition: transform .22s ease;
	width: min(100%, 980px);
}

.make-program__modal.is-open .make-program__modal-dialog {
	transform: translateY(0) scale(1);
}

.make-program__modal-close {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-size: 38px;
	font-weight: 300;
	height: 46px;
	line-height: 1;
	position: absolute;
	right: 12px;
	top: 10px;
	transition: color .18s ease, transform .18s ease;
	width: 40px;
	z-index: 3;
}

.make-program__modal-close:hover,
.make-program__modal-close:focus-visible {
	background: transparent;
	color: var(--program-yellow);
	outline: 0;
	transform: scale(1.08);
}

.make-program__modal-content {
	color: #fff;
	display: block;
	margin: 6px 5px 6px 0;
	max-height: calc(min(100dvh - 48px, 920px) - 12px);
	min-height: 200px;
	opacity: 1;
	overflow-y: auto;
	padding: clamp(28px, 4vw, 44px);
	padding-right: clamp(54px, 6vw, 68px);
	scrollbar-gutter: stable;
	visibility: visible;
}

.make-program__modal-content::-webkit-scrollbar {
	width: 10px;
}

.make-program__modal-content::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, .48);
	border: 3px solid #005bc3;
	border-radius: 999px;
}

.make-program__modal-label,
.make-program__modal-panel-link,
.make-program__modal-stream {
	align-items: center;
	background: var(--program-yellow);
	border: 0;
	border-radius: 999px;
	color: var(--program-blue);
	display: inline-flex;
	font-size: 11px;
	font-weight: 750;
	gap: 6px;
	letter-spacing: .07em;
	margin-bottom: 20px;
	padding: 9px 12px;
	text-transform: uppercase;
	vertical-align: middle;
}

.make-program__modal-panel-link,
.make-program__modal-stream {
	cursor: pointer;
	margin-left: 7px;
}

.make-program__modal-label .material-symbols-outlined,
.make-program__modal-panel-link .material-symbols-outlined,
.make-program__modal-stream .material-symbols-outlined {
	font-size: 20px;
}

.make-program__modal-panel-link:hover,
.make-program__modal-panel-link:focus-visible,
.make-program__modal-stream:hover,
.make-program__modal-stream:focus-visible {
	background: #fff;
	outline: 0;
}

.make-program__modal-title {
	color: #fff;
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: 1.06;
	margin: 0 0 25px;
	text-transform: none;
}

.make-program__modal-title + .make-program__modal-meta {
	max-width: 760px;
}

.make-program__modal-meta {
	border-bottom: 1px solid var(--program-line);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 26px;
	padding-bottom: 24px;
}

.make-program__modal-meta--panel {
	border-bottom: 0;
	padding-bottom: 0;
}

.make-program__modal-meta--person {
	border-bottom: 0;
	margin-bottom: 8px;
	padding-bottom: 0;
}

.make-program__modal-meta--paper {
	border-bottom: 0;
}

.make-program__modal-description {
	color: #fff;
	font-size: 15px;
	line-height: 1.4;
	white-space: pre-line;
}

.make-program__modal-description p {
	display: block;
	margin: 0 0 1.2em !important;
}

.make-program__modal-description p:last-child {
	margin-bottom: 0 !important;
}

.make-program__modal-description p:empty {
	display: none;
}

.make-program__modal-description ul {
	margin: .5em 0 1.2em;
}

.make-program__modal-description li + li {
	margin-top: .4em;
}

.make-program__modal-description br + br {
	content: "";
	display: block;
	margin-top: .8em;
}

.make-program__modal-description--making p {
	margin-bottom: .7em !important;
}

.make-program__modal-description--making p:last-child {
	margin-bottom: 0 !important;
}

.make-program__modal-description--stream {
	white-space: normal;
}

.make-program__modal-description--stream p {
	margin: 0 !important;
}

.make-program__modal-description--stream p + p {
	margin-top: .45em !important;
}

.make-program__modal-description--stream ul {
	margin: .45em 0 .8em;
}

.make-program__modal-making-image {
	border-radius: 10px;
	display: block;
	height: auto;
	margin-top: 24px;
	max-width: 100%;
	width: auto;
}

.make-program__modal-papers {
	border-top: 1px solid var(--program-line);
	margin-top: 30px;
}

.make-program__modal-papers--person {
	border-top: 0;
	margin-top: 8px;
}

.make-program__modal-papers--person > button {
	border-bottom: 0;
	padding: 13px 0;
}

.make-program__modal-papers--person > .make-program__modal-child--static {
	border-bottom: 0;
	padding: 13px 0;
}

.make-program__modal-child--static {
	cursor: default;
}

.make-program__modal-child--static:hover {
	color: #fff;
}

.make-program__schedule-session--static {
	cursor: default;
}

.make-program__schedule-session--static:hover {
	color: #fff;
}

.make-program__modal-paper,
.make-program__modal-making,
.make-program__modal-stream-item,
.make-program__modal-panel {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--program-line);
	color: #fff;
	cursor: pointer;
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 19px 0;
	text-align: left;
	width: 100%;
}

.make-program__modal-panel,
.make-program__modal-paper,
.make-program__modal-making,
.make-program__modal-stream-item {
	grid-template-columns: 25px minmax(0, 1fr) auto;
}

.make-program__modal-panel-icon,
.make-program__modal-paper-icon,
.make-program__modal-making-icon,
.make-program__modal-stream-icon {
	color: var(--program-yellow);
	font-size: 21px;
	margin-top: 1px;
}

.make-program__modal-paper:hover,
.make-program__modal-making:hover,
.make-program__modal-stream-item:hover,
.make-program__modal-panel:hover {
	color: var(--program-yellow);
}

.make-program__modal-paper strong,
.make-program__modal-making strong,
.make-program__modal-stream-item strong,
.make-program__modal-panel strong {
	font-size: 19px;
	line-height: 1.12;
}

.make-program__modal-paper small,
.make-program__modal-making small,
.make-program__modal-stream-item small,
.make-program__modal-panel small {
	display: block;
	font-size: 12px;
	margin-top: 6px;
}

body.make-program-modal-open {
	overflow: hidden;
}

@media (max-width: 1000px) {
	.make-program__finder {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.make-program__search {
		grid-column: span 2;
	}

	.make-program__views {
		grid-column: 1 / -1;
	}

	.make-program__panels {
		grid-template-columns: 1fr;
	}

	.make-program__timeslot-sessions {
		grid-template-columns: 1fr;
	}
}

.program-reference__toggle {
	align-items: center;
	background: #f2fe34;
	border: 0;
	color: #005bc3;
	cursor: pointer;
	display: grid;
	font-family: "Space Grotesk", sans-serif;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto 34px;
	text-align: left;
	width: 100%;
}

.program-reference__toggle strong {
	display: block;
	font-size: clamp(24px, 3vw, 42px);
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: 1;
}

.program-reference__title {
	align-items: center;
	display: flex;
	gap: 14px;
	min-width: 0;
}

.program-reference__title .material-symbols-outlined {
	flex: 0 0 auto;
	font-size: clamp(26px, 3vw, 38px);
}

.program-reference__status {
	background: #005bc3;
	border-radius: 999px;
	color: #f2fe34;
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .08em;
	padding: 7px 10px 6px;
	text-transform: uppercase;
}

.program-reference__hint {
	font-size: 13px;
	font-weight: 650;
	letter-spacing: .02em;
	max-width: 220px;
}

.program-reference__icon {
	color: #005bc3;
	font-size: 34px;
	transition: transform .2s ease;
}

.program-reference__toggle[aria-expanded="true"] .program-reference__icon {
	transform: rotate(180deg);
}

.program-reference__toggle:hover,
.program-reference__toggle:focus-visible {
	background: #f2fe34;
	color: #005bc3;
	outline: 0;
}

.program-reference__toggle:hover .program-reference__icon,
.program-reference__toggle:focus-visible .program-reference__icon {
	color: #005bc3 !important;
}

.conference-themes__toggle,
.conference-themes__toggle:hover,
.conference-themes__toggle:focus-visible {
	background: #0a0a0a;
	color: #0a0a0a;
	display: flex;
	justify-content: center;
	outline: 0;
	padding-bottom: clamp(50px, 6vw, 80px);
	padding-top: clamp(50px, 6vw, 80px);
}

.conference-themes__button-label {
	background: #fe084e;
	border-radius: 9px;
	color: #0a0a0a;
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	justify-content: center;
	letter-spacing: .05em;
	line-height: 1;
	padding: 14px 26px;
	text-align: center;
	text-transform: uppercase;
	transition: opacity .18s ease, transform .18s ease;
}

.conference-themes__toggle:hover .conference-themes__button-label,
.conference-themes__toggle:focus-visible .conference-themes__button-label {
	opacity: .84;
	transform: translateY(-1px);
}

.make-media-kit__cta {
	display: none !important;
}

.make-media-kit__inner {
	padding-bottom: 0;
}

.hotel-booking-details {
	display: grid;
	gap: 0;
	margin-top: 24px;
	max-width: 760px;
}

.hotel-detail {
	display: grid;
	font-size: 14px;
	gap: 20px;
	grid-template-columns: minmax(130px, .35fr) minmax(0, 1fr);
	line-height: 1.45;
	padding: 12px 0;
}

.hotel-detail + .hotel-detail {
	border-top: 1px solid #fff;
}

.hotel-detail__label {
	color: #ffae2d;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.hotel-detail > span:last-child {
	color: #fff;
}

.hotel-detail a {
	color: #fff;
	text-decoration-color: #ffae2d;
	text-underline-offset: 3px;
}

.hotel-description {
	color: var(--color-text-muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 16px 0 0;
	max-width: 760px;
}

.hotel-policy {
	border-left: 3px solid #ffae2d;
	color: var(--color-text-dim);
	font-size: 12px;
	line-height: 1.5;
	margin: 16px 0 0;
	max-width: 760px;
	padding-left: 12px;
}

.hotel-aside {
	align-items: flex-end;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	gap: 22px;
	justify-content: space-between;
	min-width: 190px;
}

.hotel-booking-actions {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.hotel-booking-button {
	align-items: center;
	background: #ffae2d;
	border: 1px solid #ffae2d;
	border-radius: 8px;
	color: #111 !important;
	display: inline-flex;
	font-family: "Space Grotesk", sans-serif;
	font-size: 12px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .05em;
	min-width: 190px;
	padding: 14px 20px;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: opacity .18s ease, transform .18s ease;
}

.hotel-booking-button:hover,
.hotel-booking-button:focus-visible {
	color: #111 !important;
	opacity: .82;
	outline: 0;
	transform: translateY(-1px);
}

.hotel-booking-button--secondary {
	background: transparent;
	color: #ffae2d !important;
}

.hotel-booking-button--secondary:hover,
.hotel-booking-button--secondary:focus-visible {
	color: #ffae2d !important;
}

#venue .hotel-card {
	gap: 28px 50px;
	grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
	padding: clamp(26px, 3vw, 42px);
}

#venue .hotel-card:hover {
	transform: none;
}

#venue .hotel-name {
	font-size: clamp(25px, 2.6vw, 38px);
	letter-spacing: -.035em;
	line-height: 1.05;
	margin-bottom: 10px;
}

#venue .hotel-address {
	font-size: 15px;
	font-weight: 650;
	margin-bottom: 0;
}

#venue .hotel-rate {
	color: #ffae2d !important;
	font-size: clamp(20px, 2vw, 27px);
	line-height: 1.05;
	max-width: 240px;
}

#venue .hotel-note {
	color: var(--color-text-muted);
	font-style: normal;
	letter-spacing: .03em;
	margin: 0;
	padding-top: 18px;
}

.program-reference__content[hidden],
.conference-themes__content[hidden] {
	display: none !important;
}

@media (max-width: 720px) {
	body.make-program-alphabet-active .make-program__finder,
	body.make-program-alphabet-active .make-program__summary {
		padding-right: 48px;
	}

	.program-reference__toggle {
		gap: 14px;
		grid-template-columns: minmax(0, 1fr) 30px;
	}

	.program-reference__hint {
		display: none;
	}

	#venue .hotel-card {
		gap: 24px;
		grid-template-columns: 1fr;
	}

	.hotel-aside {
		align-items: stretch;
		min-width: 0;
	}

	#venue .hotel-rate,
	#venue .hotel-code {
		max-width: none;
		text-align: left;
	}

	.hotel-booking-button {
		min-width: 0;
		width: 100%;
	}

	.hotel-detail {
		gap: 6px;
		grid-template-columns: 1fr;
	}

	.make-program__header {
		grid-template-columns: 1fr;
	}

	.make-program__finder {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.make-program__search {
		grid-column: 1 / -1;
	}

	.make-program__view-options button {
		flex-direction: column;
		font-size: 9px;
		gap: 3px;
	}

	.make-program__panels {
		padding-left: 0;
	}

	.make-program__directory {
		grid-template-columns: 1fr;
	}

	.make-program__paper-directory {
		gap: 16px;
		padding-right: 22px;
	}

	.make-program__alphabet {
		bottom: 8px;
		padding: 5px 3px;
		right: 8px !important;
		top: 76px;
		width: 28px;
	}

	.make-program__alphabet button,
	.make-program__alphabet span {
		font-size: 8px;
		height: 100%;
		width: 22px;
	}

	.make-program__letter-section {
		scroll-margin-top: 58px;
	}

	.make-program__timeslot {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

@media (max-width: 520px) {
	.make-program__title {
		font-size: clamp(38px, 12vw, 52px);
	}

	.make-program__finder {
		grid-template-columns: 1fr;
	}

	.make-program__search {
		grid-column: auto;
	}

	.make-program__view-options button > span:last-child {
		clip: rect(0, 0, 0, 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		position: absolute;
		white-space: nowrap;
		width: 1px;
	}

	.make-program__view-options .material-symbols-outlined {
		font-size: 23px;
	}

	.make-program__group-head {
		grid-template-columns: minmax(0, 1fr) 40px;
	}

	.make-program__group-toggle {
		gap: 10px;
		grid-template-columns: 46px minmax(0, 1fr) 28px;
	}

	.make-program__group-info {
		height: 40px;
		width: 40px;
	}

	.make-program__panel-head {
		grid-template-columns: 22px minmax(0, 1fr) 22px;
	}

	.make-program__paper {
		gap: 10px;
		grid-template-columns: 22px minmax(0, 1fr) 22px;
	}

	.make-program__modal-dialog {
		border-radius: 12px;
		max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 16px);
		max-width: none;
		width: 100%;
	}

	.make-program__modal-content {
		max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
		padding: calc(48px + env(safe-area-inset-top, 0px)) 20px calc(32px + env(safe-area-inset-bottom, 0px));
	}
}
