/* enhance.css — loaded last, after repair.css
 *
 * Presentation only. Nothing here is required for the page to function; delete
 * the one <link> and the page returns to how it was archived (plus repairs).
 *
 * The captured theme is a 2022 Bootstrap 4 build with flat cards, hard edges and
 * inconsistent vertical rhythm, and it lost several of its stylesheets. This
 * file gives every section a consistent treatment in the event's own palette:
 * navy #071033, gold #f5a524, and the theme's existing accent #ff5b2e.
 */

:root {
	--eis-navy: #071033;
	--eis-navy-2: #0f1c46;
	--eis-gold: #f5a524;
	--eis-accent: #ff5b2e;
	--eis-ink: #1a2138;
	--eis-muted: #5c6785;
	--eis-line: #e2e7f2;
	--eis-paper: #ffffff;
	--eis-paper-2: #f5f7fc;
	--eis-r: 16px;
	--eis-shadow: 0 2px 4px rgba(10, 22, 60, .04), 0 14px 34px -10px rgba(10, 22, 60, .14);
	--eis-shadow-lg: 0 30px 60px -18px rgba(10, 22, 60, .28);
}

body {
	color: var(--eis-ink);
	background: var(--eis-paper);
	-webkit-font-smoothing: antialiased;
}

/* `.auto-container` is the theme's page-width wrapper — every one of the 15
   sections uses it — and it had no rule anywhere in the captured CSS, because
   the stylesheet that defined it was one of the lost @imports. Without it every
   section ran full-bleed to the viewport edge and the header had no width to
   lay the menu out in. */
.auto-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (min-width: 1400px) { .auto-container { max-width: 1290px; } }

img { max-width: 100%; height: auto; }

