/* Source: assets/css/src/00-tokens.css */
/* C01: Theme design values. Vendor variables and content-backed assets stay external. */
:root {
  --sif-navy: #1e2d72;
  --sif-deep-blue: #14245f;
  --sif-blue: #427be2;
  --sif-cyan: #9ae3ef;
  --sif-teal: #2a9696;
  --sif-white: #f7f7f7;
  --sif-text: #f7f7f7;
  --sif-muted-text: rgba(247,247,247,.92);
  --sif-divider: rgba(154,227,239,.48);
  --sif-control-border: rgba(154,227,239,.7);
  --sif-panel: rgba(20,36,95,.58);
  --sif-input-bg: rgba(30,45,114,.58);
  --sif-font: "PT Sans", sans-serif;
  --sif-body-size: 18px;
  --sif-heading-size: 48px;
  --sif-section-space: 5rem;
  --sif-page-space: 8rem;
  --sif-gutter: 6%;
  /* Related low-luminance surfaces keep text readable and adjoining sections calm. */
  --sif-surface-navy: #14245f;
  --sif-surface-blue: #1b3464;
  --sif-surface-teal: #1b455b;
  --sif-panel-navy: #192e66;
  --sif-panel-blue: #203e68;
  --sif-panel-teal: #245260;
  --sif-section-gradient: linear-gradient(110deg,var(--sif-surface-navy) 0%,var(--sif-surface-blue) 55%,var(--sif-surface-teal) 100%);
  --sif-page-gradient: var(--sif-section-gradient);
  --sif-hero-gradient: var(--sif-section-gradient);
  --sif-media-overlay: linear-gradient(110deg,rgba(20,36,95,.28),rgba(20,36,95,.46) 55%,rgba(20,36,95,.7));
  --sif-ink: #061326;
  --sif-visa-gradient: linear-gradient(115deg,#427be2 0%,#578fc9 52%,#70a5b8 100%);
  --sif-panel-gradient: linear-gradient(110deg,var(--sif-panel-navy) 0%,var(--sif-panel-blue) 55%,var(--sif-panel-teal) 100%);
  --sif-motion-fast: 160ms;
  --sif-motion-enter: 440ms;
  --sif-motion-ease: cubic-bezier(.2,.65,.3,1);
  --sif-header-height: 88px;
  --sif-cyan-button: linear-gradient(115deg,#237a86 0%,#285cab 100%);
  --sif-button-hover: linear-gradient(115deg,#1d6576 0%,#244f94 100%);
  --sif-orange-gradient: linear-gradient(135deg,#d97a4b 0%,#f0a36a 100%);
  --sif-text-gradient: linear-gradient(90deg,#9ae3ef 0%,#427be2 48%,#2a9696 100%);
  --sif-button-shadow: 0 10px 24px rgba(0,0,0,.18);
  --sif-panel-shadow: 0 16px 36px rgba(8,18,60,.22);
  --sif2026-color-why-attend-feature-line: #54c6d1;
  --sif2026-color-event-accordion-accent: #427BE2;
  --sif2026-palette-white-fff: #fff;
  --sif2026-palette-neutral-999: #999;
  --sif2026-palette-neutral-666: #666;
}

@media (max-width:1650px) {
  :root {
    --sif-body-size: 16px;
    --sif-heading-size: 40px;
  }

}

@media (max-width:1400px) {
  :root {
    --sif-body-size: 14px;
    --sif-heading-size: 34px;
    --sif-section-space: 3rem;
  }

}

@media (max-width:1199px) {
  :root {
    --sif-heading-size: 28px;
  }

}

@media (max-width:767px) {
  :root {
    --sif-heading-size: 24px;
  }

}

@media (max-width:480px) {
  :root {
    --sif-section-space: 1rem;
  }

}

:root {
  --sif-body-size: clamp(16px,1.1vw,18px);
  --sif-heading-size: clamp(26px,2.8vw,48px);
  --sif-section-space: clamp(40px,5vw,80px);
}

/* Source: assets/css/src/01-base.css */
/* C02: Document typography. Form widgets and actions are explicitly bridged elsewhere. */
html {
  background: var(--sif-navy);
}

body {
  font-family: var(--sif-font);
  font-size: var(--sif-body-size);
  font-weight: 400;
  color: var(--sif-text);
  background: var(--sif-page-gradient);
  background-attachment: fixed;
}

h1,h2,h3,h4,h5,h6 {
  color: var(--sif-text);
}

h1 {
  font-size: var(--sif-heading-size);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

h1 span {
  display: block;
  font-size: 36px;
  font-weight: 400;
  text-transform: none;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

h2 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
}

a {
  color: var(--sif-cyan);
}

a:hover,a:focus {
  color: var(--sif-white);
  text-decoration: none;
}

::selection {
  background: var(--sif-cyan);
  color: var(--sif-navy);
}

p,li,td,th,label {
  color: var(--sif-muted-text);
}

@media (max-width:1650px) {
  h1 span {
    font-size: 30px;
  }


  h2 {
    font-size: 30px;
  }


  h2 span {
    font-size: 20px;
  }

}

@media (max-width:1400px) {
  h1 span {
    font-size: 26px;
  }


  h2 {
    font-size: 26px;
  }


  h2 span {
    font-size: 13px;
  }

}

@media (max-width:1199px) {
  h1 span {
    font-size: 18px;
  }


  h2 {
    font-size: 24px;
  }


  h2 span {
    font-size: 16px;
    line-height: 1.3;
  }

}

@media (max-width:767px) {
  h1 span {
    font-size: 16px;
    line-height: 1.3;
  }


  h2 {
    font-size: 20px;
  }


  h2 span {
    font-size: 14px;
  }

}

/* Confirmed list helper shared by content and the visa card. */
.circlelist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.circlelist .list__item {
  font-size: 20px;
  color: #fff;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.circlelist .list__item::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  border: 1px solid var(--sif-blue);
  border-radius: 50%;
  top: 10px;
}

@media (max-width:1700px) {
  .circlelist .list__item {
    font-size: 18px;
  }

}

@media (max-width:1500px) {
  .circlelist .list__item {
    font-size: 16px;
    margin-bottom: 2rem;
  }

}

/* Intrinsic media and long content must fit their actual container. */
img,video {
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

:where(p,h1,h2,h3,h4,li,a,td,th) {
  overflow-wrap: break-word;
}

:where(a,button,input,select,textarea):focus-visible {
  outline: 2px solid var(--sif-cyan);
  outline-offset: 3px;
}

/* Source: assets/css/src/02-layout.css */
/* C03: Shared page frame and title rails. Bootstrap owns the grid. */
.section:not(.section__hero),.page__section,.top__supporters,.more__supporters,.exhibitors__section {
  background: var(--sif-section-gradient);
  color: var(--sif-text);
}

.section :where(p,li,h1,h2,h3,h4) {
  color: var(--sif-text);
}

.section :where(.heading span,.section__title span) {
  color: transparent;
  background: var(--sif-text-gradient);
  background-clip: text;
}

.section__content {
  padding: 8rem 0;
}

.section__content :where(img,p) {
  margin-bottom: 2.5rem;
}

.section__content .paddng-right {
  padding-right: 26%;
}

.sec-top-border::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--sif-cyan);
  z-index: 1;
}

.motif-leftbg,.motif-rightbg {
  position: relative;
  overflow: hidden;
}

.motif-rightbg::before {
  content: none;
}

/* These shared title rails are emitted by the healthy page templates. */
:where(.organized__by,.section__gallery,.section__speakers.page__section,.section__news-grid,.exhibit__content) .heading {
  position: relative;
  z-index: 9;
}

:where(.organized__by,.section__gallery,.section__speakers.page__section,.section__news-grid,.exhibit__content) .heading h1 {
  margin: 0;
  position: relative;
  z-index: 99;
  width: max-content;
  padding-right: 5rem;
  background: #fff;
}

:where(.organized__by,.section__speakers.page__section,.exhibit__content) .heading::after {
  content: "";
  position: absolute;
  left: 50px;
  right: 0;
  top: 25px;
  height: 1px;
  background: var(--sif-teal);
  z-index: -1;
}

@media (max-width:1500px) {
  .section__content .paddng-right {
    padding-right: 10%;
  }

}

@media (max-width:992px) {
  .section__content {
    padding: 1rem 0 0;
  }

}

@media (max-width:767px) {
  .container {
    max-width: 100%;
  }

}

@media (max-width:480px) {
  :where(.section__speakers.page__section,.section__news-grid) .heading h1 {
    width: auto;
    line-height: 1;
  }

}

@media (min-width:1200px) {
  .container {
    max-width: 100%;
    padding: 0 13.1%;
  }

}

@media (min-width:1400px) {
  .container {
    padding: 0 6%;
  }

}

@media (min-width:1500px) {
  .container {
    padding: 0 13.1%;
  }

}

/* C03: Consistent gutters without the inherited 1200/1400/1500 jumps. */
.container {
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: clamp(20px,5vw,96px);
}

.section__content {
  padding-block: var(--sif-section-space);
}

.section__content .paddng-right {
  padding-right: 0;
}

.section :where(.heading,.section__header) {
  min-width: 0;
  max-width: 100%;
}

:where(.organized__by,.section__gallery,.section__speakers.page__section,.section__news-grid,.exhibit__content) .heading h1 {
  width: fit-content;
  max-width: 100%;
  padding-right: 24px;
  background: var(--sif-deep-blue);
  line-height: 1.2;
}

.section .heading span {
  color: var(--sif-cyan);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.section :where(.badge) {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.4;
}

/* Bootstrap columns must be able to shrink around long content. */
.container .row > [class*="col-"] { min-width: 0; }


/* Source: assets/css/src/components/buttons.css */
/* C08: Explicit theme actions. Widget buttons opt in through integration rules. */
:where(.box-anchor,.hero__anchor,.menu__button) {
  --action-bg: var(--sif-cyan-button);
  --action-shadow: var(--sif-button-shadow);
}

.box-anchor,.hero__anchor,.menu__button {
  display: inline-block;
  cursor: pointer;
  padding: 1.15rem 2.5rem;
  height: 53px;
  border: 1px solid var(--sif-control-border);
  border-radius: 0;
  background: var(--action-bg);
  color: #fff;
  box-shadow: var(--action-shadow);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s,box-shadow .3s,opacity .3s;
}

.box-anchor:hover,.box-anchor:focus,.hero__anchor:hover,.hero__anchor:focus,.menu__button:hover,.menu__button:focus {
  --action-bg: var(--sif-button-hover);
  --action-shadow: 0 10px 24px rgba(154,227,239,.24);
  background: var(--action-bg);
  color: #fff;
  box-shadow: var(--action-shadow);
  outline: 0;
  text-decoration: none;
}

.box-anchor:disabled {
  opacity: .6;
}

.box-anchor :where(span,i),.menu__button :where(span,i) {
  color: inherit;
}

@media (max-width:1650px) {
  .box-anchor {
    height: 48px;
    padding: 1rem 2rem;
    font-size: 14px;
  }

}

@media (max-width:1400px) {
  .box-anchor {
    height: 30px;
    padding: .5rem 1rem;
    font-size: 12px;
  }

}

@media (max-width:1199px) {
  .box-anchor {
    height: auto;
    padding: .75rem 1.5rem;
  }

}

.box-anchor,.hero__anchor,.menu__button {
  min-height: 44px;
  height: auto;
  max-width: 100%;
  padding: 13px clamp(16px,2vw,32px);
  line-height: 1.3;
  white-space: normal;
}

:is(.box-anchor,.hero__anchor,.menu__button):focus-visible {
  outline: 2px solid var(--sif-cyan);
  outline-offset: 3px;
}

@media (max-width:1100px) {
  .box-anchor,.hero__anchor,.menu__button { font-size: 14px; }
}

/* Source: assets/css/src/components/header.css */
/* C05: Single-row branding; menus own the content breakpoint. */
.page__header {
  position: relative;
  z-index: 99;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px,2vw,40px);
  width: 100%;
  min-height: var(--sif-header-height);
  padding: 10px clamp(20px,3vw,64px);
  background: var(--sif-deep-blue);
  border-bottom: 1px solid rgba(154,227,239,.2);
}

.page__header a {
  color: var(--sif-white);
}

.page__header ul {
  list-style: none;
  margin: 0;
}

.page__header .brand-logo {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.brand-logo a {
  display: block;
}

.page__header .brand-logo img {
  display: block;
  width: clamp(190px,17vw,285px);
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

@media (max-width:1100px) {
  :root {
    --sif-header-height: 80px;
  }


  .page__header {
    min-height: var(--sif-header-height);
  }


  .page__header .brand-logo img {
    width: clamp(176px,28vw,240px);
    max-height: 58px;
  }

}

/* Source: assets/css/src/components/navigation.css */
/* C06/C07: Existing menu walkers and JS drawer states; content-driven menu sizing. */
.header__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 53%;
}

.menu__item {
  position: relative;
}

.menu__link {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.menu__top {
  display: flex;
  padding: 0;
}

.menu__top .menu__link {
  padding: 1.7rem 1.5rem;
  font-size: 14px;
}

.menu__top .menu__button {
  padding: .7rem 2rem;
  margin: 1rem 0;
}

.lang-switcher {
  margin: 1rem;
  padding-right: 6%;
}

.lang-switcher .modified-select {
  font-size: 12px;
}

.lang-switcher .select-selected {
  display: none;
}

.menu__primary {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0 8% 0 0;
  background: rgba(30,45,114,.58);
}

.menu__primary .menu__link {
  padding: 2rem 1.75rem;
}

.menu__primary .menu__button {
  padding: .7rem 2rem;
  margin: 1.4rem 0 0;
  font-weight: 700;
}

.menu__primary .menu__item::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--sif-blue);
  z-index: 1;
}

.menu__primary :is(.active,.current-menu-item)::before {
  content: "";
}

.menu__primary :is(.active,.current-menu-item) > a {
  color: var(--sif-cyan);
}

.menu__primary .submenu::before {
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.menu__primary .submenu:is(:hover,.current-menu-parent)::before {
  opacity: 1;
  visibility: visible;
}

.menu__primary .submenu > .menu__link::after {
  content: "";
  position: absolute;
  top: 45%;
  right: .75rem;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateY(-45%) rotate(45deg);
}

.menu__primary .submenu:hover > .menu__link {
  color: var(--sif-blue);
}

.menu__primary .submenu:hover > .menu__link::after {
  border-color: var(--sif-blue);
}

.menu__primary .submenu.current-menu-item > a {
  background: var(--sif-blue);
}

.submenu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  background: rgba(0,0,0,.5);
}

.submenu:hover > .submenu-wrapper {
  visibility: visible;
  opacity: 1;
}

.submenu__item {
  padding: 0;
  margin: 0;
}

.submenu__item .menu__link {
  color: #fff;
  padding: .75rem .5rem;
  font-size: 1rem;
  text-transform: none;
}

.submenu__item .menu__link:hover,.submenu__item .current-menu-item {
  background: var(--sif-blue);
}

.close-menu,.js-menu-open {
  display: none;
}

@media (max-width:1850px) {
  .header__menu {
    width: 60%;
  }

}

@media (max-width:1600px) {
  .menu__top .menu__link {
    padding: 1.7rem 1rem;
  }


  .lang-switcher .modified-select {
    min-width: 150px;
  }

}

@media (max-width:1500px) {
  .header__menu {
    width: 65%;
  }


  .menu__top .menu__link {
    font-size: 13px;
  }


  .menu__primary .menu__link {
    padding: 1.75rem 2rem;
  }


  .menu__primary .menu__button {
    padding: .75rem 1.5rem;
    margin: 1rem 0 0;
  }


  .submenu__item .menu__link {
    padding: .75rem;
  }


  .lang-switcher .modified-select {
    min-width: 110px;
  }

}

@media (max-width:1400px) {
  .submenu__item .menu__link {
    font-size: 14px;
  }

}

@media (max-width:1300px) {
  .menu__primary > .menu__item > .menu__link {
    padding: 1.25rem 1.75rem;
  }


  .menu__primary .menu__button {
    margin-top: .5rem;
  }

}

@media (max-width:1199px) {
  .header__menu {
    width: 70%;
  }


  .lang-switcher {
    margin: 1rem 3% 1rem 1rem;
    padding: 0;
  }


  .menu__top .menu__link {
    padding: 1.7rem .5rem;
    font-size: 12px;
  }


  .menu__primary {
    padding-right: 3%;
  }


  .menu__primary .menu__link {
    font-size: 12px;
  }


  .menu__primary .submenu > .menu__link {
    padding: 1.25rem 2rem 1.25rem 1.5rem;
  }


  .menu__primary .submenu > .menu__link::after {
    right: 12px;
    width: 6px;
    height: 6px;
  }


  .submenu__item .menu__link {
    padding: .5rem;
    font-size: 12px;
  }

}

@media (max-width:1100px) {
  .sticky-body {
    overflow: hidden;
  }


  .sticky-body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.83);
    z-index: 9;
  }


  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-110%);
    visibility: hidden;
    width: min(88vw,380px);
    max-width: 100vw;
    height: 100dvh;
    flex-flow: column;
    justify-content: flex-start;
    overflow-y: auto;
    transition: transform var(--sif-motion-enter) var(--sif-motion-ease);
    z-index: 10001;
    background: linear-gradient(180deg,#14245f 0%,#1e2d72 58%,#2a9696 100%);
    box-shadow: 18px 0 42px rgba(8,18,60,.42);
  }


  .header__menu.menu-open {
    transform: translateX(0);
    visibility: visible;
  }


  .header__menu.menu-open + .js-menu-open {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }


  .menu__primary {
    flex-flow: column;
    padding: 0;
    order: -1;
  }


  .menu__primary .menu__item::before {
    display: none;
  }


  .menu__primary .menu__item > .menu__link,.menu__primary .submenu > .menu__link,.menu__top .menu__link {
    padding: 1rem 2rem 1rem 1.5rem;
    text-align: left;
    font-size: 14px;
  }


  .menu__primary .submenu > .menu__link::after {
    top: 1rem;
    right: 1.5rem;
  }


  .menu__primary .submenu__item .menu__link {
    padding: .5rem 2rem;
    font-size: 14px;
  }


  .menu__top {
    flex-flow: column;
    padding: 0;
  }


  .lang-switcher {
    order: -1;
    margin: 0;
    padding: 3rem 2rem 1.5rem;
  }


  .close-menu {
    display: block;
    position: absolute;
    right: .75rem;
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 1;
    z-index: 10002;
  }


  .close-menu::before,.close-menu::after {
    content: "";
    position: absolute;
    left: 12px;
    width: 2px;
    height: 1.5rem;
    background: #fff;
    transform: rotate(45deg);
  }


  .close-menu::after {
    transform: rotate(-45deg);
  }


  .js-menu-open {
    display: block;
    position: absolute;
    right: 3%;
    top: 25%;
    z-index: 10002;
  }


  .submenu-wrapper {
    position: relative;
    top: 0;
    visibility: visible;
    opacity: 1;
    transition: none;
    overflow: hidden;
    display: none;
  }


  .submenu__item {
    width: 100%;
  }

}

@media (max-width:680px) {
  .header__menu {
    width: 100vw;
  }

}

/* C06: Preserve menu items/destinations; arrange Home through Contact Us in one row. */
@media (min-width:1101px) {
  .page__header .header__menu {
    width: auto;
    min-width: 0;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(4px,.6vw,16px);
  }


  .page__header .menu__primary {
    order: -1;
    width: auto;
    padding: 0;
    background: transparent;
  }


  .page__header .lang-switcher {
    margin: 0;
    padding: 0;
    width: 0;
    overflow: hidden;
  }


  .page__header :is(.menu__primary,.menu__top) {
    flex-wrap: nowrap;
    gap: clamp(0px,.3vw,8px);
  }


  .page__header :is(.menu__primary,.menu__top) > li > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px clamp(6px,.65vw,15px);
    font-size: clamp(12px,.9vw,16px);
    line-height: 1.3;
    white-space: nowrap;
  }


  .page__header .menu__primary > .submenu > a {
    padding-right: 22px;
  }


  .page__header .menu__primary .submenu > .menu__link::after {
    right: 8px;
  }


  .submenu-wrapper {
    width: max-content;
    min-width: 100%;
    max-width: 240px;
    background: var(--sif-deep-blue);
  }


  .page__header .submenu__item .menu__link {
    white-space: normal;
    padding: 14px 16px;
    font-size: 15px;
  }

}

.submenu:focus-within > .submenu-wrapper {
  visibility: visible;
  opacity: 1;
}

.page__header a:focus-visible {
  outline: 2px solid var(--sif-cyan);
  outline-offset: -3px;
}

@media (max-width:1100px) {
  .page__header .header__menu {
    padding: 64px 0 max(24px,env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }


  .page__header .lang-switcher {
    display: none;
  }


  .page__header .menu__primary,.page__header .menu__top {
    flex: 0 0 auto;
  }


  .page__header .menu__primary .menu__item > .menu__link,
  .page__header .menu__top .menu__link {
    min-height: 44px;
    font-size: 16px;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
  }


  .page__header .submenu:focus-within > .submenu-wrapper,
  .page__header .submenu.is-expanded > .submenu-wrapper {
    display: block;
  }


  .page__header .close-menu {
    width: 44px;
    height: 44px;
  }


  .page__header .close-menu::before,.page__header .close-menu::after {
    top: 10px;
    left: 21px;
  }


  .page__header .js-menu-open {
    position: static;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }


  .page__header .js-menu-open img {
    width: 28px;
    height: auto;
  }


  body:has(#wpadminbar) .page__header .header__menu {
    top: var(--wp-admin--admin-bar--height,32px);
    height: calc(100dvh - var(--wp-admin--admin-bar--height,32px));
  }
}

@media (min-width:1101px) {
  .page__header .menu__primary > .menu__item > .menu__link {
    min-height: 48px;
    padding: 12px clamp(6px,.65vw,15px);
  }


  .page__header .menu__primary > .submenu > .menu__link {
    padding-right: 22px;
  }

}

/* Keyboard focus must expose submenu links before the next Tab keystroke. */
.submenu:focus-within > .submenu-wrapper { transition: none; }

/* Source: assets/css/src/components/hero.css */
/* C09/C10: Home and inner hero geometry. Registration MU rules remain external. */
.section__hero {
  position: relative;
  overflow: hidden;
}

.hero__caption {
  position: absolute;
  bottom: 11%;
  left: 5%;
  z-index: 2;
}

.hero__caption h1 {
  margin-bottom: 1.5rem;
  font-size: 48px;
  text-transform: inherit;
}

.hero__caption h1 span {
  font-size: 26px;
}

.hero__caption .hero__anchor {
  margin-right: .5rem;
  min-width: 185px;
  text-align: center;
}

.hero__caption p {
  display: block;
  width: 80%;
  background: rgba(102,102,102,.51);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  padding: 1rem 1.5rem;
}

.quick__links {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.quick__links a {
  position: relative;
  height: 33px;
  display: block;
  padding: .25rem 3rem .25rem 0;
  color: #fff;
  font-size: 17px;
}

.quick__links a img {
  padding-right: 10px;
  width: 45px;
  height: 38px;
  object-fit: contain;
}

.quick__links a:hover,
.quick__links a:focus {
  color: var(--sif-blue);
}

.hero__img {
  overflow: hidden;
}

.hero__img::before {
  content: none;
}

.hero__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/hero/shade.png) no-repeat;
  background-size: cover;
  z-index: 1;
}

.hero__img > img,.hero__img video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: -1;
}

