/* Conffab refresh: reset, typography, forms and document foundations. */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	min-width: 20rem;
	background: var(--cf-canvas);
	scroll-behavior: smooth;
	text-rendering: optimizeLegibility;
}

body.cf-style-refresh {
	margin: 0;
	overflow-x: clip;
	background: var(--cf-canvas);
	color: var(--cf-ink);
	font-family: var(--cf-font-sans);
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

/* Older editorial content often carries an inline 400 weight. Let the refresh
	use its stronger, more readable document weight instead. */
body.cf-style-refresh span[style*="font-weight: 400"] {
	font-weight: inherit !important;
}

body.cf-style-refresh #wrapper {
	min-height: calc(100vh - var(--cf-header-height));
	margin: 0;
	padding: 0 0 var(--cf-space-7);
	background: var(--cf-canvas);
}

body.cf-style-refresh .page-container,
body.cf-style-refresh .page-template {
	width: min(100%, calc(var(--cf-content) + 2 * var(--cf-space-4)));
	margin: 0 auto;
	padding: calc(var(--cf-header-height) + var(--cf-space-5)) var(--cf-space-4) 0;
}

body.cf-style-refresh .container {
	width: min(100%, var(--cf-content));
	max-width: var(--cf-content);
	margin-right: auto;
	margin-left: auto;
}

body.cf-style-refresh .row {
	margin-right: 0;
	margin-left: 0;
}

body.cf-style-refresh main,
body.cf-style-refresh article,
body.cf-style-refresh section,
body.cf-style-refresh header,
body.cf-style-refresh footer,
body.cf-style-refresh nav {
	min-width: 0;
}

body.cf-style-refresh img,
body.cf-style-refresh picture,
body.cf-style-refresh video,
body.cf-style-refresh iframe,
body.cf-style-refresh object,
body.cf-style-refresh svg {
	max-width: 100%;
}

body.cf-style-refresh img {
	height: auto;
}

body.cf-style-refresh h1,
body.cf-style-refresh h2,
body.cf-style-refresh h3,
body.cf-style-refresh h4,
body.cf-style-refresh h5,
body.cf-style-refresh h6 {
	margin: 0 0 0.55em;
	color: var(--cf-ink);
	font-family: var(--cf-font-sans);
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

body.cf-style-refresh h1 {
	font-size: clamp(2.7rem, 6vw, 5.75rem);
	font-weight: 600;
	letter-spacing: -0.045em;
}

body.cf-style-refresh h2 {
	font-size: clamp(2rem, 3.4vw, 3.5rem);
}

body.cf-style-refresh h3 {
	font-size: clamp(1.25rem, 2vw, 1.75rem);
}

body.cf-style-refresh h4 {
	font-size: 1.2rem;
}

body.cf-style-refresh p,
body.cf-style-refresh ul,
body.cf-style-refresh ol,
body.cf-style-refresh blockquote {
	margin-top: 0;
	margin-bottom: 1.25em;
}

body.cf-style-refresh article p,
body.cf-style-refresh .details p,
body.cf-style-refresh .bio p {
	max-width: var(--cf-reading);
}

body.cf-style-refresh a {
	color: var(--cf-brand-strong);
	text-decoration-color: color-mix(in srgb, currentColor 45%, transparent);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
	transition: color var(--cf-transition), text-decoration-color var(--cf-transition), background var(--cf-transition), border-color var(--cf-transition), transform var(--cf-transition);
}

body.cf-style-refresh a:hover {
	color: var(--cf-accent);
	text-decoration-color: currentColor;
}

body.cf-style-refresh :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 2px solid var(--cf-focus);
	outline-offset: 3px;
	box-shadow: var(--cf-shadow-focus);
}

body.cf-style-refresh hr {
	border: 0;
	border-top: 1px solid var(--cf-border);
	margin: var(--cf-space-5) 0;
}

body.cf-style-refresh code,
body.cf-style-refresh pre {
	font-family: var(--cf-font-mono);
}

body.cf-style-refresh blockquote {
	max-width: var(--cf-reading);
	padding: var(--cf-space-4) var(--cf-space-5);
	border-left: 0.3rem solid var(--cf-brand);
	background: var(--cf-surface-subtle);
	border-radius: 0 var(--cf-radius-md) var(--cf-radius-md) 0;
}

body.cf-style-refresh input,
body.cf-style-refresh select,
body.cf-style-refresh textarea {
	width: 100%;
	min-height: 3rem;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--cf-border-strong);
	border-radius: var(--cf-radius-sm);
	background: var(--cf-surface);
	color: var(--cf-ink) !important;
	font: inherit;
}

body.cf-style-refresh textarea {
	min-height: 9rem;
	resize: vertical;
}

body.cf-style-refresh label {
	color: var(--cf-ink-soft);
	font-weight: 600;
}

body.cf-style-refresh button,
body.cf-style-refresh input[type="button"],
body.cf-style-refresh input[type="submit"],
body.cf-style-refresh a.button,
body.cf-style-refresh .button,
body.cf-style-refresh .button-like,
body.cf-style-refresh .primary-button,
body.cf-style-refresh .um-button,
body.cf-style-refresh .tml-button,
body.cf-style-refresh .pmpro_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.65rem 1.1rem;
	border: 1px solid var(--cf-brand);
	border-radius: var(--cf-radius-pill);
	background: var(--cf-brand);
	color: var(--cf-on-brand) !important;
	font: 650 0.95rem/1 var(--cf-font-sans);
	text-decoration: none;
	cursor: pointer;
	transition: transform var(--cf-transition), box-shadow var(--cf-transition), background var(--cf-transition);
}

body.cf-style-refresh :where(button, input[type="button"], input[type="submit"], a.button, .button, .button-like, .primary-button, .um-button, .tml-button, .pmpro_btn):hover {
	background: var(--cf-brand-strong);
	color: var(--cf-on-brand) !important;
	transform: translateY(-1px);
	box-shadow: var(--cf-shadow-sm);
}

body.cf-style-refresh table {
	width: 100%;
	border-collapse: collapse;
	background: var(--cf-surface);
	color: var(--cf-ink);
}

body.cf-style-refresh th,
body.cf-style-refresh td {
	padding: 0.9rem 1rem;
	border-bottom: 1px solid var(--cf-border);
	vertical-align: top;
}

body.cf-style-refresh th {
	font-weight: 650;
	text-align: left;
}

body.cf-style-refresh .text-center {
	text-align: left !important;
}

body.cf-style-refresh .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Refreshed pages opt into a restrained same-origin navigation transition.
	The Cards/List control adds temporary names to individual speaker cards so
	the browser can interpolate their positions without retaining costly layers. */
@view-transition {
	navigation: auto;
}

::view-transition-group(root) {
	animation-duration: 240ms;
	animation-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
}

::view-transition-old(root) {
	animation-name: cf-page-leave;
}

::view-transition-new(root) {
	animation-name: cf-page-enter;
}

::view-transition-group(cf-site-header) {
	z-index: 1000;
	animation: none;
}

::view-transition-old(cf-site-header),
::view-transition-new(cf-site-header) {
	z-index: 1000;
	animation: none;
	mix-blend-mode: normal;
}

@keyframes cf-page-leave {
	to {
		opacity: 0;
		transform: translateY(-0.25rem);
	}
}

@keyframes cf-page-enter {
	from {
		opacity: 0;
		transform: translateY(0.25rem);
	}
}