::selection { background: var(--eis-gold); color: #2a1b00; }

:focus-visible {
	outline: 3px solid var(--eis-gold);
	outline-offset: 3px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}

/* ================================================================ header/menu */

/* The theme shipped the navigation three times — the header menu, a
   `.sticky-header` clone and a `.menu-backdrop` drawer — and the stylesheet that
   positioned them was one of the @imports the crawler never saved, so all three
   rendered as plain stacked lists and the menu appeared three times over. The
   two duplicates are removed during the rebuild; what follows styles the one
   that remains, and makes it stick on scroll so nothing is lost by the removal. */

/* The whole header sticks, not `.header-lower` on its own — a sticky child is
   released as soon as its parent's box scrolls past, so sticking the inner bar
   would unstick it almost immediately. */
.main-header {
	position: sticky;
	top: 0;
	z-index: 940;
	transition: box-shadow .25s ease;
}

.main-header.is-stuck { box-shadow: 0 8px 26px -12px rgba(10, 22, 60, .4); }

/* Reclaim the top strip's height once scrolling starts.
   The resting max-height has to clear the tallest the strip ever gets — five
   social icons plus city, date and email wrap to two rows on a narrow window,
   and a 60px clamp silently cut the city/date/email off the bottom. */
.header-top {
	overflow: hidden;
	transition: max-height .3s ease, padding .3s ease, opacity .25s ease;
	max-height: 220px;
}

.main-header.is-stuck .header-top {
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0;
}

.main-header.is-stuck .header-lower .main-box { min-height: 68px; }
.main-header.is-stuck .header-lower .logo img { max-height: 44px; }

.header-top {
	background: var(--eis-navy);
	padding: 9px 0;
	font-size: 14px;
}

.header-top .inner-container {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	align-items: center;
	justify-content: space-between;
}

.header-top a,
.header-top strong,
.header-top li { color: rgba(255, 255, 255, .86); }

.social-icon-one,
.contact-list-one {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-top .contact-list-one { justify-content: flex-end; }

.contact-list-one li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	white-space: nowrap;
}

.contact-list-one i { color: var(--eis-gold); font-size: 15px; flex: none; }

/* the three facts are the point of the strip — keep them legible against the
   navy, and let the social icons be the part that drops on small screens */
.header-top .contact-list-one strong { font-weight: 700; color: #fff; }
.header-top .contact-list-one a { color: #fff; }
.header-top .contact-list-one a:hover { color: var(--eis-gold); }

@media (max-width: 767px) {
	.header-top .inner-container { justify-content: center; }
	.header-top .top-left { order: 2; }
	.header-top .contact-list-one { justify-content: center; gap: 8px 16px; }
	.contact-list-one li { font-size: 13px; }
}

.social-icon-one a {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	font-size: 13px;
	transition: background .18s ease, transform .18s ease;
}

.social-icon-one a:hover {
	background: var(--eis-gold);
	color: #2a1b00;
	transform: translateY(-2px);
}

.header-lower {
	background: #fff;
	box-shadow: 0 1px 0 var(--eis-line);
}

.header-lower .main-box {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 76px;
	position: relative;
}

/* The theme's logo-box carried the spacing of a much taller header. Collapse it
   so the mark sits tight against the bar instead of floating in a deep band. */
.header-lower .logo-box,
.header-lower .logo {
	margin: 0;
	padding: 0;
	line-height: 0;
}

.header-lower .logo a { display: inline-block; line-height: 0; }

.header-lower .logo img {
	max-height: 62px;
	width: auto;
	display: block;
}

.header-lower .nav-outer { margin-left: auto; }

@media (max-width: 1199px) {
	.header-lower .main-box { min-height: 66px; }
	.header-lower .logo img { max-height: 48px; }
}

/* --- the desktop menu ---------------------------------------------------- */

/* Eight top-level items have to sit on one line beside the logo, so the row
   never wraps and the labels never break mid-word; below 1200px the whole menu
   collapses behind the toggle instead of stacking. */
.main-menu .navigation {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-menu .navigation > li {
	position: relative;
	flex: 0 0 auto;
}

.main-menu .navigation > li > a {
	display: block;
	padding: 11px 11px;
	border-radius: 8px;
	color: var(--eis-ink);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	text-decoration: none;
	transition: color .16s ease, background .16s ease;
}

@media (min-width: 1400px) {
	.main-menu .navigation > li > a { padding: 11px 14px; font-size: 15px; }
}

.main-menu .navigation > li > a:hover,
.main-menu .navigation > li.is-open > a,
.main-menu .navigation > li > a.is-current {
	background: #eef1fa;
	color: var(--eis-navy);
}

.main-menu .navigation > li > a.is-current { box-shadow: inset 0 -2px 0 var(--eis-gold); }

/* dropdown parents get a caret */
.main-menu .navigation > li.dropdown > a::after {
	content: "";
	display: inline-block;
	width: .42em;
	height: .42em;
	margin-left: .5em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-.15em) rotate(45deg);
	transition: transform .18s ease;
}

.main-menu .navigation > li.dropdown.is-open > a::after { transform: translateY(.1em) rotate(-135deg); }

/* the submenu itself */
.main-menu .navigation > li > ul {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	min-width: 268px;
	margin: 0;
	padding: 8px;
	border: 1px solid var(--eis-line);
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--eis-shadow);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.main-menu .navigation > li.is-open > ul {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.main-menu .navigation > li > ul li { display: block; }

.main-menu .navigation > li > ul a {
	display: block;
	padding: 10px 14px;
	border-radius: 9px;
	color: var(--eis-muted);
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}

.main-menu .navigation > li > ul a:hover {
	background: #f2f5fd;
	color: var(--eis-navy);
}

/* --- belt and braces ------------------------------------------------------ */

/* The duplicates are stripped during the rebuild. These rules only matter if
   this stylesheet is ever used against an unprocessed copy of the capture. */
.sticky-header,
.mobile-menu,
.menu-backdrop { display: none !important; }

.eis-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 42px;
	margin-left: auto;
	padding: 0 10px;
	border: 1px solid var(--eis-line);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}

.eis-burger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--eis-navy);
	transition: transform .2s ease, opacity .2s ease;
}

.eis-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.eis-burger.is-open span:nth-child(2) { opacity: 0; }
.eis-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1199px) {
	.eis-burger { display: flex; }
	.header-lower .nav-outer { margin-left: 0; }

	.main-menu .navbar-collapse {
		position: absolute;
		top: calc(100% + 6px);
		left: 0;
		right: 0;
		z-index: 940;
		display: block !important;
		max-height: 0;
		overflow: hidden;
		border-radius: 14px;
		background: #fff;
		box-shadow: var(--eis-shadow);
		transition: max-height .3s ease;
	}

	.main-menu .navbar-collapse.is-open {
		max-height: min(72vh, 640px);
		overflow-y: auto;
	}

	.main-menu .navigation {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px;
	}

	.main-menu .navigation > li > a { padding: 13px 14px; }
	.main-menu .navigation > li + li { border-top: 1px solid var(--eis-line); }

	.main-menu .navigation > li > ul {
		position: static;
		min-width: 0;
		margin: 0 0 8px;
		border: 0;
		border-radius: 10px;
		background: var(--eis-paper-2);
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
	}

	.main-menu .navigation > li.is-open > ul { display: block; }

	body.eis-nav-open { overflow: hidden; }
}