.section__hero .canvas {
  display: none;
}

.inner__hero {
  height: 595px;
}

.inner__hero .hero__img::before {
  opacity: 1;
}

.inner__hero .hero__img img {
  position: relative;
  width: auto;
  height: 100%;
}

.vimeo-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.breadcrumb {
  padding: 0;
  background: transparent;
  margin: 0;
}

.breadcrumb-item {
  font-size: 21px;
  text-transform: uppercase;
}

.breadcrumb-item a {
  color: #fff;
}

.breadcrumb-item.active {
  color: var(--sif-blue);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "-";
  color: #fff;
}

.social {
  position: absolute;
  bottom: 0;
  right: 2.5%;
  display: flex;
  flex-flow: column;
  list-style: none;
  margin: 0;
  padding: 0 0 18vh;
  z-index: 9;
}

.social::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 18vh;
  width: 1px;
  background: #fff;
}

.social li {
  padding-bottom: 2.3vh;
}

.social img {
  width: 24px;
  height: 24px;
  transition: .4s;
}

.social img:hover {
  margin-top: 1rem;
}

@media (max-width:1650px) {
  .hero__caption p {
    font-size: 20px;
    padding: .75rem 1.5rem;
  }


  .quick__links {
    padding: 1.5rem 0;
  }

}

@media (max-width:1400px) {
  .inner__hero {
    height: 450px;
  }


  .hero__caption h1 {
    margin-bottom: 1rem;
  }


  .hero__caption p {
    font-size: 17px;
    padding: .65rem 1rem;
  }


  .quick__links {
    padding: 1rem 0;
  }


  .quick__links a {
    padding: .25rem 2rem .25rem 0;
    height: 40px;
  }

}

@media (max-width:1199px) {
  .hero__img {
    height: 500px;
  }


  .hero__caption h1 {
    font-size: 28px;
  }


  .hero__caption h1 span {
    font-size: 16px;
  }


  .hero__caption p {
    font-size: 14px;
    padding: .5rem 1rem;
  }


  .quick__links {
    padding: .75rem 0;
  }

}

@media (max-width:1024px) {
  .hero__caption .hero__anchor {
    min-width: 150px;
  }

}

@media (max-width:992px) {
  .inner__hero,.inner__hero .hero__img {
    height: 300px;
  }

}

@media (max-width:767px) {
  .hero__caption {
    width: 100%;
    bottom: 20px;
    left: 0;
    padding: 0 4%;
    position: relative;
  }


  .hero__caption h1 {
    font-size: 24px;
  }


  .hero__img {
    height: 120px;
  }

}

@media (max-width:480px) {
  .quick__links a {
    width: 100%;
    margin: .5rem 0;
    height: 30px;
    font-size: 16px;
  }


  .hero__caption .hero__anchor {
    margin-top: .5rem;
  }


  .inner__hero {
    height: 400px;
  }


  .inner__hero .hero__img {
    height: 100%;
  }


  .inner__hero .hero__caption {
    position: absolute;
  }


  .inner__hero .hero__caption h1 {
    margin: 0;
    font-size: 20px;
  }


  .breadcrumb-item {
    font-size: 16px;
  }

}

@media (max-width:1700px) {
  .social {
    padding-bottom: 10vh;
  }


  .social li {
    padding-bottom: 1.5vh;
  }


  .social img {
    width: 20px;
    height: 20px;
  }


  .social::after {
    height: 10vh;
  }

}

@media (max-width:1400px) {
  .social img {
    width: 17px;
    height: 17px;
  }


  .social li {
    padding-bottom: 10px;
  }

}

@media (max-width:1199px) {
  .social {
    padding-bottom: 2rem;
  }


  .social::after {
    height: 2rem;
  }

}

@media (max-width:767px) {
  .social {
    display: none;
  }

}

@media (max-width:575px) {
  .hero__caption .hero__anchor {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: .5rem 0 0;
  }

}

.hero__caption .sif-register-anchor {
  font-weight: 700;
  background-color: var(--sif-blue);
  border-color: var(--sif-blue);
}

.hero__caption .sif-register-anchor:hover,.hero__caption .sif-register-anchor:focus {
  background-color: var(--sif-navy);
  border-color: var(--sif-navy);
}

.section__hero:not(.inner__hero) {
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(520px,calc(100svh - var(--sif-header-height)),1000px);
  background: var(--sif-hero-gradient);
  padding: clamp(48px,8vw,120px) clamp(20px,5vw,96px);
}

.section__hero:not(.inner__hero) .hero__img {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: -1;
}

.section__hero:not(.inner__hero) .hero__caption {
  position: relative;
  inset: auto;
  padding: 0;
  width: min(100%,850px);
}

.section__hero:not(.inner__hero) .hero__caption h1 {
  font-size: clamp(28px,3.2vw,52px);
  line-height: 1.15;
}

.section__hero:not(.inner__hero) .hero__caption p {
  width: fit-content;
  max-width: 100%;
  line-height: 1.5;
  background: rgba(16,28,75,.7);
}

.section__hero .hero__img::after {
  pointer-events: none;
}

.vimeo-wrapper {
  z-index: 0;
}

.vimeo-wrapper iframe {
  border: 0;
  opacity: 0;
  transition: opacity var(--sif-motion-enter);
}

.vimeo-wrapper.is-playing iframe {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .vimeo-wrapper iframe {
    visibility: hidden;
  }

}

@media (max-width:767px) {
  .section__hero:not(.inner__hero) {
    min-height: 520px;
  }


  .section__hero:not(.inner__hero) .hero__caption {
    width: 100%;
  }


  .quick__links {
    gap: 4px 12px;
  }


  .quick__links a {
    height: auto;
    min-height: 44px;
  }


  .hero__caption .hero__anchor {
    min-width: min(150px,100%);
    max-width: 100%;
  }

}

.inner__hero .hero__img img {
  max-width: none;
  object-fit: cover;
}

.inner__hero .hero__caption {
  max-width: 90%;
}

.inner__hero .hero__caption h1 {
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.breadcrumb {
  flex-wrap: wrap;
  gap: 4px 0;
}

.breadcrumb-item {
  overflow-wrap: anywhere;
}

@media (max-width:767px) {
  .inner__hero .hero__caption {
    max-width: 100%;
  }

}

/* Keep template-owned inner-banner photos in the hero stacking context. */
.inner__hero {
  isolation: isolate;
  background-color: var(--sif-deep-blue);
}

.inner__hero .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner__hero .hero__img img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transform: none;
  z-index: 0;
  object-fit: cover;
}

@media (max-width:1100px) {
  /* C10: The MU forces crop and absolute captions. Keep the whole banner and
     let its title/breadcrumbs create their own row, including long article titles. */
  #sif-inner-hero { height: auto !important; }
  #sif-inner-hero .hero__img {
    position: relative;
    height: auto !important;
  }
  #sif-inner-hero .hero__img img { height: auto !important; }
  #sif-inner-hero .hero__caption {
    position: relative !important;
    inset: auto;
    bottom: auto !important;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px !important;
  }

}

/* Source: assets/css/src/components/features.css */
/* C11/C12: Feature icon/number anatomy. Home and exhibition layout stay with their pages. */
.feature__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.feature__item {
  position: relative;
  width: 19%;
  margin-right: 6%;
  padding: 3rem 0;
}

.feature__item p {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -1px;
}

.feature__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--sif-blue);
  display: inline-block;
  letter-spacing: 0;
}

.feature__item .i-txt {
  display: block;
}

.feature__img {
  position: relative;
}

.feature__img::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--sif-navy);
  z-index: 1;
}

@media (max-width:1650px) {
  .feature__item {
    padding: 1.5rem 0;
  }


  .feature__number {
    font-size: 40px;
  }


  .feature__img img {
    width: 65px;
    height: auto;
  }

}

@media (max-width:1500px) {
  .feature__item p {
    font-size: 20px;
  }

}

@media (max-width:1400px) {
  .feature__img img {
    width: 55px;
  }


  .feature__number {
    font-size: 34px;
  }


  .feature__item p {
    font-size: 17px;
  }

}

@media (max-width:1199px) {
  .feature__item {
    padding: 1rem 0;
  }


  .feature__number {
    font-size: 28px;
  }


  .feature__item p {
    font-size: 16px;
  }

}

