/* ITECH Symposium Page 4.0 — isolated from the active WordPress theme. */
:root {
  color-scheme: dark;
}

html.itech-symposium-document,
html.itech-symposium-document body,
body.itech-symposium-standalone {
  width: 100%;
  max-width: none;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: #031326;
  overflow-x: hidden;
}

body.itech-symposium-standalone {
  display: block;
  position: relative;
}

.itech-page {
  --itech-bg: #031326;
  --itech-panel: #0b2036;
  --itech-text: #f5f9ff;
  --itech-muted: #b7c5d8;
  --itech-cyan: #00e7ff;
  --itech-purple: #9b5cff;
  --itech-lime: #d9ff00;
  --itech-border: rgba(0, 231, 255, .23);
  --itech-border: color-mix(in srgb, var(--itech-cyan) 23%, transparent);
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: visible;
  background:
    radial-gradient(circle at 77% 2%, rgba(23, 82, 185, .36), transparent 23%),
    radial-gradient(circle at 18% 44%, rgba(0, 231, 255, .035), transparent 26%),
    var(--itech-bg);
  color: var(--itech-text) !important;
  font-family: Inter, Urbanist, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
}

.itech-page *,
.itech-page *::before,
.itech-page *::after { box-sizing: border-box; }
.itech-page img { max-width: 100%; height: auto; }
.itech-page a { text-decoration: none; }
.itech-page button,
.itech-page input,
.itech-page select,
.itech-page textarea { font: inherit; }
.itech-page .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; }

.itech-page h1,
.itech-page h2,
.itech-page h3,
.itech-page h4,
.itech-page p,
.itech-page span,
.itech-page strong,
.itech-page small,
.itech-page b { font-family: inherit !important; }

.itech-page h1,
.itech-page h2,
.itech-page h3,
.itech-page h4 {
  color: var(--itech-text) !important;
  font-weight: 800 !important;
  letter-spacing: normal !important;
  text-transform: none;
}

.itech-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header / menu */
.itech-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 76px;
  border-bottom: 1px solid rgba(112, 181, 255, .18);
  background: rgba(2, 14, 31, .91);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.itech-site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
}
.itech-site-brand { display: inline-flex; align-items: center; min-width: 0; }
.itech-site-brand img { display: block; width: 238px; max-height: 52px; object-fit: contain; object-position: left center; }
.itech-site-nav { justify-self: center; }
.itech-site-nav ul { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 34px); margin: 0 !important; padding: 0 !important; list-style: none !important; }
.itech-site-nav li { position: relative; margin: 0 !important; padding: 0 !important; }
.itech-site-nav a {
  display: block;
  padding: 27px 0 23px;
  color: #edf6ff !important;
  font-size: .77rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color .2s ease;
}
.itech-site-nav a:hover { color: var(--itech-cyan) !important; }
.itech-site-nav li.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  background: var(--itech-cyan);
  box-shadow: 0 0 12px color-mix(in srgb, var(--itech-cyan) 75%, transparent);
}
.itech-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--itech-border); border-radius: 8px; background: transparent; padding: 9px; cursor: pointer; }
.itech-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--itech-text); transition: transform .2s ease, opacity .2s ease; }

/* Buttons */
.itech-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--itech-cyan);
  border-radius: 7px;
  background: rgba(3, 19, 38, .36);
  color: var(--itech-text) !important;
  font-size: .84rem;
  font-weight: 850 !important;
  line-height: 1;
  text-align: center;
  text-transform: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.itech-button:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(0, 231, 255, .2); color: var(--itech-text) !important; }