/* ================================================================ sections */

section { position: relative; }

.about-section,
.news-section,
.speakers-sections,
.fun-fact-section,
.key-participants,
.call-to-action-two,
.sponser-logo,
.gallery-section,
.our-magzines,
.key-focus,
.venue { padding: clamp(56px, 7vw, 100px) 0; }

/* alternating ground so adjacent sections stop running together */
.news-section,
.call-to-action-two,
.our-magzines { background: var(--eis-paper-2); }

/* --- section headings ---------------------------------------------------- */

.sec-title { margin-bottom: clamp(30px, 4vw, 52px); }

.sec-title .sub-title {
	display: inline-block;
	margin-bottom: 12px;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(245, 165, 36, .14);
	color: #9a6100;
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.sec-title h2 {
	margin: 0 0 14px;
	color: var(--eis-navy);
	font-size: clamp(27px, 3.4vw, 44px);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -.02em;
}

.sec-title .divider,
.speakers-sections .divider,
.gallery-section .divider {
	display: block;
	width: 68px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--eis-gold), var(--eis-accent));
}

.text-center .divider,
.sec-title.text-center .divider { margin-inline: auto; }

/* --- about --------------------------------------------------------------- */

.about-section .the-about,
.about-section .inner-column p {
	max-width: 74ch;
	color: var(--eis-muted);
	font-size: clamp(15.5px, 1.5vw, 17px);
	line-height: 1.8;
}

.about-section .inner-column p + p { margin-top: 1em; }

/* --- partners ------------------------------------------------------------ */

/* `.our-partner` IS the card — it holds the tier <h3> and the logo <img>.
   (`.part` is the class on the section's <h2>, not on the card; targeting it
   here meant none of this ever applied.) */
.our-partner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	height: 100%;
	min-height: 170px;
	padding: 22px 18px 26px;
	border: 1px solid var(--eis-line);
	border-radius: var(--eis-r);
	background: #fff;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.our-partner:hover {
	transform: translateY(-4px);
	border-color: rgba(245, 165, 36, .55);
	box-shadow: var(--eis-shadow);
}

/* the tier label */
.our-partner h3 {
	order: -1;
	margin: 0;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(245, 165, 36, .35);
	color: var(--eis-navy);
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .13em;
	line-height: 1.4;
	text-transform: uppercase;
}

/* the mark: normalised to one optical size, desaturated until hover so nine
   logos of nine different weights read as one row */
.our-partner img {
	flex: 1;
	width: auto;
	max-width: 100%;
	max-height: 74px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .78;
	transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.our-partner:hover img {
	filter: none;
	opacity: 1;
	transform: scale(1.04);
}

/* a placeholder is already neutral — leave it alone */
.our-partner img[src$="logo-placeholder.svg"] {
	filter: none;
	opacity: 1;
	max-height: 84px;
}

.our-partner:hover img[src$="logo-placeholder.svg"] { transform: none; }

/* Where the logo file is gone for good, the partner's name stands in its place.
   Set as a wordmark, deliberately typographic, so it reads as the record it is
   rather than as an attempt at the real mark. */
.partner-name {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	min-height: 74px;
	padding: 4px 6px;
	color: var(--eis-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(15px, 1.5vw, 19px);
	font-weight: 700;
	letter-spacing: -.01em;
	line-height: 1.25;
	text-align: center;
	transition: color .2s ease;
}

.our-partner:hover .partner-name { color: var(--eis-accent); }

/* the partner grid wants tighter cells than the discussion-point cards that
   share the same .row.sp-cs wrapper */
/* The partner strip shares the .row.sp-cs wrapper with the discussion cards,
   which is laid out three-up. Nine logos want a denser row, so override the
   flex basis rather than the (now inert) grid template. */
#our-partner .row.sp-cs { gap: 18px; }

#our-partner .row.sp-cs > [class*="col-"] {
	flex: 0 1 calc((100% - 54px) / 4);
	min-width: 170px;
	max-width: 260px;
}

@media (max-width: 900px) {
	#our-partner .row.sp-cs > [class*="col-"] { flex-basis: calc((100% - 36px) / 3); }
}

@media (max-width: 575px) {
	#our-partner .row.sp-cs > [class*="col-"] { flex-basis: calc((100% - 18px) / 2); max-width: none; }
}

/* --- speakers & felicitation --------------------------------------------- */

.speakers-sections .speaker-block { margin-bottom: 0; }

.speakers-sections .inner-box {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--eis-line);
	border-radius: var(--eis-r);
	background: #fff;
	box-shadow: 0 1px 2px rgba(10, 22, 60, .04);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.speakers-sections .inner-box:hover {
	transform: translateY(-5px);
	border-color: rgba(245, 165, 36, .6);
	box-shadow: var(--eis-shadow);
}

.speakers-sections .image-box,
.speakers-sections .image-box .image {
	margin: 0;
	overflow: hidden;
	background: #eef1f8;
}

.speakers-sections .image-box .image img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center top;
	transition: transform .5s ease;
}