@media (max-width:767px) {
  .feature__item {
    width: 44%;
  }


  .feature__item p {
    font-size: 14px;
  }

}

/* Source: assets/css/src/components/cards.css */
/* C14/C19: Confirmed speaker and focus-card anatomy. Lists and page spacing belong to their pages. */
.speaker__item {
  position: relative;
  padding: 2rem 0;
  font-size: 16px;
  height: 440px;
}

.speaker__item::before {
  content: none;
}

.speaker__image {
  position: relative;
  width: 217px;
  height: 238px;
  margin: 0 auto;
  border: 1px solid rgba(102,102,102,.2);
  background: #f7f7f7;
  overflow: hidden;
}

.speaker__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.speaker__caption {
  width: 219px;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
}

.speaker__caption p {
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.spaker__name {
  font-weight: 700;
  color: var(--sif-white);
}

.focus__speaker__item {
  position: relative;
  padding: 2rem 0;
  font-size: 16px;
  height: 400px;
  margin-top: 5rem;
}

.focus__speaker__item::before {
  content: none;
}

.focus__speaker__image {
  width: 217px;
  height: 238px;
  border: 1px solid rgba(102,102,102,.2);
  overflow: hidden;
}

.focus__speaker__image img {
  width: 100%;
  height: 100%;
}

.focus__speaker__caption {
  width: 219px;
  padding: 1rem 0;
  text-align: left;
}

.focus__speaker__caption p {
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
}

.focus__spaker__name {
  text-align: center;
}

@media (max-width:1400px) {
  .speaker__item {
    height: 330px;
    padding: 1.65rem 0 2rem;
    font-size: 12px;
  }


  .speaker__item::before {
    width: 182px;
  }


  .speaker__image {
    width: 182px;
    height: 200px;
  }


  .speaker__caption {
    width: 182px;
  }


  .focus__speaker__item {
    margin-top: 2rem;
  }

}

@media (max-width:1100px) {
  .focus__speaker__item {
    margin-top: 0;
  }


  .speaker__image { height: auto; background: var(--sif-panel); }
  .speaker__image img { height: auto; object-fit: contain; }


  .speaker__item { font-size: 16px; }
  .speaker__caption { overflow-wrap: anywhere; }
}

@media (max-width:767px) {
  .speaker__item {
    height: 400px;
    padding: 2rem 0;
    font-size: 16px;
  }


  .speaker__item::before,.speaker__caption {
    width: 219px;
  }


  .speaker__image {
    width: 217px;
    height: auto;
  }

}

@media (max-width:480px) {
  .focus__speaker__item {
    height: auto;
    padding: 1rem 0 0;
  }


  .focus__speaker__item::before {
    content: none;
  }


  .focus__speaker__image {
    width: 100%;
  }


  .focus__speaker__image img {
    height: auto;
  }


  .focus__speaker__caption {
    width: 100%;
  }

}

.speaker__item {
  height: auto;
  min-height: 330px;
}

.speaker__image,.speaker__caption {
  max-width: calc(100% - 20px);
}

/* Source: assets/css/src/components/media.css */
/* C13: Home editorial module. Media/Press page geometry is separately owned. */
/* The inline ACF image stays intact beneath a separate contrast overlay. */
.section__mediasection {
  padding-top: 302px;
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width:769px) {
  body .section.section__mediasection {
    background-color: var(--sif-navy,#14245f);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

.mediasection__wrapper {
  width: 50%;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  background: var(--sif-panel-gradient);
  box-shadow: 0 18px 38px rgba(8,17,52,.3);
}

.section__mediasection .tag {
  width: 200px;
  padding: .75rem 1.75rem;
  margin: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: var(--sif-orange-gradient);
}

.media-left {
  width: 300px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg,rgba(20,36,95,.66),rgba(30,45,114,.2));
}

.media-right {
  width: calc(100% - 300px);
  padding: 2.5rem 4rem 3rem;
  background: linear-gradient(135deg,rgba(30,45,114,.22),rgba(66,123,226,.14));
}

.media-left .section__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 1.75rem;
  height: 100%;
}

.media-left h2 {
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}

.media-left h2 span {
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg,#9ae3ef,#54c6d1 55%,#2a9696);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.media-right h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #fff;
}

.news__item {
  position: relative;
  padding-bottom: 3rem;
}

.news__list h4 {
  font-size: 22px;
  font-weight: 400;
  margin: 2rem 0;
}

.news__list time {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.section__mediasection .news__list :is(h4,p,time) {
  color: #fff;
}

@media (max-width:1366px) {
  .media-left {
    width: 260px;
  }


  .media-right {
    width: calc(100% - 260px);
    padding: 2.5rem 1rem 3rem;
  }


  .news__list h4 {
    font-size: 18px;
  }

}

@media (max-width:1199px) {
  .mediasection__wrapper {
    width: 85%;
  }

}

@media (max-width:768px) {
  .mediasection__wrapper,.media-left,.media-right {
    width: 100%;
  }


  .media-right {
    padding: 1rem;
  }


  .media-left .section__header {
    flex-direction: row;
    padding: 2rem 1rem 0;
  }

}

@media (max-width:480px) {
  .media-left .section__header {
    flex-direction: column;
  }


  .latest__news .news__list {
    padding: 1rem 1rem 1rem 0;
  }

}

.news__list.slick-slider {
  margin: 0;
}

.media-left .section__cta {
  text-align: left;
}

/* Current editorial excerpts retain their spacious inset on larger screens. */
.section__mediasection .news__item p {
  padding-right: 25%;
  padding-bottom: 3rem;
}

@media (max-width:992px) {
  .section__mediasection .news__item p {
    padding: 0;
  }

}

.section__mediasection::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--sif-media-overlay);
}

.section__mediasection {
  padding-top: clamp(160px,21vw,340px);
}

.section__mediasection .mediasection__wrapper {
  width: min(100%,920px);
}

.section__mediasection .media-left {
  width: 32%;
}

.section__mediasection .media-right {
  width: 68%;
  min-width: 0;
  padding: clamp(20px,3vw,48px);
}

.section__mediasection .news__item p {
  padding-right: 0;
}

@media (max-width:600px) {
  .section__mediasection .media-left,.section__mediasection .media-right {
    width: 100%;
  }

}

/* SIF_MEDIA_GEOMETRY_FIX_R1
   Keep the media panel inside the image height instead of adding its
   height below the desktop background. */
@media (min-width: 1200px) {
  body .section.section__mediasection {
    box-sizing: border-box;
    min-height: clamp(520px, 35.46875vw, 681px);
    padding-top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

/* SIF_MEDIA_PANEL_COMPACT_R1 */
@media (min-width: 1200px) {
  .section__mediasection .mediasection__wrapper {
    width: min(80vw, 760px);
  }

  .section__mediasection .media-left {
    width: 30%;
  }

  .section__mediasection .media-right {
    width: 70%;
    padding: 26px 30px 30px;
  }

  .section__mediasection .media-left .section__header {
    padding: 28px 22px;
  }

  .section__mediasection .tag {
    width: 170px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .section__mediasection .media-left h2 span {
    font-size: 30px;
  }

  .section__mediasection .news__item {
    padding-bottom: 32px;
  }

  .section__mediasection .news__item p {
    padding-bottom: 18px;
  }

  .section__mediasection .slick-dots {
    margin-top: 12px;
  }
}

/* SIF_MEDIA_SEPARATED_DESIGN_R1
   Independent image banner followed by a separate Media Center card. */

body .section.section__mediasection {
  display: block;
  min-height: 0;
  padding: 0 0 clamp(44px,6vw,80px);
  overflow: hidden;
  background-color: #14245f;
  background-size: 0 0;
  background-repeat: no-repeat;
}

/* Reuse the existing inline background image as an independent banner. */
body .section.section__mediasection::before {
  content: "";
  position: relative;
  inset: auto;
  z-index: 0;
  display: block;
  width: 100%;
  height: clamp(280px,30vw,520px);
  pointer-events: none;
  background-image: inherit;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  filter: brightness(.82) saturate(.85);
}

/* Independent Media Center card. */
body .section.section__mediasection .mediasection__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px,30%) minmax(0,1fr);
  width: min(calc(100% - 48px),980px);
  margin: clamp(28px,4vw,48px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(154,227,239,.22);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(5,14,48,.32);
}

body .section.section__mediasection .media-left,
body .section.section__mediasection .media-right {
  width: auto;
  min-width: 0;
}

body .section.section__mediasection .media-left .section__header {
  height: 100%;
  min-height: 0;
  padding: 30px 24px;
}

body .section.section__mediasection .media-right {
  padding: clamp(26px,3vw,40px);
}

body .section.section__mediasection .tag {
  width: fit-content;
  min-width: 170px;
  padding: 10px 18px;
}

body .section.section__mediasection .news__item {
  padding-bottom: 34px;
}

body .section.section__mediasection .news__item p {
  padding-right: 0;
  padding-bottom: 16px;
}

body .section.section__mediasection .slick-dots {
  margin-top: 12px;
}

/* Mobile: shorter image followed by a fully stacked card. */
@media (max-width: 767px) {
  body .section.section__mediasection {
    padding-bottom: 36px;
  }

  body .section.section__mediasection::before {
    height: clamp(190px,58vw,260px);
    background-position: 38% center;
  }

  body .section.section__mediasection .mediasection__wrapper {
    grid-template-columns: minmax(0,1fr);
    width: calc(100% - 24px);
    margin-top: 24px;
    border-radius: 12px;
  }

  body .section.section__mediasection .media-left .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 20px;
  }

  body .section.section__mediasection .media-right {
    padding: 26px 20px 30px;
  }

  body .section.section__mediasection .tag {
    min-width: 150px;
  }
}

/* Source: assets/css/src/components/carousel.css */
/* C04/C35: Theme carousel navigation, with the vendor owning track and slide mechanics. */
.slick__navs {
  position: relative;
  display: flex;
}

.slick__navs .slick-prev {
  margin-right: 10px;
}

.slick-prev,.slick-next {
  background: var(--sif-cyan-button);
  box-shadow: var(--sif-button-shadow);
  color: #fff;
}

.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus {
  background: var(--sif-button-hover);
  box-shadow: 0 10px 24px rgba(154,227,239,.24);
}

@media (max-width:1400px) {
  .slick__navs :is(.slick-next,.slick-prev) {
    width: 28px;
    height: 28px;
  }

}

/* C13/C14/C20/C28/C31: Opted-in dot owners only; Slick keeps accessible buttons. */
:is(.js-newsCarousel,.js-speakersSlder,.js-globalCarousel,.js-tourismSlider,.js-testimonial) .slick-dots {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 100%;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

:is(.js-newsCarousel,.js-speakersSlder,.js-globalCarousel,.js-tourismSlider,.js-testimonial) .slick-dots li {
  position: relative;
  display: block;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: none;
  overflow: visible;
}

:is(.js-newsCarousel,.js-speakersSlder,.js-globalCarousel,.js-tourismSlider,.js-testimonial) .slick-dots li::before {
  content: none;
}

:is(.js-newsCarousel,.js-speakersSlder,.js-globalCarousel,.js-tourismSlider,.js-testimonial) .slick-dots button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

:is(.js-newsCarousel,.js-speakersSlder,.js-globalCarousel,.js-tourismSlider,.js-testimonial) .slick-dots button::before {
  content: "";
  position: static;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sif-cyan);
  border-radius: 50%;
  background: transparent;
}

:is(.js-newsCarousel,.js-speakersSlder,.js-globalCarousel,.js-tourismSlider,.js-testimonial) .slick-dots .slick-active button::before {
  background: var(--sif-cyan);
  box-shadow: 0 0 0 3px rgba(154,227,239,.2);
}

:is(.js-newsCarousel,.js-speakersSlder,.js-globalCarousel,.js-tourismSlider,.js-testimonial) .slick-dots button:focus-visible {
  outline: 2px solid var(--sif-white);
  outline-offset: -2px;
}

.slick__navs :is(.slick-prev,.slick-next) {
  min-width: 44px;
  min-height: 44px;
}

/* A stable dark loading surface; fixes the vendor's missing loader-image request. */
.slick-slider.slick-loading .slick-list {
  background: var(--sif-deep-blue);
}

/* Source: assets/css/src/components/accordion-tabs.css */
/* C18: Event Info Bootstrap collapse chrome. Bootstrap continues to own collapse visibility. */
.about__accordian__section {
  --sif-event-accordion-accent: var(--sif2026-color-event-accordion-accent);
  padding: var(--sif-section-space) 0;
  position: relative;
  overflow: hidden;
}

.about__accordian__section::before {
  content: none;
}

.about__accordian__section::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--sif-cyan);
}

.about__accordian__section h1 {
  font-size: 68px;
  letter-spacing: -1px;
  margin-bottom: 3rem;
}

.about__accordian__section .card {
  background: transparent;
  border: 0;
}

.about__accordian__section .card-header {
  background: transparent;
  padding: .75rem 3rem;
  border-bottom: 1px solid var(--sif-event-accordion-accent);
}

.about__accordian__section .card-body {
  padding-right: 30px;
}

.about__accordian__section .card-body p {
  font-size: 26px;
  line-height: 34px;
  padding: 0 1.75rem;
  margin-bottom: 1rem;
}

.about__accordian__section .btn {
  position: relative;
  width: 100%;
  padding: 0 30px 0 0;
  margin: 0 0 1rem;
  font-size: 30px;
  font-weight: 700;
  white-space: normal;
  text-align: left;
  color: #fff;
  background: var(--sif-cyan-button);
  border-color: var(--sif-control-border);
  box-shadow: var(--sif-button-shadow);
}

.about__accordian__section .btn:hover,.about__accordian__section .btn:focus {
  background: var(--sif-button-hover);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(154,227,239,.24);
  outline: 0;
}

.pm-icon {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.pm-icon::before,.pm-icon::after {
  content: "";
  position: absolute;
  background: var(--sif-event-accordion-accent);
  transition: .3s;
}

.pm-icon::before {
  width: 4px;
  height: 16px;
  left: 6px;
  transform: rotate(90deg);
}

.pm-icon::after {
  width: 16px;
  height: 4px;
  top: 6px;
  transform: rotate(180deg);
}

.collapsed .pm-icon::before,.collapsed .pm-icon::after {
  transform: rotate(0);
}

@media (max-width:1700px) {
  .about__accordian__section .btn {
    font-size: 26px;
  }


  .about__accordian__section .card-body p {
    font-size: 22px;
  }

}

@media (max-width:1500px) {
  .about__accordian__section h1 {
    font-size: 50px;
  }


  .about__accordian__section .btn {
    font-size: 22px;
  }


  .about__accordian__section .card-body p {
    font-size: 18px;
  }

}

@media (max-width:1400px) {
  .pm-icon {
    left: -10%;
  }

}

@media (max-width:480px) {
  .about__accordian__section h1 {
    font-size: 35px;
    margin-bottom: 1rem;
  }


  .about__accordian__section .card-header {
    padding: .75rem 2rem;
  }


  .about__accordian__section .btn {
    font-size: 16px;
    padding: 5px 0;
    margin: 0;
  }


  .about__accordian__section .card-body p {
    font-size: 16px;
    line-height: 26px;
  }

}

.about__accordian__section h1 {
  font-size: clamp(28px,3.7vw,58px);
  letter-spacing: -.02em;
  line-height: 1.1;
}

.about__accordian__section .card-header {
  padding: 10px 0;
}

.about__accordian__section .btn {
  min-height: 48px;
  margin: 0;
  padding: 12px 16px 12px 44px;
  font-size: clamp(18px,1.5vw,26px);
  line-height: 1.3;
}

.about__accordian__section .pm-icon {
  left: 14px;
}

.about__accordian__section .card-body {
  padding: 20px 8px;
}

.about__accordian__section .card-body p {
  padding: 0;
  font-size: clamp(16px,1.2vw,20px);
  line-height: 1.6;
}

.about__accordian__section .btn:focus-visible {
  outline: 2px solid var(--sif-cyan);
  outline-offset: 3px;
}

/* Source: assets/css/src/components/forms.css */
/* C35/C37: Contact form controls and the emitted custom select. No universal plugin reset. */
.form-content {
  text-align: center;
}

.form-content .form-group {
  margin-bottom: 1.5rem;
}

.form-content input,.form-content textarea {
  max-width: 100%;
  min-width: 0;
  font-size: 16px;
  border: 1px solid rgba(154,227,239,.54);
  background: var(--sif-input-bg);
  color: var(--sif-text);
  padding: 1.5rem;
  border-radius: 0;
}

.form-content textarea {
  height: 200px;
  min-height: 160px;
  resize: vertical;
  background: var(--sif-input-bg);
}

.form-content input:focus,.form-content textarea:focus {
  outline: 0;
  border-color: var(--sif-blue);
  box-shadow: none;
}

.form-content input::placeholder,.form-content textarea::placeholder {
  color: rgba(247,247,247,.68);
  font-size: 20px;
}

.form-content .box-anchor {
  font-size: 18px;
  margin: .5rem 0 0;
  padding: 1.5rem 4.5rem;
  height: auto;
}

@media (max-width:1500px) {
  .form-content input,.form-content textarea {
    padding: 1rem;
  }


  .form-content input::placeholder,.form-content textarea::placeholder {
    font-size: 16px;
  }

}

@media (max-width:1100px) {
  .form-content .box-anchor {
    font-size: 16px;
    padding: .75rem 2rem;
  }

}

@media (max-width:992px) {
  .form-content .box-anchor {
    font-size: 14px;
    padding: 1rem 3rem;
  }

}

@media (max-width:480px) {
  .form-content input,.form-content textarea {
    padding: .75rem 1rem;
  }


  .form-content .form-group {
    margin-bottom: .5rem;
  }

}

.modified-select {
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  min-width: 200px;
  background: #fff;
}

.modified-select select {
  display: none;
}

.select-selected {
  background: transparent;
}

.select-selected::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 20px;
  border: solid #000;
  border-width: 0 0 2px 2px;
  padding: 4px;
  transform: rotate(-45deg);
}