.itech-button.primary { background: var(--itech-lime); border-color: var(--itech-lime); color: #07111f !important; box-shadow: 0 0 20px color-mix(in srgb, var(--itech-lime) 22%, transparent); }
.itech-button.primary:hover { color: #07111f !important; box-shadow: 0 0 30px color-mix(in srgb, var(--itech-lime) 38%, transparent); }
.itech-button.header-cta { min-height: 38px; padding-inline: 21px; border-color: var(--itech-lime); color: var(--itech-lime) !important; font-size: .74rem; }
.itech-button.small { min-height: 34px; padding-inline: 17px; font-size: .69rem; text-transform: uppercase; letter-spacing: .02em; }
.itech-button.blue { border-color: #3e70ff; color: #b6c9ff !important; background: rgba(39, 75, 181, .15); }
.itech-button.purple { border-color: var(--itech-purple); color: #d7c2ff !important; background: rgba(155, 92, 255, .12); }
.itech-button.lime { border-color: var(--itech-lime); color: var(--itech-lime) !important; }
.itech-button.wide { min-width: 238px; }
.itech-button.is-disabled { opacity: .82; cursor: default; }
.itech-button__icon { display: inline-flex; }
.itech-button__icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.itech-actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; }

/* Hero */
.itech-hero { position: relative; min-height: 565px; padding: 77px 0 72px; border-bottom: 1px solid rgba(94, 169, 255, .16); isolation: isolate; }
.itech-hero__globe { position: absolute; z-index: -1; right: max(calc((100vw - 1320px) / 2), -45px); top: -17px; width: min(58vw, 720px); height: 450px; background: url("../images/globe-network.svg") center/contain no-repeat; opacity: .94; pointer-events: none; }
.itech-hero__grid { display: grid; grid-template-columns: minmax(0, 1.17fr) minmax(380px, .83fr); gap: 74px; align-items: center; }
.itech-hero__content { max-width: 680px; }
.itech-pill { display: inline-flex; border: 1px solid var(--itech-cyan); border-radius: 999px; padding: 6px 12px; color: var(--itech-cyan) !important; background: rgba(0, 231, 255, .045); font-size: .64rem; font-weight: 900; letter-spacing: .04em; }
.itech-hero h1 { margin: 22px 0 15px !important; font-size: clamp(2.5rem, 4.5vw, 4.55rem) !important; line-height: 1.04 !important; letter-spacing: -.035em !important; }
.itech-hero h1 span { display: inline; background: linear-gradient(90deg, var(--itech-cyan), #6aa8ff 51%, #d763ff); -webkit-background-clip: text; background-clip: text; color: transparent !important; }
.itech-lead { max-width: 620px; margin: 0 0 24px !important; color: #eef6ff !important; font-size: .88rem; line-height: 1.65; }
.itech-meta { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 25px; margin: 0 0 26px; }
.itech-meta > span { display: inline-flex; align-items: flex-start; gap: 9px; max-width: 360px; color: #f7fbff !important; font-size: .8rem; font-weight: 750; }
.itech-meta svg { flex: 0 0 20px; width: 20px; height: 20px; stroke: var(--itech-cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.itech-countdown { align-self: center; margin-top: 44px; border: 1px solid var(--itech-purple); border-radius: 14px; padding: 27px 25px 25px; background: rgba(3, 13, 31, .82); box-shadow: 0 0 34px rgba(155, 92, 255, .18), inset 0 0 38px rgba(8, 62, 130, .08); }
.itech-countdown > p { margin: 0 0 15px !important; color: var(--itech-cyan) !important; text-align: center; font-size: .69rem; font-weight: 900; letter-spacing: .02em; }
.itech-countdown__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.itech-countdown__grid > div { min-width: 0; border: 1px solid rgba(188, 211, 242, .2); border-radius: 8px; padding: 12px 4px 10px; text-align: center; background: rgba(9, 27, 50, .6); }
.itech-countdown strong { display: block; color: var(--itech-lime) !important; font-size: clamp(1.55rem, 2.2vw, 2rem); line-height: 1; }
.itech-countdown span { display: block; margin-top: 8px; color: #c6d6e9 !important; font-size: .5rem; font-weight: 800; }

/* Shared section styling */
.itech-section { padding: 58px 0; }
.itech-section-heading { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 0 auto 31px; text-align: center; }
.itech-section-heading > span { width: 55px; height: 1px; background: linear-gradient(90deg, transparent, var(--itech-cyan)); }
.itech-section-heading > span:last-child { transform: scaleX(-1); }
.itech-section-heading h2 { margin: 0 !important; color: var(--itech-text) !important; font-size: clamp(1.12rem, 1.9vw, 1.6rem) !important; line-height: 1.2 !important; text-transform: uppercase; letter-spacing: .025em !important; }
.itech-section-heading p { margin: 5px 0 0 !important; color: var(--itech-cyan) !important; font-size: .64rem; line-height: 1.25; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.itech-card,
.itech-speaker-card,
.itech-timeline__item { border: 1px solid rgba(58, 165, 217, .34); border-radius: 9px; background: linear-gradient(145deg, rgba(15, 38, 62, .94), rgba(8, 27, 47, .92)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025); }

/* Topics */
.itech-topics { padding-top: 52px; padding-bottom: 54px; }
.itech-topic-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.itech-topic { min-height: 246px; padding: 24px 21px 22px !important; display: grid; grid-template-rows: 58px minmax(44px, auto) 1fr; align-items: start; text-align: center; position: relative; overflow: hidden; }
.itech-topic::after { content: ""; position: absolute; left: 18%; right: 18%; bottom: -12px; height: 25px; background: var(--itech-cyan); filter: blur(18px); opacity: .16; }
.itech-topic--2::after { background: var(--itech-purple); }
.itech-topic--4::after { background: var(--itech-lime); }
.itech-topic__icon { display: grid; place-items: center; color: var(--itech-cyan); }
.itech-topic--2 .itech-topic__icon { color: var(--itech-purple); }
.itech-topic--4 .itech-topic__icon { color: var(--itech-lime); }
.itech-topic__icon svg { width: 43px; height: 43px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.itech-topic h3 { margin: 4px 0 9px !important; color: #f7fbff !important; font-size: .85rem !important; line-height: 1.25 !important; font-weight: 800 !important; }
.itech-topic p { margin: 0 !important; color: #c1d1e3 !important; font-size: .72rem; line-height: 1.55; }

/* Speakers */
.itech-speakers { padding-top: 30px; padding-bottom: 30px; }
.itech-speakers .itech-shell { position: relative; padding: 22px 26px 24px; border: 1px solid rgba(0, 231, 255, .34); border-radius: 10px; }
.itech-speakers--ambassadors .itech-shell { border-color: rgba(155, 92, 255, .42); }
.itech-speakers .itech-section-heading { margin-top: -42px; margin-bottom: 22px; }
.itech-speakers .itech-section-heading > div { padding-inline: 18px; background: var(--itech-bg); }
.itech-speakers--ambassadors .itech-section-heading p { color: #dd72ff !important; }
.itech-speakers--ambassadors .itech-section-heading > span { background: linear-gradient(90deg, transparent, var(--itech-purple)); }
.itech-speaker-grid { display: grid; align-items: stretch; gap: 20px; }
.itech-speaker-grid--authorities { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 805px; margin-inline: auto; }
.itech-speaker-grid--ambassadors { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.itech-speaker-card {
  height: 100%;
  min-height: 390px;
  padding: 18px 17px 15px !important;
  display: grid;
  grid-template-rows: 186px minmax(45px, auto) minmax(40px, auto) minmax(54px, 1fr) auto 31px;
  align-items: start;
  justify-items: center;
  text-align: center;
}
.itech-speaker-card.no-short-bio { grid-template-rows: 186px minmax(45px, auto) minmax(40px, auto) minmax(18px, 1fr) auto 31px; }
.itech-speaker-card__photo { grid-row: 1; width: 176px; height: 176px; aspect-ratio: 1 / 1; border: 2px solid var(--itech-cyan); border-radius: 50%; overflow: hidden; background: #192e44; align-self: center; }
.itech-speakers--ambassadors .itech-speaker-card__photo { border-color: var(--itech-purple); }
.itech-speaker-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; image-rendering: auto; backface-visibility: hidden; }
.itech-speaker-card__photo .itech-speaker-placeholder { width: 58%; height: 58%; margin: 21%; object-fit: contain; opacity: .38; }
.itech-speaker-card h3 { grid-row: 2; align-self: center; width: 100%; margin: 0 !important; padding: 0 !important; color: #f6faff !important; font-size: .92rem !important; line-height: 1.25 !important; font-weight: 800 !important; text-align: center !important; }
.itech-role { grid-row: 3; align-self: center; margin: 0 !important; color: var(--itech-cyan) !important; font-size: .73rem; line-height: 1.35; font-weight: 800; text-align: center; }
.itech-speakers--ambassadors .itech-role { color: #e18aff !important; }
.itech-short-bio { grid-row: 4; align-self: center; margin: 6px 0 10px !important; color: #d2dfed !important; font-size: .72rem; line-height: 1.5; text-align: center !important; }
.itech-bio-toggle { grid-row: 5; align-self: end; width: 100%; min-height: 37px; margin: 0; padding: 8px 12px; display: flex; align-items: center; justify-content: center; position: relative; border: 1px solid rgba(0, 231, 255, .42); border-radius: 6px; background: rgba(4, 20, 39, .55); color: #fff !important; cursor: pointer; font-size: .75rem; font-weight: 850; }
.itech-bio-toggle span { position: absolute; right: 12px; color: var(--itech-lime) !important; font-size: .9rem; }
.itech-linkedin { grid-row: 6; align-self: end; display: grid !important; place-items: center; width: 28px; height: 28px; margin-top: 4px; border: 0; color: #d8f5ff !important; font-size: .77rem; font-weight: 900; }
.itech-linkedin--empty { opacity: .28; }

/* Timeline */
.itech-program { padding-top: 52px; padding-bottom: 43px; }
.itech-timeline { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; position: relative; }
.itech-timeline::after { content: ""; position: absolute; left: 2.5%; right: 2.5%; bottom: -1px; height: 1px; background: linear-gradient(90deg, var(--itech-cyan), var(--itech-purple), var(--itech-cyan), var(--itech-lime), #5a75ff); }
.itech-timeline__item { min-height: 178px; padding: 19px 14px 23px !important; display: grid; grid-template-rows: 45px minmax(49px, auto) 1fr; align-items: start; text-align: center; border-radius: 7px; position: relative; }
.itech-timeline__item + .itech-timeline__item { margin-left: 9px; }
.itech-timeline__item::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 9px; height: 9px; border-radius: 50%; transform: translateX(-50%); background: var(--itech-cyan); box-shadow: 0 0 10px var(--itech-cyan); }
.itech-timeline__item--2::after { background: var(--itech-purple); box-shadow: 0 0 10px var(--itech-purple); }
.itech-timeline__item--4::after { background: var(--itech-lime); box-shadow: 0 0 10px var(--itech-lime); }
.itech-timeline__item--5::after { background: #5b79ff; box-shadow: 0 0 10px #5b79ff; }
.itech-timeline__icon { display: grid; place-items: center; color: var(--itech-cyan); }
.itech-timeline__item--2 .itech-timeline__icon { color: var(--itech-purple); }
.itech-timeline__item--4 .itech-timeline__icon { color: var(--itech-lime); }
.itech-timeline__item--5 .itech-timeline__icon { color: #778bff; }
.itech-timeline__icon svg { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.itech-timeline b { display: block; margin: 2px 0 7px; color: var(--itech-cyan) !important; font-size: .68rem; line-height: 1.3; text-transform: uppercase; }
.itech-timeline__item--2 b { color: #d890ff !important; }
.itech-timeline__item--4 b { color: var(--itech-lime) !important; }
.itech-timeline__item--5 b { color: #8998ff !important; }
.itech-timeline span { color: #d1dce8 !important; font-size: .68rem; line-height: 1.42; }

/* Guides */
.itech-authors { padding-top: 47px; padding-bottom: 36px; }
.itech-guides { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; align-items: stretch; }
.itech-guide-card { min-height: 165px; padding: 20px 22px !important; display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 14px; align-items: start; }
.itech-guide-card__icon { display: grid; place-items: start center; padding-top: 2px; color: #65aaff; }
.itech-guide-card__icon--lime { color: var(--itech-lime); }
.itech-guide-card__icon svg { width: 42px; height: 42px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.itech-guide-card__body { min-width: 0; height: 100%; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.itech-guide-card h3 { width: 100%; margin: 0 0 6px !important; color: #fff !important; font-size: .94rem !important; line-height: 1.25 !important; text-align: left !important; }
.itech-guide-card p { flex: 1; margin: 0 0 12px !important; color: #c8d5e3 !important; font-size: .7rem; line-height: 1.45; text-align: left !important; }
.itech-guide-card .itech-actions { margin-top: auto; }

/* CTA */
.itech-cta-section { padding-top: 28px; padding-bottom: 38px; }
.itech-cta { min-height: 128px; padding: 22px 28px; display: grid; grid-template-columns: 68px minmax(0, 1fr) auto; gap: 22px; align-items: center; border: 1px solid var(--itech-purple); border-left-color: var(--itech-cyan); border-radius: 10px; background: linear-gradient(90deg, rgba(0, 231, 255, .08), rgba(155, 92, 255, .08)); }
.itech-cta__icon { color: var(--itech-cyan); }
.itech-cta__icon svg { width: 58px; height: 58px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.itech-cta h2 { margin: 0 0 3px !important; color: #fff !important; font-size: 1.35rem !important; line-height: 1.2 !important; text-align: left !important; }
.itech-cta p { margin: 0 0 5px !important; color: #d1dceb !important; font-size: .78rem; line-height: 1.45; }
.itech-cta small { color: #b9c9d9 !important; font-size: .61rem; }
.itech-cta small a { color: var(--itech-lime) !important; }
.itech-cta__actions { width: 250px; flex-direction: column; align-items: stretch; }

/* Location */
.itech-location { padding-top: 36px; padding-bottom: 43px; }
.itech-location .itech-section-heading { margin-bottom: 18px; }
.itech-location__grid { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 16px; }
.itech-location-card { padding: 25px 23px !important; display: flex; flex-direction: column; align-items: flex-start; }
.itech-location-card__heading { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; }
.itech-location-card__heading svg { width: 39px; height: 39px; stroke: var(--itech-cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.itech-location-card h3 { margin: 0 !important; color: #fff !important; font-size: .83rem !important; line-height: 1.35 !important; text-align: left !important; }
.itech-location-card p { flex: 1; margin: 16px 0 18px !important; color: #c3d1e0 !important; font-size: .73rem; line-height: 1.55; }
.itech-map { min-height: 292px; border: 1px solid rgba(94, 169, 255, .35); border-radius: 10px; overflow: hidden; background: #e9eef3; }
.itech-map iframe { display: block; width: 100%; height: 100%; min-height: 292px; border: 0; }

/* Footer */
.itech-footer { padding: 31px 0 0; border-top: 1px solid rgba(92, 169, 255, .18); background: rgba(2, 15, 32, .86); }
.itech-footer__grid { display: grid; grid-template-columns: 1.35fr .72fr .85fr .92fr 1.08fr; gap: 34px; padding-bottom: 29px; }
.itech-footer__brand img { width: 225px; max-height: 58px; object-fit: contain; object-position: left center; }
.itech-socials { display: flex; gap: 10px; margin-top: 19px; }
.itech-socials a { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(129, 183, 230, .3); border-radius: 50%; color: #b8cfe3 !important; font-size: .72rem; font-weight: 800; }
.itech-footer h3 { margin: 0 0 11px !important; color: #79c6e6 !important; font-size: .59rem !important; letter-spacing: .06em !important; }
.itech-footer__grid > div:not(.itech-footer__brand) { display: flex; flex-direction: column; align-items: flex-start; }
.itech-footer__grid a,
.itech-footer__grid p { margin: 0 0 7px !important; color: #becddd !important; font-size: .64rem; line-height: 1.4; }
.itech-footer__legal { min-height: 45px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(92, 169, 255, .15); color: #8fa3b7 !important; font-size: .55rem; }
.itech-footer__legal span:last-child { display: flex; gap: 24px; }
.itech-footer__legal a { color: #8fa3b7 !important; }

/* Modal keeps speaker cards aligned while still allowing “Quién es” to be shown/hidden. */
.itech-modal { position: fixed; inset: 0; z-index: 99999; display: none; place-items: center; padding: 24px; }
.itech-modal.is-open { display: grid; }
.itech-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 7, 18, .78); backdrop-filter: blur(8px); }
.itech-modal__dialog { position: relative; z-index: 1; width: min(650px, 100%); max-height: min(760px, calc(100vh - 48px)); overflow: auto; padding: 34px 38px 36px; border: 1px solid var(--itech-purple); border-radius: 14px; background: linear-gradient(145deg, #102943, #061a31); box-shadow: 0 25px 90px rgba(0,0,0,.52), 0 0 35px rgba(155,92,255,.18); text-align: center; }
.itech-modal__close { position: absolute; right: 14px; top: 11px; width: 35px; height: 35px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 1.35rem; line-height: 1; }
.itech-modal__photo { width: 184px; height: 184px; margin: 0 auto 17px; border: 2px solid var(--itech-purple); border-radius: 50%; overflow: hidden; background: #18304a; }
.itech-modal__photo:empty { display: none; }
.itech-modal__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; image-rendering: auto; }
.itech-modal h2 { margin: 0 0 4px !important; color: #fff !important; font-size: 1.35rem !important; }
.itech-modal__role { margin: 0 0 22px !important; color: #e18aff !important; font-weight: 800; }
.itech-modal__content { color: #d3dfeb !important; font-size: .9rem; line-height: 1.7; text-align: left; }
.itech-modal__content p { color: #d3dfeb !important; }
html.itech-modal-open, body.itech-modal-open { overflow: hidden; }

@media (max-width: 1100px) {
  .itech-site-header__inner { grid-template-columns: 210px 1fr auto; gap: 18px; }
  .itech-site-brand img { width: 205px; }
  .itech-site-nav ul { gap: 17px; }
  .itech-hero__grid { grid-template-columns: 1fr 390px; gap: 38px; }
  .itech-speaker-card { grid-template-rows: 186px minmax(45px, auto) minmax(40px, auto) minmax(64px, 1fr) auto 31px; }
  .itech-speaker-card.no-short-bio { grid-template-rows: 186px minmax(45px, auto) minmax(40px, auto) minmax(18px, 1fr) auto 31px; }
}

@media (max-width: 930px) {
  .itech-site-header__inner { grid-template-columns: 1fr auto auto; }
  .itech-menu-toggle { display: block; grid-column: 2; grid-row: 1; }
  .itech-site-header > .itech-shell > .itech-button.header-cta { grid-column: 3; grid-row: 1; }
  .itech-site-nav { display: none; grid-column: 1 / -1; width: 100%; padding: 0 0 16px; }
  .itech-site-header.is-menu-open .itech-site-nav { display: block; }
  .itech-site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .itech-site-nav a { padding: 10px 8px; font-size: .83rem; }
  .itech-site-nav li.is-active::after { left: 8px; right: auto; bottom: 5px; width: 35px; }
  .itech-hero__grid { grid-template-columns: 1fr; }
  .itech-hero__content { max-width: 700px; }
  .itech-countdown { width: min(520px, 100%); margin-top: 0; }
  .itech-hero__globe { right: -120px; width: 760px; opacity: .48; }
  .itech-topic-grid { grid-template-columns: repeat(2, 1fr); }
  .itech-speaker-grid--ambassadors { grid-template-columns: repeat(2, 1fr); }
  .itech-timeline { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .itech-timeline::after { display: none; }
  .itech-timeline__item + .itech-timeline__item { margin-left: 0; }
  .itech-timeline__item::after { display: none; }
  .itech-timeline__item:last-child { grid-column: 1 / -1; }
  .itech-guides { grid-template-columns: 1fr; }
  .itech-guide-card { min-height: 150px; }
  .itech-cta { grid-template-columns: 58px 1fr; }
  .itech-cta__actions { grid-column: 2; width: 100%; flex-direction: row; }
  .itech-location__grid { grid-template-columns: 1fr; }
  .itech-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .itech-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 660px) {
  .itech-shell { width: min(100% - 28px, 1180px); }
  .itech-site-header { min-height: 67px; }
  .itech-site-header__inner { min-height: 67px; grid-template-columns: 1fr auto; }
  .itech-site-brand img { width: 190px; }
  .itech-site-header > .itech-shell > .itech-button.header-cta { display: none !important; }
  .itech-menu-toggle { grid-column: 2; }
  .itech-hero { padding: 58px 0 53px; min-height: 0; }
  .itech-hero h1 { font-size: clamp(2.15rem, 12vw, 3.4rem) !important; }
  .itech-meta { flex-direction: column; gap: 12px; }
  .itech-countdown { padding: 20px 14px; }
  .itech-countdown__grid { grid-template-columns: repeat(2, 1fr); }
  .itech-section { padding: 46px 0; }
  .itech-topic-grid,
  .itech-speaker-grid--authorities,
  .itech-speaker-grid--ambassadors,
  .itech-timeline { grid-template-columns: 1fr; }
  .itech-speakers .itech-shell { padding: 20px 14px 18px; }
  .itech-speaker-card { min-height: 360px; }
  .itech-guide-card { grid-template-columns: 44px 1fr; padding: 18px 16px !important; }
  .itech-guide-card__icon svg { width: 35px; height: 35px; }
  .itech-cta { grid-template-columns: 1fr; padding: 24px 20px; text-align: center; }
  .itech-cta__icon { display: none; }
  .itech-cta h2 { text-align: center !important; }
  .itech-cta__actions { grid-column: auto; flex-direction: column; width: 100%; }
  .itech-button.wide { min-width: 0; width: 100%; }
  .itech-footer__grid { grid-template-columns: 1fr; gap: 20px; }
  .itech-footer__brand { grid-column: auto; }
  .itech-footer__legal { padding: 15px 0; flex-direction: column; gap: 10px; align-items: flex-start; }
  .itech-footer__legal span:last-child { flex-direction: column; gap: 6px; }
  .itech-modal__dialog { padding: 31px 22px 28px; }
}

/* Configurable layouts. */
.itech-hero.has-custom-background {
  background-repeat: no-repeat;
  background-color: var(--itech-bg);
}

.itech-hero__grid--single {
  grid-template-columns: minmax(0, 760px);
}

.itech-location__grid--single {
  grid-template-columns: minmax(280px, 620px);
  justify-content: center;
}

.itech-footer__brand-text {
  max-width: 250px;
  margin-top: 12px !important;
}

/* A final containment layer protects the page from browser extensions and
   legacy global CSS without relying on a WordPress theme reset. */
body.itech-symposium-standalone > .itech-page {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  transform: none !important;
  zoom: 1 !important;
}