.speakers-sections .inner-box:hover .image-box .image img { transform: scale(1.05); }

/* Where the photograph is unrecoverable the card shows the person's initials.
   Tinted per-card off the initials so a run of them reads as a set rather than
   as a wall of identical grey boxes. */
.speaker-initials {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: linear-gradient(145deg, var(--eis-navy) 0%, #24306b 55%, #3a2a72 100%);
	color: #fff;
	font-family: var(--font-display, inherit);
	font-size: clamp(30px, 4.5vw, 46px);
	font-weight: 800;
	letter-spacing: .04em;
	line-height: 1;
	user-select: none;
}

.speaker-initials::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	background: linear-gradient(90deg, var(--eis-gold), var(--eis-accent));
}

.speakers-sections .image-box .image { position: relative; display: block; }

/* the theme's hover "+" badge sits over the photo */
.speakers-sections .plus-icon {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--eis-gold);
	color: #2a1b00;
	font-size: 13px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease;
}

.speakers-sections .image-box { position: relative; }
.speakers-sections .inner-box:hover .plus-icon { opacity: 1; transform: none; }

/* this edition names the card `.speaker-block-two`; the grid rule in repair.css
   keys off `.speaker-block`, so the -two variant needs the same treatment */
.eis-carousel .speaker-block-two {
	width: auto !important;
	max-width: none;
	float: none;
	visibility: visible !important;
	opacity: 1 !important;
}

.speakers-sections .info-box {
	flex: 1;
	padding: 16px 16px 20px;
	text-align: center;
}

.speakers-sections .info-box .name {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.28;
}

.speakers-sections .info-box .name a {
	color: var(--eis-navy);
	text-decoration: none;
	pointer-events: none;      /* these linked nowhere in the original either */
}

.speakers-sections .info-box .designation {
	display: block;
	color: var(--eis-muted);
	font-size: 13.5px;
	line-height: 1.55;
}

/* the first line of the designation is the role — lift it */
.speakers-sections .info-box .designation { position: relative; }

/* --- honouring excellence: same cards, warmer ground --------------------- */

.speakers-sections:nth-of-type(even) { background: var(--eis-paper-2); }

/* --- discussion points --------------------------------------------------- */

.news-section .sec-title.our h2 { margin-bottom: 8px; }

.news-section ul,
.key-focus ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-section ul > li,
.key-focus ul > li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 20px 22px;
	border: 1px solid var(--eis-line);
	border-left: 4px solid var(--eis-gold);
	border-radius: 12px;
	background: #fff;
	color: var(--eis-ink);
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.55;
	transition: transform .18s ease, box-shadow .18s ease;
}

.news-section ul > li:hover,
.key-focus ul > li:hover {
	transform: translateY(-3px);
	box-shadow: var(--eis-shadow);
}

/* --- counters ------------------------------------------------------------ */

.fun-fact-section {
	background: linear-gradient(135deg, var(--eis-navy) 0%, var(--eis-navy-2) 55%, #2a1a5e 100%);
	color: #fff;
}

.fun-fact-section .sec-title h2,
.fun-fact-section h2,
.fun-fact-section h3 { color: #fff; }

.fun-fact-section .count-box {
	padding: 30px 20px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: var(--eis-r);
	background: rgba(255, 255, 255, .05);
	text-align: center;
	transition: transform .2s ease, background .2s ease;
}

.fun-fact-section .count-box:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, .1);
}

.fun-fact-section .count-box i,
.fun-fact-section .count-box .fa {
	display: block;
	margin-bottom: 14px;
	color: var(--eis-gold);
	font-size: 30px;
}