.select-selected,.select-items div {
  color: #000;
  padding: .5rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.select-selected {
  border-bottom-color: #000;
}

.select-selected.select-arrow-active {
  background: #fff;
  border-bottom-color: #f1f1f1;
}

.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  transition: .3s;
}

.select-items div:hover,.select-items .same-as-selected {
  background: var(--sif-blue);
  color: #fff;
}

.select-hide {
  visibility: hidden;
  opacity: 0;
}

@media (max-width:1500px) {
  .select-selected::after {
    top: 14px;
    border-width: 0 0 1px 1px;
    padding: 2px;
  }

}

.form-content :is(input,textarea):focus-visible {
  outline: 2px solid var(--sif-cyan);
  outline-offset: 2px;
}

/* Source: assets/css/src/components/supporters.css */
/* C15/C20: Partner taxonomy groups and reusable logo rails. MU mobile foundation retains its layout authority. */
.supporters__caption {
  padding: 4rem 0;
  text-align: center;
}

.supporters__caption h2 {
  margin: 0;
}

.supporters__caption p {
  max-width: 700px;
  margin: 2.5rem auto;
}

.supporter__wrap {
  display: flex;
  flex-wrap: wrap;
}

.supporter__box {
  width: auto;
  background: var(--sif-panel);
  border-color: var(--sif-divider);
  box-shadow: var(--sif-panel-shadow);
}

.top__supporters {
  padding: 2rem 0;
}

.top__supporters .supporter__wrap {
  justify-content: center;
}

.top__supporters .supporter__box {
  width: 231px;
  text-align: center;
  padding: 1.75rem 0;
}

.top__supporters .supporter__box p {
  margin-bottom: 1.25rem;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.badge {
  line-height: 1;
  padding: .5rem;
  background: #666;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
}

.badge.green__badge {
  background: var(--sif-blue);
}

.top__supporters .badge {
  line-height: 1;
  margin-right: .25rem;
  background: var(--sif-blue);
  border-radius: 5px;
}

.new__wrap_group {
  display: flex;
  justify-content: center;
}

.supporter__wrap.new__wrap {
  display: block;
}

.supporter__wrap.new__wrap p {
  text-align: center;
}

.supporter__wrap.new__wrap .support__upper {
  display: flex;
  width: 50%;
  margin: 0 auto;
  justify-content: center;
}

.full__wrap {
  margin: 1rem 0 0;
}

.full__wrap p {
  text-align: center;
  width: 78%;
  margin: 0 auto;
}

.full__wrap p .badge {
  width: 100%;
  background: var(--sif-blue);
  border-radius: 5px;
}

.full__wrap .support__upper {
  display: flex;
  width: 100%;
  justify-content: center;
}

.full__wrap .supporter__box {
  width: 210px;
  margin-right: 1rem;
}

.full__wrap .new__wrap__40 {
  width: 40%;
  text-align: center;
}

.full__wrap .new__wrap__20 {
  width: 20%;
  text-align: center;
}

.full__wrap :is(.new__wrap__40,.new__wrap__20) p .badge {
  margin-left: -17px;
}

.full__wrap .new_wrap_more_5 .badge {
  width: 40%;
}

.full__wrap .new_wrap_more_5 .new__wrap_group {
  flex-wrap: wrap;
}

.full__wrap .new_wrap_more_5 .support__upper {
  width: auto;
}

.full__wrap .new_wrap_count_2 .badge {
  width: 80%;
}

.full__wrap .new_wrap_count_3 .badge {
  width: 50%;
}

.top__supporters.category {
  padding: 2rem 0 0;
}

.more__supporters {
  padding: 0 0 5rem;
}

.supporter__header {
  padding: 5rem 0 2.5rem;
  display: flex;
  justify-content: space-between;
}

.supporter_logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 210px;
  max-width: 100%;
  height: 210px;
  background: #fff;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}

.supporter_logo span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  text-align: center;
}

.supporter_logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.support__caption {
  padding: 2.5rem 0;
  font-size: 16px;
  width: 179px;
  text-align: center;
  margin: 0;
}

@media (max-width:1700px) {
  .top__supporters .supporter__box {
    margin: 0 .5rem;
  }


  .slick-slider .supporter_logo {
    width: 160px;
    height: 160px;
    padding: 1rem;
  }

}

@media (max-width:1400px) {
  .badge {
    font-size: 12px;
  }


  .supporter_logo {
    width: 150px;
    height: 150px;
    padding: .75rem;
  }


  .support__caption {
    font-size: 12px;
    width: 128px;
    padding: 1rem 0;
  }


  .more__supporters {
    padding-bottom: 2rem;
  }


  .supporter__header {
    padding: 2rem 0 1.75rem;
  }


  .supporters__caption {
    padding: 2rem 0;
  }


  .supporters__caption p {
    margin: 1.5rem auto;
  }


  .top__supporters {
    padding: 1rem 0;
  }


  .top__supporters .supporter__box {
    width: 220px;
  }


  .top__supporters .supporter__box p {
    margin-bottom: 1rem;
  }


  .supporter__wrap.new__wrap .support__upper {
    width: 60%;
  }


  .full__wrap .new_wrap_more_5 .support__upper {
    width: 20%;
  }

}

@media (max-width:1199px) {
  :where(.supporter__wrap) .supporter__box {
    width: 175px;
  }


  .top__supporters .supporter__box {
    width: 160px;
  }


  .supporters__caption p {
    margin: 1rem auto;
  }


  .support__caption {
    padding: .5rem 0;
  }


  .supporter__header {
    padding: 1.5rem 0 1rem;
  }


  .new_wrap_count_5 .new__wrap_group,.new_wrap_count_2 .new__wrap_group {
    flex-wrap: wrap;
  }


  .new_wrap_count_5 .support__upper {
    width: 20%;
  }


  .new_wrap_count_2 .support__upper {
    width: 40%;
  }


  .new_wrap_count_1,.new_wrap_count_2 {
    width: 50%;
  }


  .new_wrap_count_3,.new_wrap_count_4 {
    width: 100%;
  }


  .full__wrap :is(.new_wrap_count_1,.new_wrap_count_2,.new_wrap_count_3,.new_wrap_count_4,.new_wrap_count_5) .badge {
    width: 50%;
  }

}

@media (max-width:992px) {
  :where(.supporter__wrap) .supporter__box {
    width: 135px;
  }

}

@media (max-width:800px) {
  .supporter_logo,.slick-slider .supporter_logo {
    width: 120px;
    height: 120px;
    padding: .75rem;
  }


  .slick-slider .supporter__box {
    width: auto;
    margin-right: .75rem;
  }


  .full__wrap .new__wrap__20 {
    width: 50%;
  }


  .full__wrap .new__wrap__20 p .badge {
    margin-left: 0;
  }

}

@media (max-width:767px) {
  .supporter__header {
    padding: 1.5rem 1.5rem 1rem;
  }


  .more__supporters .container {
    padding: 0;
  }


  .supporter_logo {
    width: 150px;
    height: 150px;
  }


  .support__caption {
    width: 150px;
    font-size: 14px;
  }


  .supporter__box {
    margin: 0 .5rem;
  }


  .top__supporters .supporter__box {
    padding: 1rem 0;
    width: 150px;
  }


  .top__supporters .supporter__box p {
    margin-bottom: .75rem;
  }

}

@media (max-width:480px) {
  .supporter__wrap.new__wrap .support__upper,.full__wrap .support__upper,.full__wrap .new_wrap_more_5 .support__upper {
    width: 50%;
    flex-wrap: wrap;
  }


  .full__wrap :is(.new__wrap__40,.new__wrap__20) {
    width: 60%;
  }


  .top__supporters .supporter__box {
    width: 100%;
  }


  .new__wrap_group {
    flex-wrap: wrap;
  }


  .full__wrap :is(.new_wrap_count_1,.new_wrap_count_2,.new_wrap_count_3,.new_wrap_count_4,.new_wrap_more_5) .badge {
    width: 100%;
  }


  .new_wrap_count_2 {
    width: 100%;
  }

}

/* C15/C20: Logo pixels always remain inside their existing frames. */
.supporter_logo img, .organized__by img { object-fit: contain; }


.support__upper > .supporter__box {
  min-width: 0;
  max-width: calc(100% - 16px);
}

/* Source: assets/css/src/components/footer.css */
/* C38/C39/C40: Actual footer widgets/newsletter; preserve hidden social region. */
.page__footer {
  border-top: 1px solid rgba(154,227,239,.28);
  background: transparent;
  color: #ccc;
}

.page__footer ul {
  list-style: none;
  margin: 0;
}

.page__footer a {
  color: rgba(204,204,204,.7);
  font-size: 15px;
  text-decoration: none;
}

.page__footer a:hover,.page__footer a:focus {
  color: rgba(255,255,255,.7);
}

.nw_subscription {
  background: #26252a;
  padding: 2.4rem 5.5rem;
  display: flex;
  flex-wrap: wrap;
}

.nw_subscription .widget_text {
  width: calc(100% - 206px);
}

.nw_subscription .form {
  display: block;
  width: 100%;
  position: relative;
}

.nw_subscription .form-group {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nw_subscription .sub__input {
  background: #333;
  color: #fff;
  border: 1px solid rgba(107,107,107,.5);
  border-radius: 0;
  padding: .8rem .75rem;
  margin: 0 1.75rem 0 0;
}

.nw_subscription .sub__input:focus {
  border-color: rgba(255,255,255,.5);
  outline: 0;
  box-shadow: none;
}

.nw_subscription p {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nw_subscription input::placeholder {
  color: rgba(247,247,247,.68);
  opacity: 1;
}

.sub__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 1rem 0 0;
  font-size: 20px;
  text-transform: uppercase;
}

.footer__qmenu {
  display: flex;
  flex-wrap: wrap;
}

.qmenu__list {
  width: 16.6%;
  padding: 2.75rem 1%;
}

.footer__qmenu .menu {
  padding: 0;
}

.footer__qmenu .menu__link {
  display: inline-block;
  text-transform: none;
  line-height: 2;
}

.qmenu__title {
  font-size: 15px;
  margin-bottom: 1.35rem;
  position: relative;
}

.qmenu__title a {
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}

.qmenu__title::before,.qmenu__title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80%;
  height: 1px;
  z-index: 0;
  background: #666;
}

.qmenu__title::after {
  bottom: -2px;
  width: 20%;
  height: 2px;
  z-index: 1;
  background: var(--sif-blue);
}

.footer__copy {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.2);
}

.footer__copy p {
  font-size: 16px;
  margin: 0;
}

.footer-links {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.footer-links li {
  padding-left: 1.5rem;
}

/* Template inline social CSS explicitly declares display; this ancestor policy must win. */
.sif-social-clean {
  display: none !important;
}

@media (max-width:1600px) {
  .nw_subscription .sub__input {
    margin-right: 1.5rem;
    font-size: 14px;
  }


  .nw_subscription .wpcf7-form-control-wrap {
    position: relative;
    margin: 0 1rem;
  }

}

@media (max-width:1400px) {
  .footer__copy {
    padding: 1rem;
  }


  .footer__copy p {
    font-size: 12px;
  }


  .nw_subscription {
    padding: 2rem 7.5%;
  }


  .nw_subscription .sub__title {
    font-size: 15px;
  }


  .nw_subscription .sub__input {
    padding: .5rem .75rem;
  }


  .page__footer .container {
    padding: 0 5%;
  }


  .page__footer a {
    font-size: 14px;
  }

}

@media (max-width:1100px) {
  .page__footer .container {
    padding: 0;
  }

}

@media (max-width:991px) {
  .nw_subscription .sub__title {
    margin: 0 auto .5rem 0;
  }


  .nw_subscription .widget_text {
    width: 100%;
  }


  .nw_subscription .wpcf7-form-control-wrap {
    margin: 0 1rem 0 0;
  }


  .qmenu__list {
    width: 33%;
    padding: 1.5rem 2.85%;
  }

}

@media (max-width:767px) {
  .nw_subscription {
    padding: 2rem 4%;
  }


  .nw_subscription .form-group {
    flex-direction: column;
  }


  .nw_subscription .sub__input {
    margin: 0;
    padding: .3rem .75rem;
  }


  .nw_subscription .wpcf7-form-control-wrap {
    margin: 0;
  }


  .footer__qmenu {
    display: none;
  }

}

@media (max-width:480px) {
  .footer .row {
    margin: 0;
  }


  .footer p {
    margin: .5rem 0;
    text-align: center;
  }


  .footer-links {
    justify-content: center;
    margin-bottom: .5rem;
  }

}

@media (max-width:1199px) {
  .nw_subscription .box-anchor {
    height: 39px;
  }

}

.page__footer a {
  overflow-wrap: anywhere;
}

.page__footer .nw_subscription {
  max-width: 100%;
}

.page__footer :is(input[type="text"],input[type="email"],input[type="submit"]) {
  min-height: 44px;
  max-width: 100%;
}

@media (max-width:767px) {
  .page__footer a {
    display: inline-block;
    padding-block: 5px;
  }

}

/* Source: assets/css/src/components/animations.css */
/* C04: Only animation names emitted by healthy templates or their JavaScript. No vendor animation catalogue. */
.animated {
  animation-duration: var(--sif-motion-enter);
  animation-timing-function: var(--sif-motion-ease);
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }


  to {
    opacity: 1;
  }

}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-20px,0,0);
  }


  to {
    opacity: 1;
    transform: translate3d(0,0,0);
  }

}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(20px,0,0);
  }


  to {
    opacity: 1;
    transform: translate3d(0,0,0);
  }

}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0,20px,0);
  }


  to {
    opacity: 1;
    transform: translate3d(0,0,0);
  }

}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0,-20px,0);
  }


  to {
    opacity: 1;
    transform: translate3d(0,0,0);
  }

}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.98,.98,.98);
  }


  50% {
    opacity: 1;
  }


  to {
    opacity: 1;
    transform: none;
  }

}

.fadeInUpShort {
  animation-name: fadeInUpShort;
}

@keyframes fadeInUpShort {
  from {
    opacity: 0;
    transform: translate3d(0,20px,0);
  }


  to {
    opacity: 1;
    transform: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  .animated {
    animation: none;
    opacity: 1;
    transform: none;
  }


  .header__menu,.vimeo-wrapper iframe,.pm-icon::before,.pm-icon::after {
    transition: none;
  }


  html {
    scroll-behavior: auto;
  }

}

/* Source: assets/css/src/pages/home.css */
/* C11/C16: Home introduction, feature arrangement and the rendered animated-map rail. Shared cards/media/supporters are components. */
.section__about {
  display: flex;
  flex-wrap: wrap;
}

.about__img {
  width: 42%;
  position: relative;
  overflow: hidden;
}

.about__img img {
  right: 0;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.about__content {
  width: 58%;
  padding: 5rem 4.2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intro__text {
  padding-right: 17%;
}

.intro__text h1 {
  margin-bottom: 3rem;
}

.section__about .feature__list {
  --sif-about-feature-line: var(--sif2026-color-why-attend-feature-line);
  justify-content: space-evenly;
  align-items: flex-start;
}

.section__about .feature__item {
  flex: 1 1 140px;
  max-width: 210px;
  margin: 0 .5rem;
  padding: 2rem 0;
  text-align: center;
}

.section__about .feature__img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 78px;
  padding-bottom: 16px;
}

.section__about .feature__img img {
  display: block;
  max-height: 65px;
  width: auto;
  margin: 0 auto;
}

.section__about .feature__img::before {
  left: 50%;
  width: 82%;
  transform: translateX(-50%);
  background: linear-gradient(90deg,transparent,var(--sif-about-feature-line) 20%,#9ae3ef 50%,var(--sif-about-feature-line) 80%,transparent);
}

.section__about .feature__item p {
  text-align: center;
  letter-spacing: 0;
}

.section__about :is(.feature__number,.counter-value) {
  color: transparent;
  background: var(--sif-orange-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__about .i-txt {
  margin-top: .35rem;
  color: rgba(255,255,255,.94);
}

.section__globe {
  padding: 4rem 0 0;
}

.section__globe h2 {
  margin: 0;
}

.section__globe h2 span {
  color: var(--sif-navy);
}

.map__anim {
  margin: 2rem 0;
}

.map__anim img {
  width: 100%;
}

.flag__slider {
  list-style: none;
  padding: 1.5rem 0;
  background: rgba(255,255,255,.5);
}

.flag__slider.slick-slider {
  margin: 0;
}

.flag__slider .slick-dots {
  position: static;
  text-align: center;
  padding-top: 1.5rem;
}

.flag__slider .slick-dots li {
  background: transparent;
}

.flag__item {
  margin: 0 21px;
  padding: 5px;
  transition: .3s;
  cursor: pointer;
}

.flag__img {
  width: 80px;
  height: 50px;
  margin: 0 auto;
}

.flag__caption {
  font-size: 14px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding-top: .75rem;
}

@media (max-width:1650px) {
  .about__content {
    padding: 4rem 3rem 0;
  }


  .intro__text h1 {
    margin-bottom: 1.5rem;
  }

}

@media (max-width:1400px) {
  .about__content {
    padding: 3rem 2rem 1rem 3rem;
  }


  .intro__text {
    padding-right: 8%;
  }


  .intro__text h1 {
    max-width: 300px;
    margin-bottom: 1rem;
  }


  .section__globe {
    padding-top: 2.5rem;
  }


  .flag__slider {
    padding: 1rem 0;
  }


  .flag__item {
    margin: 0 1rem;
  }


  .flag__img {
    width: 70px;
    height: 44px;
  }


  .flag__caption {
    font-size: 12px;
  }

}

@media (max-width:1300px) {
  .about__content {
    padding: 3rem 1.5rem 1rem 2.5rem;
  }

}

@media (max-width:1199px) {
  .about__content {
    padding: 3rem 1.5rem 3rem 2rem;
  }


  .about__img img {
    width: auto;
    height: 100%;
  }

}

@media (max-width:992px) {
  .section__about {
    flex-direction: column-reverse;
  }


  .about__img,.about__content {
    width: 100%;
  }


  .about__img img {
    position: relative;
    width: 100%;
    height: auto;
  }


  .section__globe {
    padding-top: 2rem;
  }


  .section__about .about__img img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    object-fit: contain;
  }

}

@media (max-width:767px) {
  .section__about .feature__item {
    flex: 0 1 42%;
    max-width: none;
    margin: 0 4%;
  }

}

/* The superseded HTML pin map is commented out in the template and has no active CSS owner. */
.section__about .about__content {
  padding-block: var(--sif-section-space);
}

.section__about .intro__text {
  padding-right: 0;
}

.section__about .intro__text h1 {
  margin-bottom: 24px;
}

@media (min-width:993px) {
  .section__about .about__img {
    flex: 0 0 43%;
    width: 43%;
    overflow: hidden;
  }

  .section__about .about__content {
    flex: 0 0 57%;
    width: 57%;
  }

  .section__about .about__img img {
    display: block;
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    inset: auto;
    transform: none;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width:767px) {
  .section__about .about__img,.section__about .about__content {
    width: 100%;
  }


  .section__about .about__img {
    aspect-ratio: auto;
    height: auto;
  }


  .section__about .about__content {
    padding-inline: 20px;
  }


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


  .section__about .feature__item {
    width: auto;
    min-width: 0;
    margin: 0;
    max-width: none;
  }

}



/* Source: assets/css/src/pages/event-info.css */
/* C17/C19/C20: Event introduction, focus-sector list and organizer output. Accordion is a component. */
.intro__tabs {
  background: var(--sif-blue);
}

.tabs__lists {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

.tabs__lists a {
  display: block;
  padding: 1.25rem 20px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.tabs__lists a:hover {
  background: var(--sif-blue);
  color: #fff;
}

.intro__about__section,.focus__section,.organized__by {
  padding: var(--sif-section-space) 0;
}

.intro__about__section h1 {
  line-height: 48px;
  margin-bottom: 3rem;
}

.intro__about__section p {
  font-size: 20px;
  margin-bottom: 2rem;
}

.intro__speaker__item {
  position: relative;
  font-size: 16px;
}

.intro__speaker__item p {
  text-align: center;
}

.intro__speaker__image {
  position: absolute;
  top: 9.55%;
  left: 0;
}

.intro__speaker__item .motif {
  position: relative;
  z-index: 0;
  opacity: .4;
}

.intro__speaker__item .motif-1 {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .5;
}

.int-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.focus__wrap {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.focus__wrap > li {
  width: 25%;
}

.organized__by {
  position: relative;
}

.organized__by::before {
  content: none;
}

.organized__by .section__header {
  margin-bottom: 2rem;
}

.organized__by .heading h1 {
  line-height: .8;
}

.global__supporters {
  padding: var(--sif-section-space) 0;
}

.global__supporters .section__header {
  margin-bottom: 2rem;
}

.global_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:1700px) {
  .intro__about__section p {
    font-size: 18px;
  }

}

@media (max-width:1500px) {
  .tabs__lists a,.intro__about__section p {
    font-size: 16px;
  }

}

@media (max-width:1400px) {
  .tabs__lists a {
    font-size: 14px;
  }

}

@media (max-width:1100px) {
  .intro__tabs {
    display: none;
  }


  .focus__wrap > li {
    width: 33%;
  }

}

@media (max-width:480px) {
  .intro__speaker__item {
    margin-bottom: 1.5rem;
  }


  .intro__about__section h1 {
    line-height: 28px;
    margin-bottom: 1.5rem;
  }


  .intro__about__section p {
    margin-bottom: 1.5rem;
  }

}

/* C17: Mot1/Mot2 are decorative overlay images, not the ACF event photograph. */
.intro__speaker__item .motif {
  display: none;
}

.intro__speaker__item .intro__speaker__image {
  position: relative;
  inset: auto;
}

.intro__speaker__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.intro__about__section h1 {
  line-height: 1.2;
  margin-bottom: 24px;
}

.intro__about__section p {
  font-size: clamp(16px,1.2vw,20px);
}

.intro__about__section .row {
  row-gap: 24px;
}

.focus__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(100%,180px),1fr));
  gap: 24px;
}

.focus__wrap > li {
  width: auto;
  min-width: 0;
}

.focus__wrap .focus__speaker__item {
  height: auto;
  margin-top: 0;
  padding: 0;
}

.focus__wrap .focus__speaker__image {
  width: 100%;
  height: auto;
  aspect-ratio: 250/274;
}

.focus__wrap .focus__speaker__image img {
  height: 100%;
  object-fit: contain;
}

.focus__wrap .focus__speaker__caption {
  width: 100%;
}

.organized__by .heading h1 {
  line-height: 1.2;
}

.tabs__lists {
  flex-wrap: wrap;
  justify-content: center;
}

.tabs__lists a {
  min-height: 44px;
  padding: 12px 16px;
}

/* Source: assets/css/src/pages/exhibition.css */
/* C12/C22: Exhibition introduction and why-exhibit feature layout. Packages remain held. */
.section__info {
  padding: var(--sif-section-space) 0;
}

.section__info .section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.section__info h1 {
  margin: 0;
}

.section__info .heading span {
  display: block;
  width: 76%;
  margin: 1.5rem auto 0;
  font-size: 20px;
}

.info__slider {
  margin: 5rem 0;
}

.info__slider .slick__navs {
  display: flex;
  width: 6%;
  margin: 0 0 2rem auto;
}

.exhibitor__item {
  opacity: .5;
  margin: 6rem 0;
  transform: scale(.9);
  transition: opacity var(--sif-motion-enter),transform var(--sif-motion-enter);
  background: var(--sif-panel);
  border-color: var(--sif-divider);
  box-shadow: var(--sif-panel-shadow);
}

.exhibitor__item.slick-current {
  transform: scale(1.15);
  opacity: 1;
  z-index: 9;
}

.exhibitor__item.slick-current .exhibitor__image {
  border: 3px solid var(--sif-blue);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,.7);
}

.exhibitors__wrap {
  position: relative;
}

.exhibitors__wrap::before,.exhibitors__wrap::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  background: rgba(255,255,255,.52);
  box-shadow: 0 0 200px #f7f7f7;
}

.exhibitors__wrap::before {
  z-index: 9;
}

.exhibitors__wrap::after {
  left: auto;
  right: 0;
}

.exhibit__content {
  padding: 15% 28% 0 12%;
}

.exhibit__content .heading h1 {
  line-height: .8;
  background: #f7f7f7;
}

.exhibit__content .section__header {
  margin-bottom: 2rem;
}

.exhibit__content p {
  font-size: 20px;
  line-height: 26px;
}

.exhibit__category {
  padding-left: 12%;
}

.exhibit__category .feature__item {
  width: 22%;
  padding: 5rem 0;
}

.exhibit__category .i-txt {
  color: #8f9493;
}

@media (max-width:1700px) {
  .section__info .heading span,.exhibit__content p {
    font-size: 18px;
  }


  .exhibit__image {
    position: relative;
    height: 100%;
    overflow: hidden;
  }


  .exhibit__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

}

@media (max-width:1500px) {
  .section__info .heading span {
    font-size: 16px;
  }

}

@media (max-width:1400px) {
  .exhibit__content {
    padding: 15% 10% 0 12%;
  }


  .exhibit__content p {
    font-size: 16px;
  }


  .exhibit__category .feature__item {
    width: 25%;
  }

}

@media (max-width:1100px) {
  .info__slider .slick__navs {
    width: 8%;
  }

}

@media (max-width:992px) {
  .info__slider {
    margin: 0;
  }


  .section__info .heading span {
    width: 100%;
  }


  .exhibitors__wrap::before,.exhibitors__wrap::after {
    content: none;
  }


  .exhibit__image img {
    position: static;
    width: 100%;
    height: auto;
  }


  .exhibitor__item,.exhibitor__item.slick-current {
    width: calc(100vw - 64px);
    margin-block: 24px;
    transform: none;
  }
  .exhibitor__image img { width: 100%; height: auto; }
}

@media (max-width:480px) {
  .exhibit__content .heading h1 {
    padding-right: 1rem;
  }


  .exhibit__content {
    padding: 2rem 1rem 0;
  }


  .exhibit__category {
    padding: 0 1rem;
  }


  .exhibit__category .feature__item {
    width: 44%;
    padding: 1.5rem 0;
  }

}

.info__slider .slick__navs {
  width: auto;
  justify-content: flex-end;
}

.exhibit__content {
  padding: clamp(24px,5vw,72px);
}

.exhibit__content .heading h1 {
  background: var(--sif-deep-blue);
  line-height: 1.2;
}

.exhibit__category .i-txt {
  color: var(--sif-white);
  line-height: 1.4;
}

.exhibitors__wrap::before,.exhibitors__wrap::after {
  background: rgba(20,36,95,.3);
  box-shadow: none;
  pointer-events: none;
}

/* Source: assets/css/src/pages/contact.css */
/* C37: Contact information columns and form/map sections. CF7 owns validation and submission. */
.contact__links {
  padding: var(--sif-section-space) 0;
  text-align: center;
}

.contact__links .row > [class*="col-"] {
  min-width: 0;
  padding: 0 30px;
}

.contact__links h2 {
  text-transform: none;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.contact__links p {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

.contact__links p,.contact__links p a {
  font-size: 15px;
  line-height: 1.55;
}

.contact__links p a {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact__links p a[href^="mailto:"] {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  word-break: break-all;
  line-height: 1.5;
}

.contact__item {
  min-height: 150px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1rem;
}

.add__border {
  border: solid var(--sif-divider);
  border-width: 0 1px 0 0;
}

.add__border:last-child {
  border: 0;
}

.form__section {
  padding: var(--sif-section-space) 0;
  overflow: hidden;
  position: relative;
}

.form__header {
  text-align: center;
  margin-bottom: 3rem;
}

.form__header h1 {
  text-transform: none;
  margin-bottom: 0;
}

.form__header p {
  font-size: 24px;
  max-width: 550px;
  letter-spacing: -.5px;
  display: block;
  margin: 0 auto;
}

.c-map__section {
  height: 780px;
}

.c-map__section iframe {
  width: 100%;
  height: 100%;
}

@media (min-width:1200px) {
  .contact__links .container {
    width: 100%;
    max-width: 1600px;
    padding: 0 3%;
  }


  .contact__links .row > .col-md-4 {
    flex: 0 0 30%;
    max-width: 30%;
    padding: 0 18px;
  }


  .contact__links .row > .col-md-4:nth-child(2) {
    flex-basis: 40%;
    max-width: 40%;
  }


  .contact__links p {
    padding: 0;
  }


  .contact__links p a[href^="mailto:"] {
    display: inline-block;
    width: auto;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: 14px;
  }

}

@media (max-width:1500px) {
  .c-map__section {
    height: 500px;
  }

}

@media (max-width:1199px) {
  .contact__links p a[href^="mailto:"] {
    display: inline-block;
    width: auto;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: 16px;
    letter-spacing: -.15px;
  }


  .contact__links .row > .col-md-4 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 30px 20px;
  }


  .contact__links .add__border {
    border-right: 0;
    border-bottom: 1px solid var(--sif-divider);
  }


  .contact__links .add__border:last-child {
    border-bottom: 0;
  }


  .contact__links p {
    padding: 0;
  }

}

@media (max-width:992px) {
  .form__header p {
    font-size: 20px;
  }


  .c-map__section {
    height: 300px;
  }


  .contact__item {
    min-height: 100px;
  }


  .contact__box img {
    width: 60px;
  }

}

@media (max-width:991px) {
  .contact__links h2 {
    font-size: 20px;
  }


  .contact__links p,.contact__links p a {
    font-size: 14px;
  }

}

@media (max-width:480px) {
  .form__header {
    margin-bottom: 1rem;
  }


  .form__header p {
    font-size: 18px;
  }


  .contact__links h2 {
    font-size: 19px;
    margin-bottom: 1rem;
  }


  .contact__links p {
    margin-bottom: 1.5rem;
  }


  .contact__links p,.contact__links p a {
    line-height: 1.5;
  }

}

@media (max-width:420px) {
  .contact__links .row > .col-md-4 {
    padding-left: 8px;
    padding-right: 8px;
  }


  .contact__links p a[href^="mailto:"] {
    font-size: 16px;
    letter-spacing: -.3px;
  }

}

/* Source: assets/css/src/pages/registration.css */
/* C36/C41: In-flow header provides the same safe offset for native and iframe routes. */
.sif-registration-content {
  color: var(--sif-white);
}

.sif-registration-content .container {
  max-width: 1200px;
  padding-inline: clamp(16px,4vw,48px);
}

.sif-registration-content iframe {
  max-width: 100%;
}

body:has(#sif-registration-page) .inner__hero .hero__caption {
  max-width: 100%;
}

body:has(#sif-registration-page) .inner__hero .breadcrumb {
  flex-wrap: wrap;
}

/* Source: assets/css/src/pages/programme.css */
/* C21/C35: Programme timeline and date navigation. Bootstrap owns tab activation and JS owns pagination. */
.section__programme {
  padding: 8rem 0;
  position: relative;
}

.section__programme::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--sif-cyan);
}

.section__programme .section__header {
  position: relative;
  width: calc(70% + 2px);
  margin-left: auto;
  border-left: 2px solid var(--sif-blue);
  padding: 0 0 4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sif-panel);
  border-color: rgba(154,227,239,.38);
  box-shadow: var(--sif-panel-shadow);
}

.section__programme .section__header::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--sif-teal);
  top: -15px;
  left: -10px;
}