.fun-fact-section .count-text,
.fun-fact-section .count-box .count-text {
	display: block;
	color: #fff;
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.03em;
}

.fun-fact-section .counter-title {
	display: block;
	margin-top: 10px;
	color: rgba(255, 255, 255, .74);
	font-size: 14px;
	font-weight: 600;
}

/* --- why must attend ----------------------------------------------------- */

/* This section carries `must-attend.jpg` as a background image where the archive
   still had it, and `background-image: none` where it did not — so the treatment
   has to hold up both ways. The scrim doubles as the whole background when the
   photograph is absent, which is why it is a full gradient rather than a flat
   wash, with a dot grid over it so an image-less band still has texture. */
.call-to-action-two {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	isolation: isolate;
}

.call-to-action-two::before {
	content: "";
	position: absolute;
	inset: 0;
	/* the theme's own :before is a 55%-wide panel pinned to the right. `inset`
	   sets all four offsets but loses to that `width`, and left+right+width is
	   over-constrained, so `right` was dropped and the scrim painted across only
	   the left 55% of the band — reset both box dimensions explicitly. */
	width: auto;
	height: auto;
	z-index: -2;
	background:
		radial-gradient(90% 120% at 8% 0%, rgba(58, 42, 130, .95) 0%, transparent 58%),
		radial-gradient(70% 110% at 96% 12%, rgba(14, 74, 96, .85) 0%, transparent 55%),
		linear-gradient(135deg, rgba(7, 16, 51, .95) 0%, rgba(12, 22, 68, .92) 50%, rgba(20, 12, 60, .9) 100%);
}

.call-to-action-two::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
	background-size: 26px 26px;
	mask-image: linear-gradient(to bottom, #000, transparent 85%);
	-webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.call-to-action-two .sec-title h2 { color: #fff; }

.call-to-action-two .sec-title .sub-title {
	background: rgba(245, 165, 36, .2);
	color: #ffd28a;
}

.call-to-action-two .sec-title .divider { margin-inline: auto; }

/* the four points — `.wrap-ico` is the card, not an icon box */
.call-to-action-two .row:last-child {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
	gap: 20px;
}

.call-to-action-two .col-sm-3 {
	width: auto;
	max-width: none;
	flex: initial;
	padding: 0;
	margin: 0;
}

.call-to-action-two .wrap-ico {
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 100%;
	min-height: 200px;
	margin: 0;	/* responsive.css re-adds a 17px bottom margin under 767px */
	padding: 26px 24px 28px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--eis-r);
	/* lit from the top edge rather than a flat wash, so the card reads as glass
	   over the gradient instead of as a grey rectangle on it */
	background: linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, .04) 100%);
	backdrop-filter: blur(6px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .12) inset;
	counter-increment: eis-why;
	transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.call-to-action-two .row:last-child { counter-reset: eis-why; }

/* a large outlined numeral, set behind the copy rather than above it — it
   orders the four points without competing with them for attention */
.call-to-action-two .wrap-ico::before {
	content: counter(eis-why, decimal-leading-zero);
	position: absolute;
	top: -14px;
	right: 10px;
	z-index: 0;
	color: transparent;
	font-size: 92px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, .22);
	transition: -webkit-text-stroke-color .22s ease, transform .22s ease;
	pointer-events: none;
}

/* gold rule that grows on hover, anchoring the card to the palette */
.call-to-action-two .wrap-ico::after {
	content: "";
	position: absolute;
	left: 24px;
	top: 26px;
	width: 34px;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--eis-gold), var(--eis-accent));
	transition: width .25s ease;
}

.call-to-action-two .wrap-ico:hover {
	transform: translateY(-5px);
	background: linear-gradient(180deg, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, .07) 100%);
	border-color: rgba(245, 165, 36, .55);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .18) inset, 0 14px 30px rgba(3, 8, 30, .35);
}

.call-to-action-two .wrap-ico:hover::before { -webkit-text-stroke-color: rgba(245, 165, 36, .55); }
.call-to-action-two .wrap-ico:hover::after { width: 62px; }

/* the theme pins this h3 to a fixed 159px, centres it and draws a border round
   it — that is the second, offset box inside each card, and the reason the four
   headings sat at four different heights. Reset the box; keep only the type. */
.call-to-action-two .wrap-ico h3 {
	position: relative;
	z-index: 1;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	text-align: left;
	color: #fff;
	font-size: clamp(16px, 1.5vw, 18px);
	font-weight: 700;
	line-height: 1.4;
	text-wrap: balance;
}

@media (max-width: 575px) {
	.call-to-action-two .wrap-ico { min-height: 0; padding: 22px 20px 24px; }
	.call-to-action-two .wrap-ico::before { font-size: 68px; }
	.call-to-action-two .wrap-ico::after { left: 20px; top: 22px; }
}

/* --- discussion points: image cards -------------------------------------- */

/* This edition illustrates each discussion point, where Chandigarh listed them
   as plain text. `.wrp-should` is the card. */
.wrp-should {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
	border-radius: var(--eis-r);
	background: var(--eis-navy);
	box-shadow: var(--eis-shadow);
	isolation: isolate;
	transition: transform .22s ease, box-shadow .22s ease;
}

.wrp-should:hover { transform: translateY(-5px); box-shadow: var(--eis-shadow-lg); }

/* Each of these is a 740x493 photograph — 3:2. Forcing 16:10 cropped a slice
   off every one of them for no reason. */
.wrp-should img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform .5s ease, opacity .3s ease;
	opacity: .92;
}

.wrp-should:hover img { transform: scale(1.06); opacity: .8; }

.wrp-should::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(7, 16, 51, .95) 0%, rgba(7, 16, 51, .72) 34%,
	                            rgba(7, 16, 51, .12) 68%, transparent 100%);
	pointer-events: none;
}

.wrp-should h3 {
	position: absolute;
	inset: auto 0 0;
	z-index: 1;
	margin: 0;
	padding: 22px 22px 24px;
	color: #fff;
	font-size: clamp(16px, 1.5vw, 18px);
	font-weight: 700;
	line-height: 1.35;
	text-wrap: balance;
}

/* gold rule above the caption, growing on hover */
.wrp-should h3::before {
	content: "";
	display: block;
	width: 30px;
	height: 3px;
	margin-bottom: 12px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--eis-gold), var(--eis-accent));
	transition: width .25s ease;
}

.wrp-should:hover h3::before { width: 58px; }

/* Flex, not an auto-fit grid. There are five cards: `auto-fit` fits four across
   and then stretches the fifth to the full width of its own row, which is what
   made the boxes look wrong. Three-up with the remainder centred reads as
   deliberate at every width. */
.news-section .row.sp-cs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
	margin: 0;
}

.news-section .row.sp-cs > [class*="col-"] {
	flex: 0 1 calc((100% - 44px) / 3);
	min-width: 250px;
	max-width: 400px;
	width: auto;
	margin: 0;
	padding: 0;
}

@media (max-width: 900px) {
	.news-section .row.sp-cs > [class*="col-"] { flex-basis: calc((100% - 22px) / 2); }
}

@media (max-width: 575px) {
	.news-section .row.sp-cs > [class*="col-"] { flex-basis: 100%; max-width: none; }
}

/* --- counters: this theme wraps them one level deeper -------------------- */

.fun-fact-section .fact-counter .row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
	gap: 18px;
}

.fun-fact-section .counter-column {
	width: auto;
	max-width: none;
	flex: initial;
	margin: 0;
	padding: 0;
}

.fun-fact-section .inner-box1 {
	height: 100%;
	padding: 28px 18px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: var(--eis-r);
	background: rgba(255, 255, 255, .05);
	text-align: center;
	transition: transform .2s ease, background .2s ease;
}

.fun-fact-section .inner-box1:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, .1);
}

.fun-fact-section .inner-box1 .count-box {
	padding: 0;
	border: 0;
	background: none;
}

.fun-fact-section .count-box i {
	display: block;
	margin-bottom: 12px;
	color: var(--eis-gold);
	font-size: 28px;
}

/* --- become a sponsor ---------------------------------------------------- */

.sponser-logo {
	background: linear-gradient(135deg, #12194a 0%, #241a5c 100%);
	color: #fff;
	text-align: center;
}

.sponser-logo .sec-title h2,
.sponser-logo h2,
.sponser-logo h3 { color: #fff; }

.sponser-logo p {
	max-width: 64ch;
	margin-inline: auto;
	color: rgba(255, 255, 255, .78);
	font-size: 16px;
	line-height: 1.75;
}

.sponser-logo .divider { margin-inline: auto; background: var(--eis-gold); }

/* this edition writes the heading as "Become<br><span>a Sponsor</span>" inside
   .wrap-sponser rather than using the shared .sec-title block */
.sponser-logo .wrap-sponser { text-align: center; }

.sponser-logo .wrap-sponser h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(27px, 3.4vw, 44px);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -.02em;
}

.sponser-logo .wrap-sponser h2 span { color: var(--eis-gold); }

/* `.rainbow` is the CTA; its own styling lived in a lost stylesheet */
.sponser-logo .rainbow,
a.rainbow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	padding: 14px 30px;
	border-radius: 999px;
	background: linear-gradient(100deg, var(--eis-gold), var(--eis-accent));
	color: #2a1b00;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 10px 26px -12px rgba(255, 91, 46, .8);
	transition: transform .18s ease, filter .18s ease;
}