.section__programme .heading {
  background: #fff;
  position: relative;
  z-index: 9;
}

.section__programme .heading h1 {
  margin: 0;
  background: #fff;
  width: max-content;
  padding-right: 5rem;
  line-height: .8;
}

.section__programme .heading span {
  font-size: 24px;
  text-transform: uppercase;
}

.section__programme .section__footer {
  position: relative;
  width: calc(70% + 2px);
  margin-left: auto;
  border-left: 2px solid var(--sif-blue);
  padding: 4rem 0 0 3rem;
}

.section__programme .section__footer::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--sif-teal);
  bottom: 0;
  left: -11px;
}

.dates__tab {
  text-align: right;
  width: calc(70% + 2px);
  margin-left: auto;
  border-left: 2px solid var(--sif-blue);
  padding: 0 0 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.dates__tab .nav-link {
  font-size: 20px;
  color: #999;
  margin-left: 2rem;
  border: 0;
  background: transparent;
}

.dates__tab .nav-link:hover,.dates__tab .nav-link.active {
  color: var(--sif-blue);
  border-bottom: 3px solid;
}

.programme_schedules {
  margin: 0;
  padding: 0;
  list-style: none;
}

.programme__box {
  display: flex;
  flex-wrap: wrap;
}

.programme_date {
  width: 30%;
  border-right: 2px solid var(--sif-blue);
}

.prg__details {
  position: relative;
  width: 70%;
  border: 1px solid var(--sif-cyan);
  border-left: 0;
  padding: 2rem;
  margin-bottom: 1.75rem;
  transition: .3s;
}

.prg__details h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  padding-right: 30%;
  margin-bottom: 1.5rem;
  text-transform: none;
}

.prg__details p {
  font-size: 20px;
}

.prg__details:hover {
  background: var(--sif-teal);
  box-shadow: 0 0 10px #ccc;
}

.sp-avator {
  position: absolute;
  right: 30px;
  top: 25px;
}

.sp-avator img {
  width: 45px;
  border-radius: 100%;
}

.prg__start__time {
  width: 70%;
  margin: 0 0 0 auto;
  font-size: 36px;
  font-weight: 700;
}

.prg__total__time {
  position: relative;
  width: 70%;
  margin: 0 0 0 auto;
  padding-left: 40px;
  font-size: 25px;
}

.prg__total__time::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: url(../images/css-img/clock.png) no-repeat;
  background-size: contain;
}

@media (max-width:1700px) {
  .prg__details p {
    font-size: 18px;
  }


  .prg__start__time {
    font-size: 24px;
    margin-top: 7px;
  }


  .prg__total__time {
    font-size: 18px;
    padding-top: 5px;
  }

}

@media (max-width:1400px) {
  .section__programme .section__header {
    padding-left: 2rem;
  }


  .section__programme .heading span {
    font-size: 16px;
  }


  .prg__details h2 {
    font-size: 24px;
  }


  .prg__details p {
    font-size: 16px;
  }


  .prg__total__time {
    font-size: 16px;
    width: 100%;
  }


  .dates__tab .nav-link {
    font-size: 15px;
    margin: 0;
  }

}

@media (max-width:480px) {
  .section__programme {
    padding: 3rem 0;
  }


  .section__programme .section__header {
    width: 100%;
    border: 0;
    padding: 0;
    flex-wrap: wrap;
  }


  .section__programme .section__header::before {
    content: none;
  }


  .section__programme .heading {
    width: 100%;
    margin-bottom: 17px;
  }


  .section__programme .heading h1 {
    padding-right: 1rem;
  }


  .section__programme .heading span {
    font-size: 15px;
  }


  .dates__tab {
    text-align: right;
    width: 100%;
    border: 0;
    margin: 1.5rem 0;
    padding: 0;
    justify-content: flex-start;
  }


  .dates__tab li {
    width: 50%;
  }


  .dates__tab .nav-link {
    font-size: 12px;
    margin-right: 2rem;
  }


  .programme_date {
    width: 100%;
    border: 2px solid var(--sif-blue);
    padding: 1rem;
    margin-top: .5rem;
  }


  .prg__details {
    width: 100%;
    border: 1px solid var(--sif-cyan);
    padding: 1rem 1rem 3rem;
    margin: 0;
  }


  .prg__details h2 {
    font-size: 20px;
    margin-bottom: .5rem;
    padding: 0;
  }


  .prg__start__time {
    width: 100%;
    font-size: 20px;
  }


  .prg__total__time {
    width: 100%;
    font-size: 15px;
    margin-top: 5px;
  }


  .section__programme .section__footer {
    padding: 4rem 0 0 6rem;
    margin: 0;
  }

}

.section__programme {
  padding-block: var(--sif-section-space);
}

.section__programme .heading,.section__programme .heading h1 {
  background: transparent;
}

.section__programme .heading h1 {
  width: auto;
  padding-right: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.section__programme .section__header {
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
}

.dates__tab {
  flex-wrap: wrap;
  gap: 8px;
}

.dates__tab .nav-link {
  min-height: 44px;
  margin-left: 0;
  color: var(--sif-white);
}

.dates__tab .nav-link.active {
  color: var(--sif-cyan);
}

.section__programme .section__header > * {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.section__programme .dates__tab .nav-link.active {
  background: var(--sif-deep-blue);
  color: var(--sif-cyan);
  border-color: var(--sif-cyan);
}

/* Source: assets/css/src/pages/speakers.css */
/* C14/C35: Home and full-page speaker list layout, including load-more. Card anatomy is shared. */
.section__speakers {
  padding: 5rem 0;
}

.section__speakers.page__section {
  padding: var(--sif-section-space) 0;
}

.section__speakers .section__cta {
  margin: 3rem auto 0;
}

.speakers .container {
  padding: 0 8%;
}

.speaker__header {
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.speaker__header h2 {
  margin: 0;
}

.speaker_list {
  list-style: none;
  margin: 0;
  padding: 3rem 0 0;
  display: flex;
  flex-wrap: wrap;
}

.speaker_list > li {
  width: 20%;
}

.page__section .speaker__item {
  margin-bottom: 3rem;
}

.section__speakers .slick-prev,.section__speakers .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.section__speakers .slick-prev {
  left: -30px;
}

.section__speakers .slick-next {
  right: -30px;
}

/* Slick assigns inline display to dots; the confirmed speaker owner intentionally hides them. */
.speaker_list .slick-dots {
  bottom: -60px;
  text-align: center;
}

@media (min-width:1400px) and (max-width:1500px) {
  .speakers .container {
    padding: 0 4%;
  }

}

@media (max-width:1400px) {
  .section__speakers:not(.page__section) {
    padding: 3rem 0;
  }


  .speaker_list {
    padding-top: 2.5rem;
  }

}

@media (max-width:1199px) {
  .speakers .container {
    padding: 0 3%;
  }


  .speaker_list {
    padding-top: 2rem;
  }


  .speaker_list > li {
    width: 25%;
  }

}

@media (max-width:992px) {
  .speaker_list > li {
    width: 33%;
  }

}

@media (max-width:767px) {
  /* Home slides contain a pair of speakers; keep that pair on one compact row. */
  .section__speakers:not(.page__section) .speakers .container {
    padding-inline: var(--sif-gutter);
  }

  .js-speakersSlder {
    padding-top: 24px;
    padding-bottom: 64px;
  }

  .js-speakersSlder > li,
  .js-speakersSlder .slick-slide {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
  }

  .js-speakersSlder .speaker__item {
    min-width: 0;
    min-height: 0;
    padding: 0;
    font-size: 15px;
    background: var(--sif-panel);
    border: 1px solid var(--sif-divider);
    border-radius: 8px;
    overflow: hidden;
  }

  .js-speakersSlder .speaker__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
  }

  .js-speakersSlder .speaker__caption {
    width: 100%;
    max-width: 100%;
    padding: 14px 10px;
    overflow-wrap: normal;
  }

  .js-speakersSlder .spaker__name {
    font-size: 16px;
  }

  .section__speakers .js-speakersSlder :is(.slick-prev,.slick-next) {
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    transform: none;
    border-radius: 50%;
  }

  .section__speakers .js-speakersSlder .slick-prev { left: calc(50% - 52px); }
  .section__speakers .js-speakersSlder .slick-next { right: calc(50% - 52px); }
  .js-speakersSlder :is(.slick-prev,.slick-next):focus-visible {
    outline: 2px solid var(--sif-white);
    outline-offset: 3px;
  }

  .speaker_list .slick-dots {
    display: none !important;
  }


  .speaker_list > li {
    width: 100%;
  }


  .page__section .speaker_list > li {
    width: 33%;
  }


  .section__speakers .slick-prev {
    left: 0;
  }


  .section__speakers .slick-next {
    right: 0;
  }

}

@media (max-width:480px) {
  .section__speakers.page__section .heading h1 {
    line-height: 1;
  }


  .page__section .speaker_list > li {
    width: 100%;
  }

}

@media (max-width:1100px) {
  /* One portrait frame for every home speaker, including mixed source ratios. */
  .js-speakersSlder .speaker__image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .js-speakersSlder .speaker__image img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .page__section .speaker_list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(min(100%,200px),1fr));
    gap: 12px;
  }
  .page__section .speaker_list > li { width: 100%; min-width: 0; }
}

/* Keep the disabled loading button readable; its old pseudo-image URL is missing. */
.section__speakers .load-more-request { opacity: .65; cursor: wait; }
.section__speakers .load-more-request::after { content: none; }

/* These existing editorial photos place the speaker outside the image centre. */
.js-speakersSlder .speaker__image img[src$="/Maciej-Bialko-scaled.jpg"] {
  object-position: left top;
}

.js-speakersSlder .speaker__image img[src$="/Nivruti-Rai_Photograph-scaled.jpg"] {
  object-position: right top;
}

/* Source: assets/css/src/pages/plan.css */
/* C26/C27/C28: Sharjah introduction, map, transport, visa and healthy tourism rail. No floor-plan or dormant hotel card catalogue. */
.sharjah__section {
  display: flex;
  height: auto;
}

.imgl-wrap {
  width: 50%;
  position: relative;
}

.imgl-wrap img {
  width: 100%;
}

.imgl-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.imgl-txt h1 {
  font-size: 130px;
  line-height: 105px;
  position: relative;
}

.imgl-txt h1 span {
  font-size: 112px;
  text-transform: uppercase;
}

.imgl-wrap::before {
  content: none;
}

.imgl-textwrap {
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
}

.imgl-textwrap p {
  font-size: 20px;
  margin-bottom: 0;
}

.map__section {
  position: relative;
}

.map__section::after {
  content: none;
}

.map__image {
  position: relative;
  border-right: 10px solid var(--sif-cyan);
  height: 100%;
}

.map__image img {
  width: 100%;
}

.map__content {
  position: relative;
  padding: clamp(24px,4vw,64px);
  z-index: 1;
}

.map__content .section__header {
  margin-bottom: 24px;
}

.map__content .heading {
  position: relative;
  z-index: 9;
}

.map__content h1 {
  margin: 0;
  position: relative;
  background: #f7f7f7;
  z-index: 99;
  width: max-content;
  padding-right: 0;
  line-height: .9;
}

.map__content .heading span {
  font-size: 24px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.map__content .heading::after {
  content: "";
  position: absolute;
  left: 50px;
  bottom: 0;
  right: 0;
  height: 1px;
  background: var(--sif-teal);
  opacity: .5;
  z-index: -1;
}

.map__content p {
  font-size: clamp(16px,1.3vw,20px);
  padding-right: 0;
}

.share__event {
  position: relative;
  display: block;
  padding: 1.5rem 4.75rem;
  color: var(--sif-cyan);
  transition: color var(--sif-motion-fast);
  font-size: 20px;
  margin-top: 2rem;
}

.share__event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 60px;
  background: url(../images/plan/location.png) no-repeat;
  background-size: contain;
}

.share__event:hover,.share__event:focus {
  color: var(--sif-white);
}

.transport__section,.section__visa,.section__tourism {
  padding: var(--sif-section-space) 0;
}

.transport__section .section__header {
  padding-bottom: 2rem;
  text-align: center;
}

.transport__section h1 {
  margin: 0 0 1.5rem;
}

.transport__section .heading p {
  font-size: 20px;
  max-width: 550px;
  display: block;
  margin: 0 auto;
}

.transport__wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.transport__content {
  margin: 5rem 0;
}

.transport__item {
  text-align: center;
  margin: 0 6%;
}

.transport__item p {
  font-size: 24px;
  letter-spacing: -1px;
}

.transport__item .item__box {
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1rem;
}

.section__visa {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  align-items: center;
  gap: clamp(24px,4vw,64px);
  padding-inline: max(var(--sif-gutter),calc((100% - 1440px)/2));
}

.section__visa > .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.section__visa .row { margin: 0; }
.section__visa .col-lg-6 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}

.section__visa .section__content {
  padding: 4rem 0;
}

.section__visa .section__content p {
  font-size: 20px;
  line-height: 28px;
}

.section__visa .section__header {
  margin-bottom: 2rem;
}

.section__visa .heading {
  position: relative;
  z-index: 9;
}

.section__visa .heading h1 {
  position: relative;
  line-height: 1;
  margin: 0;
}

.section__visa .heading span {
  font-size: 24px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section__visa .heading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--sif-blue);
  left: -100%;
  top: 0;
  z-index: -1;
  transform: translate(-3%,35px);
}

.visalist__card {
  min-width: 0;
  padding: clamp(28px,4vw,56px);
  background: var(--sif-visa-gradient);
  color: var(--sif-ink);
  border-radius: 8px;
}

.visalist__card .circlelist { margin-bottom: 0; }
.visalist__card .list__item { color: inherit; }
.visalist__card a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: .2em;
}
.visalist__card a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.visalist__card .list__item::before {
  border-color: currentColor;
}





.tourism__slider {
  padding: 2rem 0;
}

.tourism__item {
  transition: .5s;
  padding: 2.5rem;
  margin: 2rem 3.5rem;
  background: #fff;
  display: flex;
  width: 690px;
}