.sponser-logo .rainbow:hover,
a.rainbow:hover { transform: translateY(-2px); filter: brightness(1.05); color: #2a1b00; }

/* --- magazines: same heading shape --------------------------------------- */

.our-magzines .wrap-sponser h2 {
	margin: 0 0 18px;
	color: var(--eis-navy);
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 800;
	line-height: 1.15;
}

.our-magzines .wrap-sponser h2 span { color: var(--eis-accent); }

/* --- glimpses gallery ---------------------------------------------------- */

.gallery-section .row { --bs-gutter-y: 24px; }

.gallery-section .image-box,
.gallery-section .image-box .image {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--eis-r);
	background: #eef1f8;
}

.gallery-section .image-box .image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .5s ease;
}

.gallery-section .image-box:hover .image img { transform: scale(1.06); }

.gallery-section .overlay-box {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(0deg, rgba(7, 16, 51, .72), rgba(7, 16, 51, .12));
	color: #fff;
	font-weight: 700;
	opacity: 0;
	transition: opacity .25s ease;
}

.gallery-section .image-box:hover .overlay-box { opacity: 1; }

/* --- magazines ----------------------------------------------------------- */

.our-magzines img {
	border-radius: 12px;
	box-shadow: var(--eis-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
}

.our-magzines img:hover { transform: translateY(-6px); box-shadow: var(--eis-shadow-lg); }

/* --- venue --------------------------------------------------------------- */

.venue-section {
	padding: clamp(56px, 7vw, 100px) 0;
	background: var(--eis-paper-2);
}

.venue-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: 28px;
	align-items: stretch;
}

@media (max-width: 900px) { .venue-grid { grid-template-columns: minmax(0, 1fr); } }

.venue-map {
	position: relative;
	overflow: hidden;
	min-height: 340px;
	border: 1px solid var(--eis-line);
	border-radius: var(--eis-r);
	background: #eef2fa;
	box-shadow: var(--eis-shadow);
}

.venue-map__facade {
	position: absolute;
	inset: 0;
	display: block;
	text-decoration: none;
}

.venue-map__art {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.venue-map__cue {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 20px;
	border-radius: 999px;
	background: #fff;
	color: var(--eis-navy);
	font-size: 14.5px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 8px 22px -8px rgba(10, 22, 60, .45);
	transition: transform .18s ease, box-shadow .18s ease;
}

.venue-map__facade:hover .venue-map__cue {
	transform: translateX(-50%) translateY(-3px);
	box-shadow: 0 14px 30px -10px rgba(10, 22, 60, .55);
}

.venue-map__pin {
	width: 15px;
	height: 15px;
	background-color: var(--eis-accent);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.1 7 13 7 13s7-7.9 7-13a7 7 0 0 0-7-7zm0 9.6A2.6 2.6 0 1 1 12 6.4a2.6 2.6 0 0 1 0 5.2z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.1 7 13 7 13s7-7.9 7-13a7 7 0 0 0-7-7zm0 9.6A2.6 2.6 0 1 1 12 6.4a2.6 2.6 0 0 1 0 5.2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* the live embed, once venue-map.js has confirmed it actually loaded */
.venue-map__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	opacity: 0;
	transition: opacity .35s ease;
}

.venue-map.has-embed .venue-map__frame { opacity: 1; }
.venue-map.has-embed .venue-map__facade { display: none; }

.venue-card {
	display: flex;
	flex-direction: column;
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid var(--eis-line);
	border-radius: var(--eis-r);
	background: #fff;
	box-shadow: var(--eis-shadow);
}

.venue-card__name {
	margin: 0 0 10px;
	color: var(--eis-navy);
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 800;
	line-height: 1.2;
}

.venue-card__addr {
	margin: 0 0 22px;
	color: var(--eis-muted);
	font-size: 16px;
	font-style: normal;
	line-height: 1.7;
}

.venue-facts {
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--eis-line);
}