.tourism__item:is(.slick-center,.slick-current) {
  box-shadow: 10px 10px 20px rgba(0,0,0,.1);
  transform: scale(1.1);
}

.tourism__wrap {
  position: relative;
  padding-bottom: 64px;
}

.js-tourismSlider :is(.slick-prev,.slick-next) {
  position: absolute;
  top: auto;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: none;
  z-index: 2;
}
.js-tourismSlider .slick-prev { left: calc(50% - 52px); }
.js-tourismSlider .slick-next { right: calc(50% - 52px); }
.js-tourismSlider :is(.slick-prev,.slick-next):focus-visible {
  outline: 2px solid var(--sif-white);
  outline-offset: 3px;
}

.tourism__wrap::before,.tourism__wrap::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 15%;
  z-index: 9;
  background: linear-gradient(to right,#f7f7f7,rgba(247,247,247,0));
}

.tourism__wrap::after {
  left: auto;
  right: 0;
  background: linear-gradient(to right,rgba(247,247,247,0),#f7f7f7);
}

.tourism__wrap .slick-dots {
  bottom: -5rem;
  text-align: center;
}

.tourism__wrap .slick-dots li {
  background: transparent;
}

.tourism__box {
  display: flex;
}

.tourism__box .box-anchor {
  padding: 1.15rem 2.5rem;
  font-size: 16px;
  font-weight: 600;
}

.tourism__img {
  position: relative;
  width: 283px;
  height: 115px;
  overflow: hidden;
}

.tourism__cta {
  width: 54%;
  margin: 1.75rem 0 0;
  text-align: right;
}

@media (max-width:1700px) {
  .imgl-textwrap p {
    font-size: 18px;
  }


  .imgl-txt {
    transform: translate(-56%,-55%);
  }


  .imgl-txt h1 {
    font-size: 110px;
    line-height: 95px;
  }


  .imgl-txt h1 span {
    font-size: 110px;
  }


  .imgl-wrap::before {
    width: 69%;
  }


  .map__image {
    overflow: hidden;
    width: 100%;
  }




  .transport__section .heading p {
    font-size: 18px;
  }


  .transport__item p {
    font-size: 20px;
  }


  .section__visa .section__content {
    padding: 0;
  }


  .section__visa .section__content p {
    font-size: 18px;
  }



}

@media (max-width:1500px) {
  .imgl-textwrap p,.transport__section .heading p {
    font-size: 16px;
  }




  .transport__item p {
    font-size: 18px;
  }




  .section__visa .section__content p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 1rem;
  }

}

@media (max-width:1400px) {
  .tourism__slider {
    padding: 2rem 0 5rem;
  }


  .tourism__box .box-anchor {
    height: auto;
  }

}

@media (max-width:1100px) {
  .imgl-textwrap {
    width: 45%;
    padding-left: 5%;
  }


  .imgl-textwrap p {
    margin-bottom: 1rem;
  }


  .imgl-txt h1,.imgl-txt h1 span {
    font-size: 70px;
  }


  .imgl-txt h1 {
    line-height: 65px;
  }


  .imgl-wrap::before {
    background-position: center;
    background-size: contain;
  }




  .share__event {
    font-size: 18px;
    margin-top: 2rem;
    padding: .5rem 3.75rem;
  }


  .share__event::before {
    width: 45px;
    height: 45px;
  }




  .transport__content {
    margin: 3rem 0 5rem;
  }




  .section__visa .heading::after {
    content: none;
  }


  .tourism__item {
    width: 600px;
  }


  .tourism__wrap .slick-dots {
    bottom: -3rem;
  }


  .tourism__slider {
    padding: 0 0 1rem;
  }

}

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

  .sharjah__section {
    flex-wrap: wrap;
  }


  .imgl-wrap {
    width: 100%;
  }


  .imgl-txt {
    transform: translate(-50%,-50%);
    max-width: calc(100% - 40px);
  }

  .imgl-textwrap {
    width: 100%;
    padding: 2rem;
  }


  .imgl-txt h1,.imgl-txt h1 span {
    font-size: clamp(40px,12vw,110px);
  }


  .imgl-txt h1 {
    line-height: 1.05;
  }


  .map__image img {
    position: static;
    height: auto;
    width: 100%;
  }




  .transport__content {
    margin: 1rem 0 0;
  }


  .transport__item .item__box {
    height: 100px;
    width: 100px;
    margin: 0 auto .5rem;
  }



}

@media (max-width:480px) {
  .imgl-wrap::before {
    content: none;
  }




  .map__image {
    height: 350px;
  }


  .section__visa .section__header {
    margin-bottom: 1rem;
  }


  .tourism__cta {
    width: 100%;
    text-align: center;
  }


  .tourism__img {
    margin: 0 auto;
  }


  .tourism__box {
    flex-wrap: wrap;
    text-align: center;
  }


  .tourism__box .box-anchor {
    padding: .5rem 1.5rem;
    font-size: 14px;
    font-weight: 400;
  }

}

.tourism__item {
  background: var(--sif-panel-gradient);
  max-width: calc(100vw - 64px);
}

.tourism__wrap::before,.tourism__wrap::after {
  background: none;
  pointer-events: none;
}

.tourism__item:is(.slick-center,.slick-current) {
  transform: none;
}

.map__content h1 {
  font-size: clamp(26px,2.5vw,40px);
  width: auto;
  max-width: 100%;
  line-height: 1.2;
  background: transparent;
}

@media (max-width:767px) {
  .transport__wrap:not(.slick-initialized) {
    flex-wrap: wrap;
    gap: 20px;
  }


  .transport__wrap:not(.slick-initialized) .transport__item {
    flex: 0 1 120px;
    margin: 0;
  }

}

/* Source: assets/css/src/pages/gallery.css */
/* C25: Existing gallery tab markup, thumbnails and video overlay. Fancybox owns the lightbox. */
.section__gallery {
  padding: var(--sif-section-space) 0;
  position: relative;
}

.section__gallery .heading {
  background: #fff;
}

.section__gallery .heading h1 {
  line-height: .8;
}

.section__gallery .heading h1 span {
  font-size: 36px;
}

.gallery__tab {
  margin: 4rem 0 0;
  padding-bottom: 3rem;
  display: flex;
}

.gallery__tab li {
  list-style: none;
}

.gallery__tab a {
  font-size: 20px;
  color: #999;
  margin: 0 2rem 0 0;
  transition: .2s;
}

.gallery__tab .tab-active a,.gallery__tab a:is(.active,:focus,:hover) {
  color: var(--sif-blue);
  border-bottom: 3px solid;
}

.tabs-stage .tab-content {
  display: flex;
  flex-wrap: wrap;
}

.tabs-stage .tab-content a {
  width: 25%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: .4s;
}

.tabs-stage .type__video {
  position: relative;
  overflow: hidden;
}

.tabs-stage .type__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9;
}

.tabs-stage .type__video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80px;
  height: 80px;
  background: url(../images/gallery/video-icon.png) no-repeat;
  z-index: 10;
}

.tabs-stage .tab-content img {
  width: 100%;
  height: 266px;
  object-fit: cover;
}

@media (max-width:1700px) {
  .gallery__tab {
    margin-top: 3rem;
    padding-bottom: 2rem;
  }

}

@media (max-width:1500px) {
  .gallery__tab {
    margin-top: 2rem;
  }

}

@media (max-width:1100px) {
  .gallery__tab a {
    font-size: 18px;
  }

}

@media (max-width:992px) {



  .tabs-stage .tab-content img {
    height: auto;
    aspect-ratio: 4/3;
    object-fit: contain;
    background: var(--sif-panel);
  }

}

@media (max-width:480px) {
  .gallery__tab {
    margin-top: 1rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }


  .gallery__tab li {
    width: 50%;
    text-align: center;
    padding: .5rem;
    background: var(--sif-blue);
    color: #fff;
    border: 2px solid #fff;
  }


  .gallery__tab li a,.gallery__tab .tab-active a {
    font-size: 16px;
    color: #fff;
  }


  .tabs-stage .tab-content a {
    width: 50%;
  }


  .tabs-stage .tab-content img {
    height: auto;
  }

}

.section__gallery .heading {
  background: transparent;
}

.section__gallery .heading h1 {
  line-height: 1.2;
}

.gallery__tab {
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 0;
  margin-top: 24px;
}

.gallery__tab a {
  display: inline-block;
  min-height: 44px;
  margin-right: 12px;
  color: var(--sif-white);
}

.gallery__tab .tab-active a {
  color: var(--sif-cyan);
}

@media (max-width:767px) {
  .gallery__tab li {
    flex: 1 1 140px;
    width: auto;
    background: var(--sif-panel);
    border-color: var(--sif-divider);
  }


  .gallery__tab li a {
    margin: 0;
  }

}

/* Source: assets/css/src/pages/media-press.css */
/* C32: Media/Press split news carousel and linked gallery. Article layout is in news.css. */
.section__newsandpr {
  padding: 10rem 0 5rem;
}

.mgallery__section {
  padding: 5rem 0 6rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.feature__gallery {
  margin-bottom: 2px;
  display: flex;
  flex-wrap: wrap;
}

.gallery__content {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.gallery__content p {
  font-size: 20px;
  padding-right: 15%;
  margin-bottom: 7rem;
}

.gallery__big {
  padding-left: 5%;
  width: 50%;
}

.gallery__big img {
  width: 100%;
}

.gallery__list {
  display: flex;
  flex-wrap: wrap;
}

.gallery__item {
  width: 25%;
  float: right;
}

.gallery__item .type__img img {
  border-right: 2px solid #fff;
  width: 100%;
  height: 265px;
  object-fit: cover;
}

.gallery__item .type__video {
  position: relative;
  border-right: 2px solid #fff;
}

.gallery__item .type__video img {
  width: 100%;
  position: relative;
}

.gallery__item .type__video a {
  position: relative;
  display: block;
}

.gallery__item .type__video a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  width: 80px;
  height: 80px;
  transform: translate(-50%,-50%);
  background: url(../images/mediapress/vid-icon.png) no-repeat;
}

.gallery__item .type__video a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.gallery__item:nth-child(4n) .gallery__img {
  border-right: 0;
}

.top__supporters.media__logos {
  padding: 4rem 0 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.media__logos .badge {
  padding: .4rem;
}

.media__logos .supporter__header {
  padding: 5rem 0 1rem;
}

.media__logos .supporter__box p {
  margin-top: 1.25rem;
}

@media (max-width:1700px) {
  .gallery__content p {
    font-size: 18px;
    margin-bottom: 5rem;
  }

}

@media (max-width:1500px) {
  .gallery__content p {
    font-size: 16px;
    margin-bottom: 2rem;
  }

  .section__newsandpr {
    padding: 5rem 0 3rem;
  }

  .mgallery__section {
    padding: 0 0 3rem;
  }

  .press__logo .more__supporters {
    padding: 0;
  }

  .top__supporters.media__logos {
    padding: 2rem 0 0;
  }

  .media__logos .supporter__header {
    padding: 0;
  }

  .media__logos .supporter__box p {
    font-size: 12px;
  }

}

@media (max-width:992px) {
  .gallery__item .type__img img {
    height: 158px;
  }

  .section__newsandpr {
    padding: 0 0 1rem;
  }


  .gallery__item .gallery__img img {
    height: auto;
    aspect-ratio: 4/3;
    object-fit: contain;
  }

}

@media (max-width:480px) {

  .gallery__content {
    width: 100%;
    margin-bottom: 1rem;
  }

  .gallery__big {
    padding: 0;
    width: 100%;
  }

  .gallery__item {
    width: 50%;
  }

  .gallery__item .type__img img {
    border: 2px solid #fff;
  }

  .gallery__item .type__video img {
    border: 2px solid #fff;
  }

  .top__supporters.media__logos .container {
    padding: 0 15px;
  }

  .media__logos .supporter__box {
    width: auto;
  }

}

.section__newsandpr,.mgallery__section {
  padding-block: var(--sif-section-space);
}

.media__logos .section__header,.press__logo .section__header {
  flex-wrap: wrap;
  gap: 16px;
}

.media__logos .badge,.press__logo .badge {
  white-space: normal;
  overflow-wrap: anywhere;
}

/* C32: Text sets the row height; the image fills that frame at every slide. */
.press__wrapper {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  background: var(--sif-panel-gradient);
  color: var(--sif-text);
}

.press__content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding: clamp(20px,2.5vw,40px);
}

.press__content .section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.press__content h2 {
  margin: 0;
  font-size: clamp(24px,2vw,34px);
}

.press__content .news__list {
  min-width: 0;
}

.press__content .news__item {
  padding-bottom: 0;
}

.press__content .news__list h4 {
  margin: 0 0 24px;
  font-size: clamp(20px,1.5vw,26px);
  line-height: 1.35;
}

.press__content .news__list p {
  font-size: var(--sif-body-size);
  padding: 0;
}

.press__content .news__list time {
  position: static;
  display: block;
  margin-top: 24px;
  font-size: 14px;
}

.press__wrapper .js-presstxt {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 clamp(20px,2.5vw,40px) 28px;
}

.press__wrapper .slick-arrow {
  position: relative;
  inset: auto;
  transform: none;
  margin: 0;
  width: 44px;
  height: 44px;
}

.press__wrapper .slick-arrow::before {
  border-left-color: var(--sif-text);
}

.press__wrapper .slick-arrow:focus-visible {
  outline: 2px solid var(--sif-text);
  outline-offset: 4px;
}

.press__img {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.press__img .slick-list {
  position: absolute;
  inset: 0;
}

.press__img .slick-track,
.press__img .press_img_item,
.press__img img {
  height: 100%;
}

.press__img img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

  .press__img {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 3 / 2;
  }

  .press__wrapper .js-presstxt {
    grid-row: 3;
    padding-block: 20px;
  }

  .press__img img { object-fit: contain; }

}

/* Source: assets/css/src/pages/news.css */
/* C33/C35: Current news grid, pagination and confirmed article markup. Retired featured-news layouts are excluded. */
/* Subtitles are also emitted by the Media/Press carousel. */
.news-top-subtitle {
  color: var(--sif-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
}

.news-bottom-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 14px;
}

.section__news-grid {
  padding: 70px 0;
}

.section__news-grid .heading h1 {
  line-height: .8;
}

.section__news-grid .heading > span {
  font-size: 24px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section__news-grid .section__header {
  margin-bottom: 40px;
}

.news-grid-row {
  row-gap: 40px;
}

.section__news-grid .forumnews_list {
  background: #fff;
  height: 100%;
}

.newslist_img {
  margin-bottom: .5rem;
}

.section__news-grid .newslist_img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f7f7f7;
}

.newslist_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__news-grid .forum_listcontent {
  padding: 22px 0 0;
  background: #fff;
}

.section__news-grid .forum_listcontent p {
  margin-bottom: .5rem;
  color: var(--sif-white);
  text-shadow: none;
}

.section__news-grid .forum_listcontent .news-date {
  color: #666;
}

.section__news-grid .forum_listcontent h3 {
  font-size: 24px;
  line-height: 1.25;
  margin: 10px 0 12px;
  font-weight: 700;
}

.section__news-grid .forum_listcontent h3 a {
  color: var(--sif-blue);
  text-decoration: none;
  text-shadow: none;
}

.section__news-grid .forum_listcontent h3 a:hover {
  color: var(--sif-navy);
}

.section__news-grid .forum_listcontent .news-top-subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.section__news-grid .forum_listcontent .news-bottom-subtitle {
  margin-bottom: 10px;
}

.section__news-grid .news-bottom-subtitle,.section__news-grid .forum-txt {
  font-size: 14px;
  line-height: 1.5;
}

.news-pagination {
  margin-top: 50px;
  text-align: center;
}

.news-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 1px solid var(--sif-blue);
  color: var(--sif-blue);
  text-decoration: none;
}

.news-pagination .page-numbers.current,.news-pagination .page-numbers:hover {
  background: var(--sif-blue);
  color: #fff;
}