.venue-facts li {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	justify-content: space-between;
	align-items: baseline;
	padding: 12px 0;
	border-bottom: 1px solid var(--eis-line);
}

.venue-facts__k {
	color: var(--eis-muted);
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.venue-facts__v {
	color: var(--eis-ink);
	font-size: 15.5px;
	font-weight: 700;
	text-align: right;
	word-break: break-word;
}

.venue-facts__v a { color: var(--eis-ink); text-decoration: none; }
.venue-facts__v a:hover { color: var(--eis-accent); text-decoration: underline; }

.venue-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	align-items: center;
	margin-top: auto;
}

.venue-link {
	color: var(--eis-navy);
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid rgba(245, 165, 36, .55);
	padding-bottom: 2px;
}

.venue-link:hover { color: var(--eis-accent); border-color: currentColor; }

/* ================================================================ buttons */

.theme-btn,
.btn-style-one {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(100deg, var(--eis-gold), var(--eis-accent));
	color: #2a1b00;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 10px 26px -12px rgba(255, 91, 46, .8);
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.theme-btn:hover,
.btn-style-one:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow: 0 16px 34px -14px rgba(255, 91, 46, .9);
	color: #2a1b00;
}

/* ================================================================ footer */

.main-footer {
	position: relative;
	background: var(--eis-navy);
	color: rgba(255, 255, 255, .74);
	padding-top: clamp(48px, 6vw, 76px);
}

.main-footer::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, var(--eis-gold), var(--eis-accent), var(--eis-gold));
}

.main-footer a { color: rgba(255, 255, 255, .88); text-decoration: none; }
.main-footer a:hover { color: var(--eis-gold); }

.main-footer .footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
	padding-bottom: 40px;
	text-align: center;
}

.main-footer .footer-logo { margin: 0; }

.main-footer .footer-logo img {
	max-height: 132px;
	width: auto;
}

@media (max-width: 575px) {
	.main-footer .footer-logo img { max-height: 96px; }
}

/* The three footer items are `<i> value <strong>label</strong>` — the label
   trails the value in the source, which reads backwards. Flip them with flex
   order so each reads as a captioned card without touching the markup. */
.main-footer .contact-list-one {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
	gap: 16px;
	width: 100%;
	max-width: 900px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-footer .contact-list-one li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 22px 18px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--eis-r);
	background: rgba(255, 255, 255, .04);
	color: #fff;
	font-size: 15.5px;
	line-height: 1.55;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.main-footer .contact-list-one li:hover {
	background: rgba(255, 255, 255, .07);
	border-color: rgba(245, 165, 36, .4);
	transform: translateY(-3px);
}

.main-footer .contact-list-one i {
	order: -2;
	margin-bottom: 6px;
	color: var(--eis-gold);
	font-size: 22px;
}

.main-footer .contact-list-one strong {
	order: -1;
	color: rgba(255, 255, 255, .55);
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.main-footer .contact-list-one a { word-break: break-word; }

.social-icon-two {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-icon-two a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font-size: 15px;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.social-icon-two a:hover {
	background: var(--eis-gold);
	border-color: var(--eis-gold);
	color: #2a1b00;
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 20px 0;
}

.copyright-text {
	margin: 0;
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
}

/* back-to-top */
.scroll-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 800;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--eis-gold);
	color: #2a1b00;
	font-size: 18px;
	cursor: pointer;
	box-shadow: var(--eis-shadow);
	transition: transform .18s ease, filter .18s ease;
}

.scroll-to-top:hover { transform: translateY(-3px); filter: brightness(1.06); }

/* ================================================================ print */

@media print {
	.header-top, .sticky-header, .eis-burger, .scroll-to-top,
	.mobile-menu, .menu-backdrop { display: none !important; }
	.eis-hero { min-height: 0; padding: 24px 0; background: #fff; }
	.eis-hero__bg { display: none; }
	.eis-hero__in, .eis-hero__title, .eis-hero__meta { color: #000; }
	.eis-hero__title span { -webkit-text-fill-color: #000; color: #000; }
	.fun-fact-section, .sponser-logo, .main-footer { background: #fff !important; color: #000; }
	.fun-fact-section *, .sponser-logo *, .main-footer * { color: #000 !important; }
	.speakers-sections .inner-box, .news-section ul > li { break-inside: avoid; box-shadow: none; }
	section { padding: 16px 0 !important; }
}