.section__newsdetail {
  padding: var(--sif-section-space) 0;
}

.prdetail_big {
  padding-right: 1rem;
  margin-bottom: 2rem;
}

.prdetail_big img {
  width: 100%;
}

.recent-post-thumb-body img {
  width: 120px;
  height: 120px;
}

.prdetail_news_content {
  padding: 0 1rem 0 4rem;
  max-width: 100%;
  position: relative;
}

.prdetail_news_content .news__social {
  position: absolute;
  inset: 0 auto 0 0;
  list-style: none;
  padding: 8px 0 18vh;
  width: 30px;
  text-align: center;
}

.news__social li {
  padding-bottom: 1.8vh;
}

.news__social i {
  font-size: 20px;
  color: var(--sif-blue);
  transition: .3s;
}

.news__social i:hover {
  color: #666;
}

.prdetail_news_content p {
  margin-bottom: 2rem;
  font-size: 20px;
}

.prdetail_news_content img {
  display: block;
  margin-bottom: 2rem;
}

.prdetail__heading {
  margin-bottom: 1rem;
}

.prdetail__heading h2 {
  line-height: 47px;
  text-transform: none;
  margin-bottom: 1rem;
}

.prdetail__heading p {
  font-size: 24px;
  margin-bottom: 1rem;
}

.prdetail__heading .news-top-subtitle {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.prdetail__heading .news-bottom-subtitle {
  font-size: 18px;
  margin-bottom: 14px;
}

.prdetail__heading .news-date {
  font-weight: 700;
}

.related__press h2 {
  margin-bottom: 0;
}

.related__press p {
  margin-bottom: 1rem;
  line-height: 1;
}

.related__press h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.relatedpress__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.relatedpress__list li {
  padding: 1.25rem 0;
}

.relatedpress__list h3 a {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--sif-blue);
  transition: .3s;
}

.relatedpress__list h3 a:hover {
  color: #666;
}

.section__filter_news {
  padding: 3.5rem 0 6rem;
}

.section__filter_news .box-anchor {
  height: 45px;
  line-height: .5;
}

.filter-section {
  margin-bottom: 4rem;
}

.inner-filter-upper {
  background: #f7f7f7;
  padding: 30px 0;
  text-align: center;
}

.filters-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.filters-form :is(.year-field,select.selector) {
  width: 390px;
  height: 49px;
  margin-right: 40px;
  padding: 0 15px;
  border: 1px solid rgba(154,227,239,.54);
  color: var(--sif-white);
  background: var(--sif-input-bg);
  appearance: none;
}

.filter-submit {
  cursor: pointer;
  height: 46px;
}

.inner-filter-upper .box-anchor {
  padding: 1rem 3.5rem;
}

@media (max-width:1700px) {
  .prdetail_news_content p {
    font-size: 18px;
    margin-bottom: 1rem;
  }


  .related__press h3 {
    font-size: 20px;
  }


  .prdetail__heading h2 {
    line-height: 30px;
  }

}

@media (max-width:1500px) {
  .prdetail_news_content p {
    font-size: 16px;
  }


  .related__press h3 {
    font-size: 18px;
  }


  .relatedpress__list h3 a {
    font-size: 16px;
  }


  .filter-submit {
    width: 20%;
  }


  .filters-form :is(.year-field,select.selector) {
    width: 35%;
    margin-right: 2%;
  }

}

@media (max-width:992px) {
  .relatedpress__list li {
    flex-wrap: wrap;
  }


  .relatedpress__list li img {
    margin-bottom: 1rem;
  }


  .relatedpress__list .media-body {
    flex: none;
    display: block;
    width: 100%;
  }


  .relatedpress__list .media-body p {
    margin-bottom: .5rem;
  }


  .prdetail_news_content {
    padding-left: 3rem;
  }


  .section__news-grid .newslist_img {
    height: auto;
    aspect-ratio: 3/2;
  }
  .section__news-grid .newslist_img img { object-fit: contain; }

}

@media (max-width:767px) {
  .section__news-grid .newslist_img {
    height: auto;
  }


  .section__news-grid .forum_listcontent h3 {
    font-size: 20px;
  }

}

@media (max-width:480px) {
  .section__news-grid .heading h1 {
    line-height: 1;
  }


  .prdetail_news_content {
    margin-bottom: 2rem;
    padding-left: 0;
  }


  .relatedpress__list li {
    flex-wrap: nowrap;
  }


  .relatedpress__list li img {
    margin-bottom: 0;
  }


  .relatedpress__list .media-body {
    flex: 1;
  }


  .relatedpress__list h3 a {
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
  }


  .prdetail_news_content .news__social {
    position: relative;
    padding: 0;
    display: flex;
    width: 100%;
    margin: 0;
  }


  .news__social li {
    padding: 0 1rem .5rem 0;
  }


  .prdetail_big {
    padding-right: 0;
    margin-bottom: 1rem;
  }


  .filter-section {
    margin-bottom: 2rem;
  }


  .filter-submit {
    width: 90%;
    margin: 0 5%;
  }


  .filters-form :is(.year-field,select.selector) {
    width: 90%;
    margin: 0 5% 10px;
  }

}

.section__news-grid .forumnews_list {
  border-radius: 6px;
  overflow: hidden;
}

.section__news-grid .forum_listcontent {
  padding: 20px;
}

.section__news-grid .forum_listcontent :is(p,.forum-txt,.news-bottom-subtitle) {
  color: #243653;
}

.section__news-grid .forum_listcontent .news-date {
  color: #596474;
}

.section__news-grid .forum_listcontent h3 a {
  color: #215597;
}

.section__news-grid .heading h1 {
  line-height: 1.2;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.news-pagination .page-numbers {
  min-height: 44px;
  min-width: 44px;
  margin: 0;
  color: var(--sif-cyan);
}

/* Source: assets/css/src/pages/content.css */
/* C24/C42: Active sharing shell, normal content and 404. No dormant query-form styles. */
.error__section {
  padding: var(--sif-section-space) 0;
  overflow: hidden;
  position: relative;
}

.error-content {
  text-align: center;
}

.error__section h1 {
  line-height: initial;
  margin-bottom: 0;
  font-size: 200px;
}

.error__section p {
  margin-bottom: 2rem;
  font-size: 24px;
}

.sharepop {
  position: fixed;
  top: 0;
  transform: translateY(-110%);
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.7);
  z-index: 99;
  transition: transform var(--sif-motion-enter) var(--sif-motion-ease);
}

.sharepop.pop-open {
  transform: none;
  visibility: visible;
}

.sharepop .wrap {
  max-width: 490px;
  background: rgba(255,255,255,.65);
  padding: 2rem;
  margin: 10% auto 0;
  position: relative;
}

/* ShareThis supplies ID-specific rules and inline visibility. These opt-in
   exceptions preserve the six controls and spacing of the existing popup. */
.sharepop .st-btn {
  margin: 10px 5px 0 !important;
}

.sharepop .pop-close {
  color: #000;
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 30px;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
}

@media (max-width:480px) {
  .sharepop .st-btn {
    min-width: 50px !important;
    display: inline-block !important;
  }


  .error__section h1 {
    font-size: 150px;
  }


  .error__section p {
    font-size: 16px;
  }


  .sharepop .wrap {
    max-width: 250px;
    margin-top: 20%;
  }

}

/* Source: assets/css/src/pages/held-pages.css */
/* C34/C23: Sponsorship and its existing packages released from the held set in R2.
   C29/C30 floor-plan and sidesessions remain held; no rules or repairs for them. */
.section__sponsorship {
  padding: var(--sif-section-space) var(--sif-gutter);
}

.section__sponsorship .sponsorship_first {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(32px,4vw,64px);
  max-width: 1680px;
  margin-inline: auto;
}

.sponsorship__chances,
.sponsorship__forum,
.sponsorship_second {
  min-width: 0;
}

.chances-txt h3 {
  font-size: clamp(20px,1.7vw,28px);
  line-height: 1.35;
  margin-bottom: 32px;
}

.chances-txt p {
  color: var(--sif-cyan);
  font-weight: 700;
  margin-bottom: 24px;
}

.chances-txt .sponsor_fix {
  color: var(--sif-text);
  font-weight: 400;
}

.forum_sponsor_text h1 {
  font-size: clamp(28px,2.6vw,44px);
  line-height: 1.15;
}

.forum_sponsor_text a {
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.sponsorship_second {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(12px,1.5vw,24px);
}

.sponsor_img {
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sponsor_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__packages {
  padding-block: var(--sif-section-space);
}

.section__packages .section__header,
.section__packages .package__slider {
  max-width: 1200px;
  margin-inline: auto;
}

.section__packages .section__header h1 {
  font-size: clamp(24px,2.2vw,36px);
}

.section__packages .package__slider {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: clamp(16px,2vw,24px);
  align-items: start;
}

.section__packages .package__box {
  min-width: 0;
  padding: clamp(20px,2vw,28px);
  font-size: clamp(15px,.95vw,16px);
  line-height: 1.5;
  background: var(--sif-panel-gradient);
  border: 1px solid var(--sif-divider);
  border-radius: 8px;
}

.section__packages .box__head {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--sif-divider);
}

.section__packages .box__head h3,
.section__packages .box__button h3 {
  font-size: clamp(20px,1.5vw,24px);
}

.section__packages .pkg_price {
  color: var(--sif-cyan);
}

.section__packages .box__steps {
  margin: 0;
  padding-left: 1.25em;
  list-style: disc;
}

.section__packages .steps {
  padding-left: .25em;
  margin-bottom: .55em;
  overflow-wrap: anywhere;
}

.section__packages .steps::marker {
  color: var(--sif-cyan);
}

.sponsorship__support .more__supporters {
  padding-block: var(--sif-section-space);
}

.sponsorship__support .section__header {
  margin-bottom: 24px;
}

.sponsorship__support .supporter__box p {
  line-height: 1.4;
  padding-inline: 12px;
}

@media (max-width: 820px) {
  .section__sponsorship .sponsorship_first,
  .section__packages .package__slider {
    grid-template-columns: minmax(0,1fr);
  }

  .sponsor_img { aspect-ratio: auto; }
  .sponsor_img img { height: auto; object-fit: contain; }

}

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

  .sponsor_img {
    aspect-ratio: auto;
  }
}

/* Source: assets/css/src/integrations/wordpress.css */
/* WordPress global styles, widget contents and Additional CSS post 1710 remain external and in their existing order. Theme widget layout belongs to footer.css. No WordPress reset is required. */

/* Editorial media retains its intrinsic proportions within WordPress content. */
:where(.prdetail_news_content,.wp-block-image,.wp-caption) img {
  max-width: 100%;
  height: auto;
}
.wp-caption { max-width: 100%; }
.wp-block-table {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}


/* Source: assets/css/src/integrations/bootstrap.css */
/* Bootstrap retains grid, responsive display, tabs and collapse behavior. Only confirmed theme bridges belong here; never fork its grid. */
.section__programme .nav-tabs .nav-link.active {
  background-color: #fff;
}

/* Source: assets/css/src/integrations/slick.css */
/* Slick retains positioning, generated inline dimensions and slide visibility. Theme arrows/dots live in components/carousel.css. This opt-in track is the only confirmed width exception. */
.more__supporters .track-change .slick-track {
  width: auto !important;
}

/* Source: assets/css/src/integrations/cf7.css */
/* C37/C38: Explicit CF7 action/input bridge; no generic button or input selector may leak across plugins. */
.form-content .wpcf7-submit,.footer__subscribe input[type="submit"] {
  color: #fff;
  background: var(--sif-cyan-button);
  border-color: var(--sif-control-border);
  box-shadow: var(--sif-button-shadow);
}

.form-content .wpcf7-submit:hover,.form-content .wpcf7-submit:focus,.footer__subscribe input[type="submit"]:hover,.footer__subscribe input[type="submit"]:focus {
  background: var(--sif-button-hover);
  box-shadow: 0 10px 24px rgba(154,227,239,.24);
}

.form-content div.wpcf7 .ajax-loader {
  position: static;
  margin-top: 10px;
  right: -35px;
  display: block;
}

:is(.form-content,.nw_subscription) :is(.wpcf7-response-output,.wpcf7-not-valid-tip) {
  overflow-wrap: anywhere;
  line-height: 1.5;
}
.nw_subscription :is(input[type="email"],input[type="submit"]) {
  min-height: 44px;
  max-width: 100%;
}
.nw_subscription input:focus-visible { outline: 2px solid var(--sif-cyan); outline-offset: 2px; }

/* Source: assets/css/src/integrations/registration.css */
/* C36: Native form bridge; validation and upload behavior stay in the plugin. */
.sif-registration-content .sif-registration-wrap {
  width: 100%;
  max-width: 1060px;
  padding: clamp(24px,4vw,48px) 0;
}

.sif-registration-wrap .sif-registration-form {
  padding: clamp(18px,4vw,36px);
  color: #243653;
  border-radius: 8px;
}

.sif-registration-wrap :is(label,p,small,li,h2,h3,.sif-reg-required-note) {
  color: #243653;
}

.sif-registration-wrap .sif-reg-field label {
  color: #243653;
}

.sif-registration-wrap .sif-reg-field label span {
  color: #a1232f;
}

.sif-registration-wrap .sif-reg-field :is(input,select,textarea) {
  color: #243653;
  background: #fff;
  border-color: #68899b;
  max-width: 100%;
  min-width: 0;
  font-size: 16px;
}

.sif-registration-wrap .sif-reg-field :is(input,textarea)::placeholder {
  color: #5d6d7f;
  opacity: 1;
}

.sif-registration-wrap .sif-reg-field :is(input,select,textarea):focus-visible {
  outline: 2px solid #285cab;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(66,123,226,.12);
}

.sif-registration-wrap .sif-reg-field :is(input,select,textarea):disabled {
  color: #556170;
  background: #eef1f5;
  opacity: 1;
  cursor: not-allowed;
}

.sif-registration-wrap .sif-reg-field :is(input,select,textarea):is([aria-invalid="true"],:user-invalid) {
  border-color: #a1232f;
}

.sif-registration-wrap input[type="file"] {
  overflow: hidden;
}

.sif-registration-wrap input::file-selector-button {
  margin-right: 10px;
  padding: 8px 12px;
  border: 1px solid #68899b;
  border-radius: 4px;
  background: #edf3f8;
  color: #243653;
  cursor: pointer;
}

.sif-registration-wrap input::file-selector-button:hover {
  background: #dfeaf4;
}

.sif-registration-wrap a {
  color: #215597;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.sif-registration-wrap a:hover {
  color: #14245f;
}

.sif-registration-wrap .sif-reg-submit {
  min-height: 48px;
  max-width: 100%;
  white-space: normal;
  background: var(--sif-cyan-button);
  color: #fff;
  border: 1px solid #285cab;
  border-radius: 4px;
}

.sif-registration-wrap .sif-reg-submit:is(:hover,:focus) {
  color: #fff;
  background: var(--sif-button-hover);
}

.sif-registration-wrap .sif-reg-submit:focus-visible {
  outline: 2px solid #285cab;
  outline-offset: 3px;
}

.sif-registration-wrap .sif-registration-error :is(p,li,strong) {
  color: #8b1d29;
}

.sif-registration-wrap .sif-registration-success :is(p,h2,strong) {
  color: #175842;
}

.sif-registration-wrap .sif-registration-message {
  overflow-wrap: anywhere;
}

body:has(#sif-registration-page) .sif-recaptcha-notice {
  color: var(--sif-white);
}

/* The native file control truncates long names; its live description can wrap. */
.sif-registration-wrap .sif-reg-filename {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #243653;
  overflow-wrap: anywhere;
}
.sif-registration-wrap .sif-reg-filename:empty { display: none; }
.sif-registration-wrap :is(.sif-reg-field,.sif-reg-consent) { min-width: 0; }
.sif-registration-wrap .sif-reg-field label { overflow-wrap: anywhere; }

