@charset "UTF-8";

:root {
  --bv-ink: #12343d;
  --bv-muted: #52686e;
  --bv-night: #073947;
  --bv-night-deep: #042b36;
  --bv-sea: #0a8794;
  --bv-sea-bright: #20b6b2;
  --bv-sky: #bde9e4;
  --bv-sand: #f4ecdc;
  --bv-cream: #fbf8f1;
  --bv-coral: #ef705f;
  --bv-coral-dark: #d95345;
  --bv-ink-soft: #52686e;
  --bv-white: #ffffff;
  --bv-border: rgba(7, 57, 71, .13);
  --bv-shadow: 0 28px 70px rgba(7, 57, 71, .16);
  --bv-radius: 30px;
  --bv-ease: cubic-bezier(.22, 1, .36, 1);
  --bv-font-body: "Manrope", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --bv-font-display: "Sora", "Manrope", "Segoe UI Variable", sans-serif;
}

html {
  scroll-behavior: auto;
  background: var(--bv-night-deep);
}

body.stretched {
  color: var(--bv-ink);
  background: var(--bv-cream);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.stretched * {
  box-sizing: border-box;
}

body.stretched a {
  color: var(--bv-sea);
  transition: color .25s ease, transform .25s ease;
}

body.stretched h1,
body.stretched h2,
body.stretched h3,
body.stretched h4 {
  color: var(--bv-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.035em;
}

#wrapper {
  overflow: hidden;
  background: var(--bv-cream);
}

.container {
  width: min(100% - 48px, 1220px);
  max-width: 1220px;
}

/* Header */
#header,
#header.full-header,
#header.transparent-header {
  border: 0;
  background: transparent;
}

#header-wrap {
  width: min(100% - 48px, 1420px);
  margin: 16px auto 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 40px rgba(4, 43, 54, .15);
  backdrop-filter: blur(18px);
}

#header.sticky-header #header-wrap {
  margin-top: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .97);
}

#header.full-header #logo {
  border: 0;
}

#logo,
#logo img,
#header.sticky-header:not(.static-sticky) #logo,
#header.sticky-header:not(.static-sticky) #logo img {
  height: 84px;
}

#logo img {
  width: auto;
  object-fit: contain;
  padding: 7px 0;
}

#primary-menu ul li > a {
  color: var(--bv-ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#primary-menu ul li > a div {
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--bv-coral);
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(239, 112, 95, .22);
}

#primary-menu ul li > a:hover div {
  background: #d95345;
  transform: translateY(-2px);
}

/* Hero */
#slider,
#slider.full-screen,
#slider .swiper-container,
#slider .swiper-slide {
  height: clamp(620px, 82vh, 880px) !important;
  min-height: 620px !important;
}

#slider {
  overflow: hidden;
  border-radius: 0 0 54px 54px;
  background: var(--bv-night);
  box-shadow: var(--bv-shadow);
}

#slider .swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
}

#slider .swiper-slide::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 33, 42, .79), rgba(3, 33, 42, .22) 74%),
    linear-gradient(0deg, rgba(3, 33, 42, .48), transparent 60%);
  content: "";
}

#slider .swiper-slide::after {
  position: absolute;
  z-index: 2;
  top: 122px;
  right: 38px;
  bottom: 38px;
  left: 38px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 48px;
  content: "";
}

#slider .swiper-slide > .container,
#slider .slider-caption {
  position: relative;
  z-index: 3;
}

#slider .slider-caption-center {
  top: 54%;
  right: auto;
  left: 0;
  width: min(900px, 86vw);
  max-width: 900px;
  margin: 0;
  transform: translateY(-50%);
  text-align: left;
}

#slider .slider-caption h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: .98;
  text-transform: none;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .22);
}

#slider .slider-caption p {
  display: inline-block;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .13em;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(8px);
}

/* Content */
#content,
#content .content-wrap {
  background:
    radial-gradient(circle at 88% 10%, rgba(32, 182, 178, .11), transparent 26rem),
    var(--bv-cream);
}

#content .content-wrap {
  padding: clamp(84px, 9vw, 132px) 0;
}

.divcenter.center {
  max-width: 940px !important;
  margin-bottom: 76px !important;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius);
  background: #fff;
  box-shadow: var(--bv-shadow);
}

.divcenter.center h1 {
  margin-bottom: 28px;
  font-size: clamp(39px, 5vw, 65px);
  line-height: 1.04;
}

.divcenter.center h1 span,
#content h2 span {
  color: var(--bv-sea);
}

.divcenter.center h4 {
  color: var(--bv-muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 400;
  line-height: 1.75;
}

#content .container > h2 {
  margin: 20px 0 42px;
  font-size: clamp(34px, 4vw, 54px);
}

.col_full {
  position: relative;
  min-height: 370px;
  margin-bottom: 36px !important;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 57, 71, .09);
  transition: transform .4s var(--bv-ease), box-shadow .4s ease;
}

.col_full:hover {
  box-shadow: var(--bv-shadow);
  transform: translateY(-7px);
}

.fancy-title,
.fancy-title.title-dotted-border {
  margin: 0 0 24px;
  border: 0;
}

.fancy-title h3 {
  padding: 0;
  color: var(--bv-ink);
  background: transparent;
  font-size: clamp(28px, 3vw, 42px);
  text-transform: none;
}

.col_full p {
  color: var(--bv-muted);
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.col_full p img.alignright {
  float: right;
  width: 46%;
  height: 290px;
  margin: -62px 0 20px 42px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(7, 57, 71, .15);
}

.button,
.button.button-3d,
.button.button-teal {
  min-height: 50px;
  margin-top: 24px;
  padding: 15px 25px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--bv-coral);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .11em;
  text-shadow: none;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(239, 112, 95, .2);
}

.button:hover,
.button.button-teal:hover {
  color: #fff;
  background: #d95345;
  transform: translateY(-3px);
}

.col_one_fourth {
  width: calc(25% - 21px);
  margin-right: 28px;
}

.col_one_fourth.col_last {
  margin-right: 0;
}

.feature-box {
  height: 100%;
  min-height: 260px;
  padding: 28px 20px;
  border: 1px solid var(--bv-border);
  border-radius: 24px;
  background: var(--bv-sand);
}

.feature-box .fbox-icon {
  margin-bottom: 20px;
}

.feature-box .fbox-icon i,
.feature-box.fbox-outline .fbox-icon i {
  border-color: var(--bv-sea);
  color: var(--bv-sea);
  background: transparent;
}

.feature-box h3 {
  font-size: 21px;
  line-height: 1.25;
}

.feature-box h3 span.subtitle {
  margin-top: 12px;
  color: var(--bv-muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

/* Footer */
#footer.dark,
#footer {
  position: relative;
  border: 0;
  overflow: hidden;
  isolation: isolate;
  color: rgba(255, 255, 255, .74);
  background:
    radial-gradient(circle at 8% 10%, rgba(32, 182, 178, .16), transparent 24rem),
    radial-gradient(circle at 96% 110%, rgba(239, 112, 95, .13), transparent 22rem),
    var(--bv-night-deep);
}

#footer::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #20b6b2, var(--bv-sky) 48%, var(--bv-coral));
  content: "";
}

#copyrights {
  padding: 0;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  font-size: 12px;
  line-height: 1.65;
}

#copyrights .footer-corporate__inner {
  display: flex;
  padding: 44px 0 28px;
  flex-direction: column;
  gap: 22px;
}

#copyrights .footer-corporate__main {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(270px, .9fr) minmax(0, 1.7fr);
  gap: 48px;
}

#copyrights .footer-corporate__identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

#copyrights .footer-corporate__brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 15px;
  color: #fff;
}

#copyrights .footer-corporate__logo {
  display: grid;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
  place-items: center;
  transition: transform .35s var(--bv-ease), box-shadow .35s ease;
}

#copyrights .footer-corporate__brand:hover .footer-corporate__logo {
  box-shadow: 0 20px 42px rgba(0, 0, 0, .24);
  transform: translateY(-3px) rotate(-2deg);
}

#copyrights .footer-corporate__logo img {
  width: 54px;
  max-width: 54px;
  height: 50px;
  object-fit: contain;
}

#copyrights .footer-corporate__signature {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#copyrights .footer-corporate__signature strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

#copyrights .footer-corporate__signature span,
#copyrights .footer-corporate__legal-label {
  color: #20b6b2;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
}

#copyrights .footer-corporate__copyright {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .65);
}

#copyrights .footer-corporate__address {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  font-style: normal;
  line-height: 1.6;
}

#copyrights .footer-corporate__address a,
#copyrights .footer-corporate__credit a {
  color: rgba(255, 255, 255, .72);
}

#copyrights .footer-corporate__legal {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(115px, .72fr) minmax(200px, 1.34fr) minmax(230px, 1.7fr);
  gap: 10px;
}

#copyrights .footer-corporate__legal-item {
  display: flex;
  min-width: 0;
  min-height: 104px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .055);
  transition: border-color .3s ease, background-color .3s ease, transform .3s var(--bv-ease);
}

#copyrights a.footer-corporate__legal-item:hover {
  border-color: rgba(189, 233, 228, .38);
  color: #fff;
  background: rgba(255, 255, 255, .09);
  transform: translateY(-3px);
}

#copyrights .footer-corporate__legal-label {
  margin-bottom: 7px;
}

#copyrights .footer-corporate__legal-item strong {
  overflow-wrap: anywhere;
  color: inherit;
  font-size: 11px;
  line-height: 1.45;
}

#copyrights .footer-corporate__legal-item small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .56);
  font-size: 9px;
  line-height: 1.45;
}

#copyrights .footer-corporate__privacy {
  position: relative;
  padding-right: 42px;
}

#copyrights .footer-corporate__privacy::after {
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--bv-sky);
  content: "↗";
  font-size: 18px;
  transform: translateY(-50%);
}

#copyrights .footer-corporate__lower {
  display: flex;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  justify-content: space-between;
}

#copyrights .footer-corporate__social {
  display: flex;
  gap: 7px;
}

#copyrights .footer-corporate__social a {
  display: grid;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
  cursor: pointer;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .3s var(--bv-ease);
}

#copyrights .footer-corporate__social img {
  display: block;
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 9px;
  pointer-events: none;
  transform: none !important;
  transition: none;
}

#copyrights .footer-corporate__social a:hover,
#copyrights .footer-corporate__social a:focus-visible {
  border-color: rgba(108, 225, 216, .48);
  background: linear-gradient(145deg, rgba(54, 154, 158, .24), rgba(255, 255, 255, .105));
  box-shadow: 0 13px 28px rgba(0, 23, 37, .25), inset 0 1px 0 rgba(255, 255, 255, .13);
  transform: translateY(-3px) scale(1.02);
}

#copyrights .footer-corporate__social a:active {
  border-color: rgba(108, 225, 216, .38);
  box-shadow: 0 6px 15px rgba(0, 23, 37, .2);
  transform: translateY(0) scale(.96);
}

@media (hover: none) {
  #copyrights .footer-corporate__social a:hover:not(:active) {
    border-color: rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .055);
    box-shadow: none;
    transform: none;
  }
}

#copyrights .footer-corporate__credit {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
}

#copyrights .footer-corporate__credit img {
  display: inline-block;
  width: 11px;
  height: auto;
  margin: 0 3px;
  vertical-align: middle;
}

#copyrights .technical-cookie-notice {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 16px 96px 16px 17px;
  border: 1px solid rgba(189, 233, 228, .14);
  border-radius: 18px;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .65);
  background: rgba(189, 233, 228, .055);
  font-size: 10px;
  line-height: 1.7;
  text-align: left;
}

#copyrights .technical-cookie-notice__icon {
  display: grid;
  min-width: 25px;
  height: 25px;
  border: 1px solid rgba(189, 233, 228, .28);
  border-radius: 50%;
  color: var(--bv-sky);
  background: rgba(32, 182, 178, .08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

#gotoTop {
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--bv-coral);
  box-shadow: 0 12px 28px rgba(4, 43, 54, .24);
}

@media (max-width: 991px) {
  #gotoTop {
    display: none !important;
  }

  #header-wrap {
    width: calc(100% - 28px);
    min-height: 76px;
    border-radius: 20px;
  }

  #logo,
#logo img {
    height: 72px;
  }

  #primary-menu-trigger {
    top: 8px;
    color: var(--bv-night);
  }

  #primary-menu ul {
    padding: 12px 0 18px;
    border: 0;
    background: rgba(255, 255, 255, .98);
  }

  #slider .swiper-slide::after {
    top: 104px;
    right: 18px;
    bottom: 20px;
    left: 18px;
    border-radius: 34px;
  }

  .col_full p img.alignright {
    width: 48%;
    height: 260px;
  }

  .col_one_fourth {
    width: calc(50% - 14px);
    margin: 0 28px 28px 0;
  }

  .col_one_fourth:nth-of-type(even) {
    margin-right: 0;
  }

  #copyrights .footer-corporate__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #copyrights .footer-corporate__identity {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 24px;
  }

  #copyrights .footer-corporate__brand {
    grid-row: 1 / 3;
  }

  #copyrights .footer-corporate__copyright,
#copyrights .footer-corporate__address {
    margin: 0;
  }

  #copyrights .footer-corporate__legal {
    grid-template-columns: minmax(110px, .72fr) minmax(190px, 1.28fr) minmax(230px, 1.7fr);
  }

  #copyrights .technical-cookie-notice {
    padding-right: 17px;
  }
}

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

  #copyrights .technical-cookie-notice {
    padding: 15px;
    text-align: left;
  }

  #copyrights .footer-corporate__inner {
    padding-top: 34px;
    padding-bottom: 112px;
    gap: 18px;
  }

  #copyrights .footer-corporate__identity {
    display: flex;
    align-items: center;
    text-align: center;
  }

  #copyrights .footer-corporate__brand {
    margin: 0 auto;
  }

  #copyrights .footer-corporate__legal {
    grid-template-columns: 1fr;
  }

  #copyrights .footer-corporate__legal-item {
    min-height: 0;
    text-align: left;
  }

  #copyrights .footer-corporate__lower {
    flex-direction: column;
    gap: 14px;
    justify-content: center;
  }

  #copyrights .footer-corporate__credit {
    max-width: 100%;
    font-size: 11.5px !important;
    line-height: 1.6 !important;
    text-align: center;
  }

  #slider,
#slider.full-screen,
#slider .swiper-container,
#slider .swiper-slide {
    height: 700px !important;
    min-height: 700px !important;
  }

  #slider .slider-caption-center {
    top: 59%;
    left: 0;
    width: 100%;
  }

  #slider .slider-caption h2 {
    font-size: clamp(45px, 13.5vw, 68px);
  }

  #content .content-wrap {
    padding: 74px 0;
  }

  .divcenter.center,
.col_full {
    padding: 25px;
    border-radius: 22px;
  }

  .col_full p img.alignright {
    float: none;
    width: 100%;
    height: 240px;
    margin: 0 0 24px;
    border-radius: 16px;
  }

  .col_one_fourth,
.col_one_fourth:nth-of-type(even),
.col_one_fourth.col_last {
    width: 100%;
    margin: 0 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Modern utility layer */
.bv-event-skip {
  position: fixed;
  z-index: 4000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--bv-night-deep);
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-160%);
}

.bv-event-skip:focus {
  transform: translateY(0);
}

.bv-event-progress {
  position: fixed;
  z-index: 3500;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #20b6b2, var(--bv-coral));
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.bv-event-actions {
  display: none;
}

@media (max-width: 767.98px) {
  body.stretched {
    padding-bottom: 82px;
  }

  .bv-event-actions {
    position: fixed;
    z-index: 3200;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    min-height: 64px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(4, 43, 54, .95);
    box-shadow: 0 18px 46px rgba(4, 43, 54, .34);
    backdrop-filter: blur(16px);
  }

  .bv-event-actions a {
    display: flex;
    padding: 5px 3px;
    border-radius: 13px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, .84) !important;
  }

  .bv-event-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, .11);
  }

  .bv-event-actions span {
    display: grid;
    width: 26px;
    height: 26px;
    color: #20b6b2;
    font-size: 18px;
    line-height: 1;
    place-items: center;
  }

  .bv-event-actions small {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
}

/* Contemporary typography and larger readable content */
body.stretched,
body.stretched input,
body.stretched textarea,
body.stretched select,
body.stretched button,
#primary-menu ul li > a,
.button,
.feature-box h3 span.subtitle {
  font-family: var(--bv-font-body);
}

body.stretched {
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: -.006em;
}

body.stretched p,
#content p {
  color: #405e66;
  font-size: 16.5px;
  font-weight: 450;
  line-height: 1.78;
  letter-spacing: -.01em;
  text-wrap: pretty;
}

body.stretched h1,
body.stretched h2,
body.stretched h3,
body.stretched h4,
#copyrights .footer-corporate__signature strong {
  font-family: var(--bv-font-display);
  font-weight: 750;
  letter-spacing: -.05em;
  text-wrap: balance;
}

#primary-menu ul li > a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .075em;
}

#slider .slider-caption h2 {
  max-width: 980px;
  font-size: clamp(50px, 6.15vw, 84px);
  line-height: 1;
}

#slider .slider-caption p {
  padding: 11px 18px;
  font-family: var(--bv-font-body);
  font-size: 16.5px;
  letter-spacing: .095em;
}

.divcenter.center {
  max-width: 980px !important;
  padding: clamp(38px, 5vw, 64px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 100% 0, rgba(32, 182, 178, .10), transparent 22rem),
    #fff;
  box-shadow: 0 28px 78px rgba(7, 57, 71, .13);
}

.divcenter.center h1 {
  font-size: clamp(40px, 4.8vw, 64px);
}

.divcenter.center h4 {
  color: #405e66;
  font-family: var(--bv-font-body);
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 500;
  line-height: 1.72;
}

#content .container > h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.col_full {
  min-height: 390px;
  padding: clamp(34px, 4vw, 52px);
  border-radius: 34px;
  box-shadow: 0 22px 60px rgba(7, 57, 71, .11);
}

.fancy-title h3 {
  font-size: clamp(29px, 3vw, 43px);
}

.col_full p {
  font-size: 16.5px !important;
  line-height: 1.8 !important;
}

.col_full p img.alignright {
  border: 7px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(7, 57, 71, .17);
}

.button,
.button.button-3d,
.button.button-teal {
  min-height: 56px;
  padding: 17px 28px;
  font-family: var(--bv-font-body);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .085em;
}

.feature-box {
  min-height: 282px;
  padding: 32px 23px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .32), transparent),
    var(--bv-sand);
  box-shadow: 0 16px 42px rgba(7, 57, 71, .08);
  transition: transform .35s var(--bv-ease), box-shadow .35s ease;
}

.feature-box:hover {
  box-shadow: 0 24px 58px rgba(7, 57, 71, .13);
  transform: translateY(-6px);
}

.feature-box h3 {
  font-size: 22px;
  line-height: 1.3;
}

.feature-box h3 span.subtitle {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.65;
}

#copyrights {
  font-family: var(--bv-font-body);
  font-size: 13px;
}

#copyrights .footer-corporate__signature strong {
  font-size: 21px;
}

#copyrights .footer-corporate__signature span,
#copyrights .footer-corporate__legal-label {
  font-size: 10.5px;
  letter-spacing: .11em;
}

#copyrights .footer-corporate__copyright,
#copyrights .footer-corporate__address {
  font-size: 12.5px;
  line-height: 1.7;
}

#copyrights .footer-corporate__legal-item {
  min-height: 112px;
  padding: 20px;
  border-radius: 20px;
}

#copyrights .footer-corporate__legal-item strong {
  font-size: 12.5px;
  line-height: 1.5;
}

#copyrights .footer-corporate__legal-item small {
  font-size: 10.5px;
}

#copyrights .footer-corporate__credit,
#copyrights .technical-cookie-notice {
  font-size: 11.5px;
}

.bv-event-actions small {
  font-family: var(--bv-font-body);
  font-size: 9.5px;
}

@media (max-width: 767.98px) {
  body.stretched {
    font-size: 16px;
  }

  body.stretched p,
#content p,
.col_full p {
    font-size: 16px !important;
    line-height: 1.77 !important;
  }

  #slider .slider-caption h2 {
    font-size: clamp(43px, 12.8vw, 62px);
  }

  #slider .slider-caption p {
    font-size: 14.5px;
  }

  .divcenter.center,
.col_full {
    padding: 28px 22px;
    border-radius: 27px;
  }

  .divcenter.center h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .feature-box h3 {
    font-size: 23px;
  }

  .feature-box h3 span.subtitle {
    font-size: 15px;
  }

  #copyrights .technical-cookie-notice {
    font-size: 12px;
  }
}

/* Final interface polish */
.bv-event-actions span svg {
  display: block;
  width: 20px;
  height: 20px;
}

.feature-box,
.col_full,
.divcenter.center {
  transition: border-color .3s ease, box-shadow .35s ease, transform .4s var(--bv-ease);
}

.feature-box:hover {
  border-color: rgba(10, 135, 148, .22);
}

@media (min-width: 768px) {
  .col_full:hover,
.divcenter.center:hover {
    box-shadow: 0 34px 88px rgba(7, 57, 71, .16);
    transform: translateY(-4px);
  }
}

/* Multilingual event navigation and long translated headings */
#slider .slider-caption h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: none;
}

#primary-menu .bv-event-language img {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(4, 43, 54, .18);
}

#slider .bv-nowrap {
  white-space: nowrap;
}

.bv-event-actions {
  transition: opacity .22s ease, visibility .22s ease, transform .3s var(--bv-ease);
}

body.bv-event-menu-open .bv-event-actions {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 18px));
}

@media (min-width: 992px) {
  #primary-menu .bv-event-language > a {
    padding-right: 5px;
    padding-left: 5px;
  }

  #primary-menu .bv-event-language > a div {
    display: grid;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    place-items: center;
  }
}

/* Remove the legacy full-header separator after the language selector. It is
 * especially visible when the navigation becomes sticky while scrolling. */
#header.full-header #primary-menu > ul,
#header.sticky-header #primary-menu > ul {
  border-right: 0 !important;
}

@media (max-width: 991px) {
  #primary-menu ul::after {
    display: table;
    clear: both;
    content: "";
  }

  #primary-menu ul li.bv-event-language {
    float: left;
    width: 25%;
    border: 0;
  }

  #primary-menu ul li.bv-event-language > a {
    padding: 4px;
  }

  #primary-menu ul li.bv-event-language > a div {
    display: grid;
    min-height: 48px;
    padding: 0;
    place-items: center;
  }
}

@media (max-width: 767.98px) {
  #slider .slider-caption h2 {
    font-size: clamp(38px, 11vw, 43px);
    line-height: 1.02;
  }

  #slider .slider-caption p {
    display: inline-block !important;
    margin-top: 16px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: .055em;
    white-space: normal;
  }
}

@media (max-width: 991px) and (max-height: 650px) {
  #slider,
#slider.full-screen,
#slider .swiper-container,
#slider .swiper-slide {
    height: 540px !important;
    min-height: 540px !important;
  }

  #slider .slider-caption-center {
    top: 80px !important;
  }
}

@media (max-width: 991px) and (max-height: 500px) {
  #slider,
#slider.full-screen,
#slider .swiper-container,
#slider .swiper-slide {
    height: 480px !important;
    min-height: 480px !important;
  }

  #slider .slider-caption-center {
    top: 18px !important;
  }

  #slider .slider-caption h2 {
    font-size: clamp(34px, 6vw, 42px);
    line-height: 1;
  }

  #slider .slider-caption p {
    margin-top: 10px;
    padding: 7px 11px;
    font-size: 12.5px;
  }

  .bv-event-actions {
    display: none !important;
  }
}

/* Refined mobile event navigation */
.bv-event-menu-head,
.bv-event-language-title,
.bv-event-menu-scrim {
  display: none;
}

@media (max-width: 991.98px) {
  #header,
#header.full-header,
#header.transparent-header {
    z-index: 210;
  }

  #header-wrap,
#header.sticky-header #header-wrap {
    width: calc(100% - 20px);
    min-height: 82px;
    margin-top: 10px;
    overflow: visible;
    border: 1px solid rgba(7, 57, 71, .08);
    border-radius: 25px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 16px 42px rgba(4, 43, 54, .17);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  #header-wrap > .container {
    position: relative;
    min-height: 82px;
    padding-right: 12px;
    padding-left: 12px;
  }

  #logo,
#logo img,
#header.sticky-header:not(.static-sticky) #logo,
#header.sticky-header:not(.static-sticky) #logo img {
    height: 78px;
  }

  #logo {
    display: block;
    float: none;
    max-width: none;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: center;
  }

  #logo > a {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  #logo img {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  #primary-menu-trigger {
    position: absolute;
    z-index: 4;
    top: 16px;
    right: auto;
    left: 15px;
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0;
    border: 1px solid rgba(10, 135, 148, .15);
    border-radius: 16px;
    color: var(--bv-night);
    background: rgba(10, 135, 148, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    place-items: center;
    transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .3s ease, transform .25s ease;
  }

  #primary-menu-trigger:hover,
#primary-menu-trigger:focus-visible {
    border-color: rgba(10, 135, 148, .3);
    background: rgba(10, 135, 148, .12);
    box-shadow: 0 9px 22px rgba(7, 57, 71, .12);
  }

  #primary-menu-trigger:focus-visible {
    outline: 3px solid rgba(239, 112, 95, .26);
    outline-offset: 2px;
  }

  #primary-menu-trigger.is-active {
    border-color: transparent;
    color: var(--bv-white);
    background: linear-gradient(135deg, var(--bv-sea-bright), var(--bv-sea));
    box-shadow: 0 12px 26px rgba(10, 135, 148, .25);
    transform: rotate(2deg);
  }

  #primary-menu-trigger i {
    display: none;
  }

  #primary-menu-trigger::before,
#primary-menu-trigger::after {
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform .25s ease, box-shadow .25s ease;
  }

  #primary-menu-trigger::before {
    box-shadow: 0 6px 0 currentColor;
    transform: translateY(-6px);
  }

  #primary-menu-trigger.is-active::before {
    box-shadow: none;
    transform: rotate(45deg);
  }

  #primary-menu-trigger.is-active::after {
    transform: rotate(-45deg);
  }

  #primary-menu {
    display: block;
    float: none;
    width: 100%;
    height: auto !important;
  }

  #primary-menu > ul,
#primary-menu > ul.show {
    width: 100%;
    height: auto !important;
    max-height: calc(100vh - 110px);
    max-height: calc(100dvh - 110px);
    margin: 0 !important;
    padding: 10px 10px max(22px, env(safe-area-inset-bottom)) !important;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: 0 0 23px 23px;
    background:
      radial-gradient(circle at 94% 8%, rgba(32, 182, 178, .12), transparent 12rem),
      linear-gradient(155deg, #fbf9f3, #f2f8f5);
    box-shadow: inset 0 1px 0 rgba(7, 57, 71, .07);
    overscroll-behavior: contain;
    scrollbar-color: rgba(10, 135, 148, .32) transparent;
    scrollbar-width: thin;
  }

  #primary-menu > ul {
    display: none;
  }

  #primary-menu > ul.show {
    display: block !important;
  }

  #primary-menu > ul > li:not(.bv-event-language) {
    float: none;
    width: 100%;
    margin: 0 !important;
  }

  #primary-menu .bv-event-menu-head {
    position: relative;
    display: flex;
    min-height: 88px;
    margin-bottom: 9px !important;
    padding: 18px 74px 17px 18px;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    color: var(--bv-white);
    background:
      radial-gradient(circle at 88% 18%, rgba(189, 233, 228, .2), transparent 7rem),
      linear-gradient(135deg, var(--bv-sea), var(--bv-night));
    box-shadow: 0 16px 34px rgba(7, 57, 71, .17);
    flex-direction: column;
    justify-content: center;
  }

  #primary-menu .bv-event-menu-head > span {
    color: var(--bv-sky);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .15em;
    text-transform: uppercase;
  }

  #primary-menu .bv-event-menu-head > strong {
    margin-top: 6px;
    color: var(--bv-white);
    font-family: var(--bv-font-display);
    font-size: clamp(20px, 6vw, 26px);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -.04em;
  }

  #primary-menu .bv-event-menu-head > .bv-event-menu-head__mark {
    position: absolute;
    top: 50%;
    right: 14px;
    display: grid;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #f1f8f5);
    box-shadow:
      0 13px 28px rgba(3, 33, 42, .25),
      0 0 0 4px rgba(255, 255, 255, .08),
      inset 0 1px 0 rgba(255, 255, 255, .95);
    font-style: normal;
    place-items: center;
    transform: translateY(-50%);
  }

  #primary-menu .bv-event-menu-head__mark img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.02);
  }

  #primary-menu ul li:not(.bv-event-menu-head):not(.bv-event-language):not(.bv-event-language-title) {
    border: 0;
  }

  #primary-menu ul li:not(.bv-event-menu-head):not(.bv-event-language):not(.bv-event-language-title) > a {
    height: auto !important;
    min-height: 52px;
    padding: 0 !important;
    line-height: 1.25 !important;
  }

  #primary-menu ul li:not(.bv-event-menu-head):not(.bv-event-language):not(.bv-event-language-title) > a div {
    position: relative;
    display: flex;
    min-height: 52px;
    padding: 12px 48px 12px 17px;
    border: 0;
    border-radius: 16px;
    align-items: center;
    color: var(--bv-white);
    background: linear-gradient(135deg, var(--bv-coral), #d95345);
    box-shadow: 0 13px 28px rgba(239, 112, 95, .22);
    font-size: 11px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: .065em;
  }

  #primary-menu ul li:not(.bv-event-menu-head):not(.bv-event-language):not(.bv-event-language-title) > a div::after {
    position: absolute;
    top: 50%;
    right: 17px;
    content: "›";
    font-size: 23px;
    font-weight: 400;
    transform: translateY(-52%);
  }

  #primary-menu .bv-event-language-title {
    display: block;
    clear: both;
    margin: 14px 4px 8px !important;
    padding-top: 14px;
    border: 0;
    border-top: 1px solid rgba(7, 57, 71, .1);
    color: var(--bv-ink-soft);
    font-size: 8.5px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: .15em;
    text-transform: uppercase;
  }

  #primary-menu ul li.bv-event-language {
    float: left;
    width: 25%;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 2px;
    border: 0;
  }

  #primary-menu ul li.bv-event-language > a {
    height: auto !important;
    min-height: 52px;
    padding: 0 !important;
    line-height: 1 !important;
  }

  #primary-menu ul li.bv-event-language > a div {
    display: grid;
    min-height: 52px;
    padding: 0;
    border: 1px solid rgba(7, 57, 71, .09);
    border-radius: 15px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 7px 18px rgba(7, 57, 71, .055);
    place-items: center;
    transition: border-color .22s ease, box-shadow .25s ease, transform .25s ease;
  }

  #primary-menu ul li.bv-event-language > a:hover div,
#primary-menu ul li.bv-event-language > a:focus-visible div {
    border-color: rgba(10, 135, 148, .3);
    background: var(--bv-white);
    box-shadow: 0 10px 22px rgba(7, 57, 71, .1);
    transform: translateY(-2px);
  }

  #primary-menu .bv-event-language img {
    width: 25px;
    height: 25px;
    border: 2px solid var(--bv-white);
    box-shadow: 0 5px 14px rgba(7, 57, 71, .16);
  }

  .bv-event-menu-scrim {
    position: fixed;
    z-index: 190;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(3, 33, 42, .62);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    pointer-events: none;
    transition: opacity .32s ease, visibility 0s linear .32s;
  }

  body.bv-event-menu-open {
    overflow: hidden;
  }

  body.bv-event-menu-open .bv-event-menu-scrim {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
}

@media (max-width: 991.98px) and (max-height: 420px) and (orientation: landscape) {
  #header-wrap,
#header.sticky-header #header-wrap,
#header-wrap > .container {
    min-height: 68px;
  }

  #logo,
#logo img,
#header.sticky-header:not(.static-sticky) #logo,
#header.sticky-header:not(.static-sticky) #logo img {
    height: 66px;
  }

  #primary-menu-trigger {
    top: 10px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  #primary-menu .bv-event-menu-head {
    display: none;
  }

  #primary-menu > ul,
#primary-menu > ul.show {
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
  }
}

@media (max-width: 319.98px) {
  #header.full-header #header-wrap > .container {
    width: 100% !important;
    max-width: none;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* Coastal-luxury finish shared with the official site. */
body.stretched,
#wrapper {
  background:
    radial-gradient(circle at 7% 16%, rgba(32, 182, 178, .075), transparent 27rem),
    radial-gradient(circle at 94% 42%, rgba(239, 112, 95, .055), transparent 30rem),
    linear-gradient(180deg, #fbf8f1 0%, #f7f1e6 100%);
}

#header-wrap {
  border-color: rgba(7, 57, 71, .075);
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(251, 248, 241, .95));
  box-shadow: 0 22px 58px rgba(4, 43, 54, .16);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

#header.sticky-header #header-wrap {
  border-color: rgba(10, 135, 148, .12);
  box-shadow: 0 24px 64px rgba(4, 43, 54, .19);
}

#slider {
  box-shadow: 0 38px 92px rgba(4, 43, 54, .22);
}

#slider .slider-caption h2 {
  text-shadow: 0 10px 36px rgba(3, 33, 42, .34);
}

.feature-box,
.col_full,
.divcenter.center {
  border-color: rgba(7, 57, 71, .095);
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(250, 247, 239, .82));
  box-shadow: 0 24px 62px rgba(7, 57, 71, .105);
}

.feature-box:hover {
  border-color: rgba(10, 135, 148, .26);
  box-shadow: 0 30px 72px rgba(7, 57, 71, .15);
}

/* 2026 contemporary event design: aligned with the official website. */
:root {
  --bv-font-body: "Manrope", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --bv-font-display: "Sora", "Manrope", "Segoe UI Variable", sans-serif;
  --bv-event-ink: #073947;
  --bv-event-copy: #3f6068;
  --bv-event-line: rgba(7, 57, 71, .105);
}

html,
body,
body p,
body li,
body a,
body button,
body input,
body textarea {
  font-family: var(--bv-font-body) !important;
}

body.stretched {
  color: var(--bv-event-copy);
  font-size: 17.5px;
  font-variation-settings: "opsz" 17;
  font-synthesis: none;
  letter-spacing: -.012em;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
#slider .slider-caption h2,
#primary-menu ul li > a,
.button,
.feature-box h3 {
  font-family: var(--bv-font-display) !important;
  font-optical-sizing: auto;
}

body h1,
body h2,
body h3,
body h4 {
  color: var(--bv-event-ink);
  font-weight: 650;
  letter-spacing: -.045em;
  text-wrap: balance;
}

#header-wrap {
  border-radius: 0 0 32px 32px;
  background: rgba(255, 253, 249, .965);
}

#primary-menu ul li > a,
#primary-menu ul li > a div {
  color: #31515a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.012em;
  text-transform: none;
}

#primary-menu ul li.bv-event-official-link > a div {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
}

#slider {
  border-radius: 0 0 58px 58px;
}

#slider .slider-caption h2 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 90px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.055em;
}

#content {
  background:
    radial-gradient(circle at 95% 7%, rgba(32, 182, 178, .105), transparent 27rem),
    radial-gradient(circle at 3% 58%, rgba(239, 112, 95, .075), transparent 26rem),
    linear-gradient(180deg, #f4f8f5, #f6efe5);
}

#content .content-wrap {
  padding: clamp(80px, 8vw, 128px) 0;
}

#content .content-wrap > .container {
  width: min(100% - 48px, 1220px);
  max-width: 1220px;
}

#content .divcenter.center {
  max-width: 1120px !important;
  margin-bottom: clamp(80px, 9vw, 132px);
  padding: clamp(54px, 6.5vw, 88px);
  border: 1px solid var(--bv-event-line);
  border-top: 0;
  border-radius: 18px 66px 18px 66px;
  background:
    linear-gradient(90deg, #20b6b2, #ef705f) top / 100% 5px no-repeat,
    rgba(255, 253, 249, .96);
  box-shadow: 0 34px 96px rgba(7, 57, 71, .15);
  text-align: left !important;
}

#content .divcenter.center h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(43px, 5.7vw, 78px);
  line-height: .98;
}

#content .divcenter.center h1 span {
  color: #0a8b91;
}

#content .divcenter.center h4 {
  max-width: 880px;
  margin-bottom: 34px;
  color: #48666d;
  font-family: var(--bv-font-body) !important;
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 450;
  line-height: 1.72;
  letter-spacing: -.015em;
}

#content .container > h2 {
  margin: 0 0 clamp(38px, 5vw, 62px);
  color: var(--bv-event-ink);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.05em;
}

#content .container > h2 span {
  color: inherit;
}

#content .col_full {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  margin-bottom: 32px;
  padding: clamp(42px, 5vw, 68px);
  padding-top: clamp(66px, 6vw, 82px);
  border: 1px solid var(--bv-event-line);
  border-radius: 18px 58px 18px 58px;
  background: rgba(255, 253, 249, .965);
  box-shadow: 0 24px 68px rgba(7, 57, 71, .105);
}

#content .col_full:nth-of-type(even) {
  border-radius: 58px 18px 58px 18px;
  background: linear-gradient(145deg, #edf7f4, #fffdf9);
}

#content .col_full::before {
  display: none;
}

#content .col_full::after {
  display: none;
}

#content .fancy-title {
  max-width: 54%;
  margin-bottom: 28px;
  border: 0;
}

#content .fancy-title h3 {
  padding: 0;
  background: transparent;
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1.05;
}

#content .col_full p {
  color: var(--bv-event-copy);
  font-size: 17px !important;
  line-height: 1.7 !important;
}

#content .col_full p::after {
  display: table;
  clear: both;
  content: "";
}

#content .col_full p b,
#content .col_full p strong {
  color: #173f49;
  font-size: 18px;
  font-weight: 650;
}

#content .col_full img.alignright {
  position: relative;
  z-index: 1;
  display: block !important;
  width: 44%;
  min-height: 310px;
  max-height: 390px;
  margin: -74px 0 28px 54px;
  border-radius: 15px 42px 15px 42px;
  box-shadow: 0 24px 58px rgba(7, 57, 71, .18);
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

#content .button,
#primary-menu .bv-event-official-link > a {
  border-radius: 15px 27px 15px 27px;
  font-family: var(--bv-font-display) !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
}

#content .col_one_fourth {
  margin-top: 34px;
}

#content .feature-box {
  min-height: 260px;
  padding: 34px 24px;
  border: 1px solid var(--bv-event-line);
  border-radius: 15px 34px 15px 34px;
  background: rgba(255, 253, 249, .96);
}

#content .col_one_fourth:nth-of-type(even) .feature-box {
  border-radius: 34px 15px 34px 15px;
}

#content .feature-box .fbox-icon {
  margin-bottom: 24px;
}

#content .feature-box h3 {
  color: var(--bv-event-ink);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -.025em;
  text-transform: none;
}

#content .feature-box h3 .subtitle {
  margin-top: 12px;
  color: #557078;
  font-family: var(--bv-font-body) !important;
  font-size: 14.5px;
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: -.01em;
}

#footer,
#copyrights,
#footer p,
#footer a,
#footer li {
  font-family: var(--bv-font-body) !important;
}

@media (max-width: 991.98px) {
  #header-wrap {
    border-radius: 0 0 24px 24px;
  }

  #primary-menu-trigger {
    border-radius: 14px 23px 14px 23px;
  }

  #primary-menu > ul {
    background:
      radial-gradient(circle at 10% 7%, rgba(32, 182, 178, .13), transparent 17rem),
      #f9f7f1;
  }

  #primary-menu ul li.bv-event-main-link > a div,
#primary-menu ul li.bv-event-official-link > a div {
    font-family: var(--bv-font-display) !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.018em;
    text-transform: none;
  }

  #content .fancy-title {
    max-width: none;
  }

  #content .col_full img.alignright {
    width: 48%;
    min-height: 280px;
    margin-top: 0;
    margin-left: 36px;
  }
}

@media (max-width: 767.98px) {
  body.stretched {
    font-size: 17px;
  }

  #slider {
    border-radius: 0 0 34px 34px;
  }

  #slider .slider-caption h2 {
    font-size: clamp(40px, 12.5vw, 58px);
  }

  #content .content-wrap {
    padding: 66px 0 76px;
  }

  #content .content-wrap > .container {
    width: calc(100% - 20px);
    padding-right: 0;
    padding-left: 0;
  }

  #content .divcenter.center {
    margin-bottom: 76px;
    padding: 42px 24px;
    border-radius: 14px 38px 14px 38px;
  }

  #content .divcenter.center h1 {
    font-size: clamp(34px, 9.7vw, 43px);
    line-height: 1;
  }

  #content .container > h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  #content .col_full,
#content .col_full:nth-of-type(even) {
    min-height: 0;
    padding: 58px 22px 30px;
    border-radius: 14px 34px 14px 34px;
  }

  #content .col_full::before {
    top: 23px;
    left: 22px;
  }

  #content .col_full img.alignright {
    float: none;
    width: 100%;
    min-height: 0;
    max-height: none;
    margin: 0 0 28px;
    border-radius: 12px 28px 12px 28px;
  }

  #content .col_full p,
#content .col_full p b,
#content .col_full p strong {
    font-size: 16.5px !important;
  }

  #content .fancy-title h3 {
    font-size: clamp(30px, 9vw, 42px);
  }

  #content .feature-box,
#content .col_one_fourth:nth-of-type(even) .feature-box {
    min-height: 0;
    border-radius: 14px 30px 14px 30px;
  }
}

/* Coastal signature layer shared with the official Bagno Vittoria website. */
:root {
  --bv-event-ocean: #063f4d;
  --bv-event-aqua: #12a4a7;
  --bv-event-aqua-soft: #dff3ef;
  --bv-event-coral: #ef705f;
}

#content {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 8%, rgba(18, 164, 167, .12), transparent 26rem),
    radial-gradient(circle at 2% 62%, rgba(239, 112, 95, .07), transparent 24rem),
    linear-gradient(180deg, #f7faf7, #f5efe5);
}

#content::before {
  position: absolute;
  top: 160px;
  right: -150px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(18, 164, 167, .1);
  border-radius: 50%;
  box-shadow: inset 0 0 0 44px rgba(255, 255, 255, .24);
  content: "";
  pointer-events: none;
}

#content .divcenter.center {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#content .divcenter.center::before {
  position: absolute;
  z-index: -1;
  right: clamp(24px, 6vw, 88px);
  bottom: -32px;
  color: rgba(6, 63, 77, .035);
  content: "BV";
  font-family: var(--bv-font-display) !important;
  font-size: clamp(120px, 19vw, 240px);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.09em;
  pointer-events: none;
}

#content .col_full {
  isolation: isolate;
  transition: border-color .35s ease, box-shadow .45s cubic-bezier(.22, 1, .36, 1), transform .45s cubic-bezier(.22, 1, .36, 1);
}

#content .bv-event-keyphrase {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: clamp(42px, 5vw, 68px);
  max-width: calc(100% - clamp(84px, 10vw, 136px));
  margin: 0;
  padding: 7px 12px 6px;
  border: 1px solid rgba(18, 164, 167, .16);
  border-left: 3px solid var(--bv-event-aqua);
  border-radius: 7px 18px 7px 18px;
  color: rgba(6, 63, 77, .8);
  background: rgba(255, 253, 249, .84);
  box-shadow: 0 10px 26px rgba(6, 63, 77, .065);
  font-family: var(--bv-font-body) !important;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: .055em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  pointer-events: none;
}

#content .col_full img.alignright {
  outline: 8px solid rgba(255, 255, 255, .72);
  outline-offset: -8px;
  transition: filter .45s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

#content .feature-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(7, 57, 71, .09);
  transition: border-color .3s ease, box-shadow .4s cubic-bezier(.22, 1, .36, 1), transform .4s cubic-bezier(.22, 1, .36, 1);
}

#content .feature-box::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bv-event-aqua), var(--bv-event-coral));
  content: "";
  opacity: .5;
}

#content .button {
  box-shadow: 0 16px 34px rgba(6, 63, 77, .16);
}

@media (hover: hover) and (pointer: fine) {
  #content .col_full:hover {
    border-color: rgba(18, 164, 167, .2);
    box-shadow: 0 34px 90px rgba(7, 57, 71, .16);
    transform: translateY(-6px);
  }

  #content .col_full:hover img.alignright {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.025);
  }

  #content .feature-box:hover {
    border-color: rgba(18, 164, 167, .2);
    box-shadow: 0 28px 68px rgba(7, 57, 71, .14);
    transform: translateY(-5px);
  }
}

@media (max-width: 767.98px) {
  #content::before {
    top: 100px;
    right: -105px;
    width: 240px;
    height: 240px;
  }

  #content .divcenter.center::before {
    right: 18px;
    bottom: -12px;
    font-size: 112px;
  }

  #content .bv-event-keyphrase {
    top: 13px;
    left: 20px;
    max-width: calc(100% - 40px);
    padding: 6px 9px 5px;
    border-left-width: 2px;
    border-radius: 6px 15px 6px 15px;
    font-size: 8.5px;
    letter-spacing: .035em;
  }

  #content .col_full img.alignright {
    outline-width: 6px;
    outline-offset: -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #content .col_full,
#content .col_full img.alignright,
#content .feature-box {
    transition: none !important;
  }
}

/* Premium event navigation and asset-free language icons. */
.bv-flag-icon {
  position: relative;
  display: block !important;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #eef3f2;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 1px rgba(6, 63, 77, .13), 0 6px 16px rgba(6, 63, 77, .16);
  flex: 0 0 28px;
  isolation: isolate;
}

.bv-flag-icon::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, .3), transparent 42%, rgba(3, 32, 40, .09));
  content: "";
  pointer-events: none;
}

.bv-flag-icon--ita {
  background: linear-gradient(90deg, #009246 0 33.333%, #fff 33.333% 66.666%, #ce2b37 66.666% 100%);
}

.bv-flag-icon--fr {
  background: linear-gradient(90deg, #002395 0 33.333%, #fff 33.333% 66.666%, #ed2939 66.666% 100%);
}

.bv-flag-icon--de {
  background: linear-gradient(180deg, #171717 0 33.333%, #dd202b 33.333% 66.666%, #f7cf3f 66.666% 100%);
}

.bv-flag-icon--es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.bv-flag-icon--en {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30' preserveAspectRatio='none'%3E%3Cpath fill='%23012169' d='M0 0h60v30H0z'/%3E%3Cpath stroke='%23fff' stroke-width='7' d='M0 0l60 30M60 0L0 30'/%3E%3Cpath stroke='%23c8102e' stroke-width='3.5' d='M0 0l60 30M60 0L0 30'/%3E%3Cpath stroke='%23fff' stroke-width='10' d='M30 0v30M0 15h60'/%3E%3Cpath stroke='%23c8102e' stroke-width='6' d='M30 0v30M0 15h60'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

@media (min-width: 992px) {
  #header-wrap {
    width: min(calc(100% - 32px), 1460px);
    min-height: 104px;
    margin-top: 12px;
    border: 1px solid rgba(6, 63, 77, .075);
    border-radius: 0 0 36px 36px;
    background:
      radial-gradient(circle at 9% 16%, rgba(18, 164, 167, .07), transparent 15rem),
      linear-gradient(135deg, rgba(255, 255, 255, .985), rgba(251, 248, 241, .97));
    box-shadow: 0 24px 68px rgba(4, 48, 60, .14);
  }

  #header-wrap::after {
    position: absolute;
    right: 38px;
    bottom: 0;
    left: 38px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, transparent, rgba(18, 164, 167, .7) 24%, rgba(239, 112, 95, .7) 76%, transparent);
    content: "";
    opacity: .38;
    pointer-events: none;
  }

  #header.sticky-header #header-wrap {
    right: auto;
    left: 50%;
    min-height: 76px;
    border-radius: 0 0 28px 28px;
    transform: translateX(-50%);
  }

  #primary-menu > ul {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  #primary-menu ul li:not(.bv-event-language) > a div {
    min-height: 50px;
    padding: 0 25px;
    border: 0;
    border-radius: 16px 28px 16px 28px;
    color: #fff;
    background: linear-gradient(135deg, #f37664, #e85b4d);
    box-shadow: 0 16px 34px rgba(217, 83, 69, .24);
    line-height: 50px;
    transition: box-shadow .3s ease, transform .3s ease;
  }

  #primary-menu ul li:not(.bv-event-language) > a:hover div,
#primary-menu ul li:not(.bv-event-language) > a:focus-visible div {
    background: linear-gradient(135deg, #f37664, #e85b4d);
    box-shadow: 0 20px 42px rgba(217, 83, 69, .31);
    transform: translateY(-3px);
  }

  #primary-menu ul li.bv-event-language > a {
    padding: 0 !important;
  }

  #primary-menu ul li.bv-event-language > a div {
    display: grid;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    border: 1px solid rgba(6, 63, 77, .095);
    border-radius: 13px;
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 18px rgba(6, 63, 77, .07);
    line-height: 1;
    place-items: center;
    transition: border-color .25s ease, box-shadow .3s ease, transform .3s ease;
  }

  #primary-menu ul li.bv-event-language > a:hover div,
#primary-menu ul li.bv-event-language > a:focus-visible div {
    border-color: rgba(18, 164, 167, .28);
    background: #fff;
    box-shadow: 0 12px 26px rgba(6, 63, 77, .13);
    transform: translateY(-2px);
  }
}

@media (max-width: 991.98px) {
  #primary-menu ul li.bv-event-language > a div {
    min-height: 58px;
    border-color: rgba(6, 63, 77, .09);
    border-radius: 14px 22px 14px 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(239, 247, 244, .84));
  }

  #primary-menu .bv-flag-icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }
}

@media (max-width: 379.98px) {
  #primary-menu .bv-flag-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #primary-menu ul li > a div,
.bv-flag-icon {
    transition: none !important;
  }
}

/* Modern back-to-top shared with the main website. */
#gotoTop.bv-to-top-modern {
  position: fixed;
  z-index: 3250;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(28px, env(safe-area-inset-bottom));
  display: flex !important;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, .27), transparent 43%),
    linear-gradient(145deg, #159ca2 0%, #08717a 58%, #054a55 100%) !important;
  box-shadow: 0 14px 32px rgba(3, 36, 45, .27), inset 0 1px 0 rgba(255, 255, 255, .26), inset 0 -1px 0 rgba(0, 29, 38, .18);
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(.88) !important;
  transform-origin: 50% 100%;
  transition: opacity .25s ease, visibility .25s ease, background .3s ease, border-color .3s ease, box-shadow .35s var(--bv-ease), transform .38s var(--bv-ease) !important;
}

#gotoTop.bv-to-top-modern::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 32px;
  border: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath d='M12 30V3M2 13L12 3l10 10' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
  font-family: inherit;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--bv-ease);
}

#gotoTop.bv-to-top-modern::after {
  display: none;
  content: none;
}

#gotoTop.bv-to-top-modern.bv-to-top-ready {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

#gotoTop.bv-to-top-modern:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(135, 229, 219, .2), 0 16px 36px rgba(3, 36, 45, .3), inset 0 1px 0 rgba(255, 255, 255, .25);
}

#gotoTop.bv-to-top-modern.bv-to-top-ready:active {
  background: linear-gradient(145deg, #07616a, #043f49) !important;
  box-shadow: 0 8px 18px rgba(3, 36, 45, .23), inset 0 2px 4px rgba(0, 25, 34, .2);
  transform: translate3d(0, -1px, 0) scale(.96) !important;
}

body.bv-event-menu-open #gotoTop.bv-to-top-modern,
#gotoTop.bv-to-top-modern.bv-to-top-mobile-footer {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(.88) !important;
}

@media (hover: hover) and (pointer: fine) {
  #gotoTop.bv-to-top-modern.bv-to-top-ready:hover {
    background:
      radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .24), transparent 45%),
      linear-gradient(145deg, #f37a68 0%, #df5e50 100%) !important;
    box-shadow: 0 18px 38px rgba(120, 38, 31, .3), inset 0 1px 0 rgba(255, 255, 255, .24);
    transform: translate3d(0, -4px, 0) scale(1.025) !important;
  }

  #gotoTop.bv-to-top-modern:hover::before {
    transform: translate(-50%, -50%) translateY(-2px);
  }
}

@media (max-width: 767.98px) {
  #gotoTop.bv-to-top-modern {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(94px, calc(84px + env(safe-area-inset-bottom)));
    width: 46px;
    height: 46px;
    border-radius: 15px;
    box-shadow: 0 11px 26px rgba(3, 36, 45, .26), inset 0 1px 0 rgba(255, 255, 255, .22);
  }

  #gotoTop.bv-to-top-modern::before {
    width: 21px;
    height: 28px;
  }
}

@media (max-width: 319.98px) {
  #gotoTop.bv-to-top-modern {
    display: none !important;
  }
}

@media (max-width: 767.98px) and (max-height: 500.98px) and (orientation: landscape) {
  #gotoTop.bv-to-top-modern {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  #gotoTop.bv-to-top-modern::before {
    width: 19px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #gotoTop.bv-to-top-modern,
#gotoTop.bv-to-top-modern::before,
#gotoTop.bv-to-top-modern::after {
    transition: none !important;
  }
}

/* ========================================================================== */
/* Eventi 2026: immersive editorial experience                                */
/* ========================================================================== */

body.bv-events-modern {
  --bv-events-deep: #033945;
  --bv-events-ocean: #075867;
  --bv-events-sea: #0f969b;
  --bv-events-aqua: #33c2bd;
  --bv-events-coral: #f16f5f;
  --bv-events-sand: #f4ecdf;
  --bv-events-paper: #fffdf8;
  --bv-events-shadow: 0 32px 90px rgba(3, 57, 69, .14);
  color: #315a63;
  background: var(--bv-events-paper);
}

body.bv-events-modern #wrapper {
  overflow: clip;
  background: var(--bv-events-paper);
}

body.bv-events-modern #slider {
  height: clamp(690px, 100svh, 980px) !important;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 0 clamp(34px, 5vw, 78px) clamp(34px, 5vw, 78px);
  background: var(--bv-events-deep);
  box-shadow: 0 34px 90px rgba(2, 45, 55, .2);
}

body.bv-events-modern #slider .swiper-container,
body.bv-events-modern #slider .swiper-wrapper,
body.bv-events-modern #slider .swiper-slide {
  height: 100% !important;
}

body.bv-events-modern #slider .swiper-slide {
  position: relative;
  isolation: isolate;
  background-position: center 44% !important;
  background-size: cover !important;
}

body.bv-events-modern #slider .swiper-slide::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 43, 53, .86) 0%, rgba(3, 57, 69, .66) 43%, rgba(3, 57, 69, .17) 78%),
    linear-gradient(180deg, rgba(2, 39, 48, .4) 0%, transparent 36%, rgba(2, 39, 48, .55) 100%);
  content: "";
  pointer-events: none;
}

body.bv-events-modern #slider .swiper-slide::after {
  display: none;
  content: none;
}

body.bv-events-modern #slider .swiper-slide > .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

body.bv-events-modern #slider .slider-caption-center {
  top: 51%;
  left: 50%;
  width: min(1040px, calc(100% - 48px));
  max-width: 1040px;
  padding: clamp(42px, 6vw, 82px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 22px 78px 22px 78px;
  background: linear-gradient(135deg, rgba(3, 54, 66, .82), rgba(3, 54, 66, .5));
  box-shadow: 0 34px 100px rgba(0, 25, 33, .3), inset 0 1px 0 rgba(255, 255, 255, .14);
  text-align: left;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.bv-events-modern #slider .slider-caption-center::before {
  display: block;
  width: 74px;
  height: 5px;
  margin-bottom: clamp(24px, 3vw, 38px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bv-events-aqua), var(--bv-events-coral));
  box-shadow: 0 8px 24px rgba(51, 194, 189, .32);
  content: "";
}

body.bv-events-modern #slider .slider-caption h2 {
  max-width: 870px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6.1vw, 88px);
  font-weight: 690;
  line-height: .96;
  letter-spacing: -.06em;
  text-shadow: 0 8px 34px rgba(0, 21, 28, .2);
}

body.bv-events-modern #slider .slider-caption p {
  display: inline-flex;
  margin: clamp(25px, 3vw, 38px) 0 0;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .1);
  font-family: var(--bv-font-body) !important;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .01em;
}

body.bv-events-modern #content {
  background:
    radial-gradient(circle at 96% 6%, rgba(51, 194, 189, .14), transparent 27rem),
    radial-gradient(circle at 1% 48%, rgba(241, 111, 95, .08), transparent 25rem),
    linear-gradient(180deg, #f7faf7 0%, #f4ecdf 100%);
}

body.bv-events-modern #content::before {
  top: 240px;
  right: -180px;
  width: 440px;
  height: 440px;
  border-color: rgba(15, 150, 155, .09);
  box-shadow: inset 0 0 0 58px rgba(255, 255, 255, .24);
}

body.bv-events-modern #content .content-wrap {
  padding: clamp(78px, 8vw, 138px) 0 clamp(90px, 9vw, 150px);
}

body.bv-events-modern #content .content-wrap > .container {
  width: min(calc(100% - 48px), 1380px);
  max-width: 1380px;
  padding-right: 0;
  padding-left: 0;
}

body.bv-events-modern #content .container > br {
  display: none;
}

body.bv-events-modern #content .bv-event-intro {
  position: relative;
  max-width: 1200px !important;
  margin: 0 auto clamp(84px, 9vw, 140px);
  padding: clamp(48px, 6vw, 86px) clamp(38px, 7vw, 96px);
  border: 1px solid rgba(15, 150, 155, .17);
  border-top: 0;
  border-radius: 22px 78px 22px 78px;
  background:
    linear-gradient(90deg, var(--bv-events-aqua), var(--bv-events-coral)) top / 100% 6px no-repeat,
    rgba(255, 253, 248, .95);
  box-shadow: var(--bv-events-shadow);
}

body.bv-events-modern #content .bv-event-intro::before {
  display: none;
  content: none;
}

body.bv-events-modern #content .bv-event-intro h1 {
  max-width: 920px;
  margin: 0 0 30px;
  color: var(--bv-events-deep);
  font-size: clamp(42px, 5.7vw, 78px);
  font-weight: 690;
  line-height: .99;
  letter-spacing: -.055em;
}

body.bv-events-modern #content .bv-event-intro h4 {
  max-width: 900px;
  margin: 0 0 36px;
  color: #496970;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.72;
}

body.bv-events-modern #content .bv-event-section-title {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  margin: 0 0 clamp(42px, 5vw, 72px);
  color: var(--bv-events-deep);
  font-size: clamp(37px, 5vw, 65px);
  font-weight: 690;
  line-height: 1;
  letter-spacing: -.05em;
}

body.bv-events-modern #content .bv-event-section-title::after {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 150, 155, .48), rgba(15, 150, 155, 0));
  content: "";
}

body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card:nth-of-type(even) {
  display: grid;
  grid-template-areas: "media content";
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  min-height: 560px;
  margin: 0 0 clamp(34px, 4vw, 58px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(15, 150, 155, .16);
  border-radius: 24px 82px 24px 82px;
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 28px 84px rgba(3, 57, 69, .13);
  transition: border-color .35s ease, box-shadow .45s var(--bv-ease), transform .45s var(--bv-ease);
}

body.bv-events-modern #content .bv-event-card--reverse,
body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even) {
  grid-template-areas: "content media";
  grid-template-columns: minmax(440px, .98fr) minmax(0, 1.02fr);
  border-radius: 82px 24px 82px 24px;
}

body.bv-events-modern #content .bv-event-card__media {
  position: relative;
  grid-area: media;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--bv-events-deep);
}

body.bv-events-modern #content .bv-event-card__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(2, 45, 55, .28) 100%),
    linear-gradient(90deg, rgba(15, 150, 155, .09), transparent 35%);
  content: "";
  pointer-events: none;
}

body.bv-events-modern #content .bv-event-card__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 560px;
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1.002) !important;
  transition: filter .5s ease, transform .75s var(--bv-ease) !important;
}

body.bv-events-modern #content .bv-event-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  grid-area: content;
  min-width: 0;
  padding: clamp(44px, 5.4vw, 78px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(51, 194, 189, .11), transparent 18rem),
    rgba(255, 253, 248, .97);
}

body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__content {
  background:
    radial-gradient(circle at 0% 100%, rgba(241, 111, 95, .09), transparent 18rem),
    rgba(255, 253, 248, .97);
}

body.bv-events-modern #content .bv-event-card .bv-event-keyphrase {
  position: static;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 8px 13px 7px;
  border: 1px solid rgba(15, 150, 155, .17);
  border-left: 3px solid var(--bv-events-sea);
  border-radius: 8px 20px 8px 20px;
  color: #087780;
  background: rgba(224, 245, 241, .7);
  box-shadow: none;
  font-size: 11px !important;
  font-weight: 780;
  line-height: 1.35 !important;
  letter-spacing: .055em;
  text-transform: uppercase;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.bv-events-modern #content .bv-event-card .fancy-title {
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

body.bv-events-modern #content .bv-event-card .fancy-title h3 {
  max-width: 560px;
  margin: 0;
  padding: 0;
  color: var(--bv-events-deep);
  background: transparent;
  font-size: clamp(34px, 3.35vw, 52px);
  font-weight: 690;
  line-height: 1.02;
  letter-spacing: -.052em;
  text-transform: none;
}

body.bv-events-modern #content .bv-event-card__content > p:not(.bv-event-keyphrase) {
  width: 100%;
  max-width: 620px;
  margin: 0;
  color: #496970;
  font-size: 17px !important;
  line-height: 1.72 !important;
}

body.bv-events-modern #content .bv-event-card__content > p b,
body.bv-events-modern #content .bv-event-card__content > p strong {
  color: #143f49;
  font-size: 18px !important;
  font-weight: 680;
}

body.bv-events-modern #content .bv-event-card .button {
  margin-top: 30px;
  align-self: flex-start;
}

body.bv-events-modern #content .bv-event-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(58px, 7vw, 98px);
}

body.bv-events-modern #content .bv-event-highlights .col_one_fourth {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

body.bv-events-modern #content .bv-event-highlights .feature-box,
body.bv-events-modern #content .bv-event-highlights .col_one_fourth:nth-of-type(even) .feature-box {
  display: flex;
  min-height: 290px;
  height: 100%;
  margin: 0;
  padding: 36px 28px 32px;
  overflow: hidden;
  border: 1px solid rgba(15, 150, 155, .16);
  border-radius: 18px 44px 18px 44px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background:
    linear-gradient(90deg, var(--bv-events-aqua), var(--bv-events-coral)) top / 100% 4px no-repeat,
    rgba(255, 253, 248, .95);
  box-shadow: 0 22px 58px rgba(3, 57, 69, .1);
}

body.bv-events-modern #content .bv-event-highlights .col_one_fourth:nth-child(even) .feature-box {
  border-radius: 44px 18px 44px 18px;
}

body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon {
  position: static;
  width: 66px;
  height: 66px;
  margin: 0 0 28px;
}

body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon i {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(15, 150, 155, .18) !important;
  border-radius: 17px 29px 17px 29px;
  color: var(--bv-events-deep);
  background: #e4f5f1;
  box-shadow: none;
  font-size: 27px;
  line-height: 64px;
}

body.bv-events-modern #content .bv-event-highlights .feature-box h3 {
  margin: auto 0 0;
  color: var(--bv-events-deep);
  font-size: 20px;
  font-weight: 690;
  line-height: 1.15;
  letter-spacing: -.03em;
  text-transform: none;
}

body.bv-events-modern #content .bv-event-highlights .feature-box h3 .subtitle {
  margin: 14px 0 0;
  color: #58747a;
  font-size: 14.5px;
  font-weight: 480;
  line-height: 1.55;
  letter-spacing: -.01em;
}

body.bv-events-modern #footer {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-radius: clamp(32px, 5vw, 72px) clamp(32px, 5vw, 72px) 0 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(51, 194, 189, .12), transparent 28rem),
    linear-gradient(145deg, #063f4d, #032f39) !important;
  box-shadow: 0 -24px 70px rgba(3, 47, 57, .11);
}

body.bv-events-modern #slider .slider-caption h2,
body.bv-events-modern #content .bv-event-intro h1,
body.bv-events-modern #content .bv-event-card__content,
body.bv-events-modern #content .bv-event-highlights .feature-box h3,
body.bv-events-modern #content .bv-event-highlights .feature-box .subtitle {
  overflow-wrap: anywhere;
  hyphens: none;
}

@media (hover: hover) and (pointer: fine) {
  body.bv-events-modern #content .bv-event-card:hover {
    border-color: rgba(15, 150, 155, .3);
    box-shadow: 0 40px 104px rgba(3, 57, 69, .18);
    transform: translateY(-7px);
  }

  body.bv-events-modern #content .bv-event-card:hover .bv-event-card__media img {
    filter: saturate(1.07) contrast(1.025);
    transform: scale(1.045) !important;
  }

  body.bv-events-modern #content .bv-event-highlights .feature-box:hover {
    border-color: rgba(15, 150, 155, .28);
    box-shadow: 0 30px 72px rgba(3, 57, 69, .15);
    transform: translateY(-6px);
  }
}

@media (max-width: 1199.98px) {
  body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card:nth-of-type(even) {
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
  }

  body.bv-events-modern #content .bv-event-card--reverse,
body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even) {
    grid-template-columns: minmax(400px, 1.1fr) minmax(0, .9fr);
  }

  body.bv-events-modern #content .bv-event-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body.bv-events-modern #slider {
    height: max(680px, 100svh) !important;
  }

  body.bv-events-modern #slider .slider-caption-center {
    top: 54%;
    width: min(860px, calc(100% - 38px));
    border-radius: 20px 58px 20px 58px;
  }

  body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card:nth-of-type(even),
body.bv-events-modern #content .bv-event-card--reverse,
body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even) {
    grid-template-areas:
      "media"
      "content";
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    border-radius: 20px 58px 20px 58px;
  }

  body.bv-events-modern #content .bv-event-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  body.bv-events-modern #content .bv-event-card__media img {
    min-height: 0;
  }

  body.bv-events-modern #content .bv-event-card__content {
    padding: clamp(40px, 7vw, 68px);
  }

  body.bv-events-modern #content .bv-event-card .fancy-title h3,
body.bv-events-modern #content .bv-event-card__content > p:not(.bv-event-keyphrase) {
    max-width: 760px;
  }
}

@media (max-width: 767.98px) {
  body.bv-events-modern #slider {
    height: max(630px, 100svh) !important;
    min-height: 630px;
    border-radius: 0 0 30px 30px;
  }

  body.bv-events-modern #slider .swiper-slide {
    background-position: 58% center !important;
  }

  body.bv-events-modern #slider .swiper-slide::before {
    background:
      linear-gradient(90deg, rgba(2, 43, 53, .82), rgba(3, 57, 69, .42)),
      linear-gradient(180deg, rgba(2, 39, 48, .35), transparent 30%, rgba(2, 39, 48, .56));
  }

  body.bv-events-modern #slider .slider-caption-center {
    top: 55%;
    width: calc(100% - 24px);
    padding: 38px 26px 42px;
    border-radius: 17px 42px 17px 42px;
  }

  body.bv-events-modern #slider .slider-caption-center::before {
    width: 58px;
    height: 4px;
    margin-bottom: 24px;
  }

  body.bv-events-modern #slider .slider-caption h2 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: .98;
  }

  body.bv-events-modern #slider .slider-caption p {
    font-size: 15px;
  }

  body.bv-events-modern #content .content-wrap {
    padding: 64px 0 82px;
  }

  body.bv-events-modern #content .content-wrap > .container {
    width: calc(100% - 20px);
  }

  body.bv-events-modern #content .bv-event-intro {
    margin-bottom: 72px;
    padding: 42px 25px 44px;
    border-radius: 16px 40px 16px 40px;
  }

  body.bv-events-modern #content .bv-event-intro h1 {
    margin-bottom: 24px;
    font-size: clamp(34px, 10.8vw, 48px);
  }

  body.bv-events-modern #content .bv-event-intro h4 {
    margin-bottom: 30px;
    font-size: 16.5px;
    line-height: 1.67;
  }

  body.bv-events-modern #content .bv-event-section-title {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
    font-size: clamp(34px, 10vw, 47px);
  }

  body.bv-events-modern #content .bv-event-section-title::after {
    width: 92px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bv-events-aqua), var(--bv-events-coral));
  }

  body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card:nth-of-type(even),
body.bv-events-modern #content .bv-event-card--reverse,
body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even) {
    margin-bottom: 24px;
    padding: 0;
    border-radius: 15px 38px 15px 38px;
  }

  body.bv-events-modern #content .bv-event-card__media {
    aspect-ratio: 4 / 3;
  }

  body.bv-events-modern #content .bv-event-card__content {
    padding: 34px 23px 38px;
  }

  body.bv-events-modern #content .bv-event-card .bv-event-keyphrase {
    margin-bottom: 18px;
    font-size: 9.5px !important;
  }

  body.bv-events-modern #content .bv-event-card .fancy-title {
    margin-bottom: 20px;
  }

  body.bv-events-modern #content .bv-event-card .fancy-title h3 {
    font-size: clamp(31px, 9.4vw, 43px);
  }

  body.bv-events-modern #content .bv-event-card__content > p:not(.bv-event-keyphrase),
body.bv-events-modern #content .bv-event-card__content > p b,
body.bv-events-modern #content .bv-event-card__content > p strong {
    font-size: 16px !important;
  }

  body.bv-events-modern #content .bv-event-card .button {
    width: 100%;
    margin-top: 26px;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
  }

  body.bv-events-modern #content .bv-event-highlights {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 52px;
  }

  body.bv-events-modern #content .bv-event-highlights .feature-box,
body.bv-events-modern #content .bv-event-highlights .col_one_fourth:nth-of-type(even) .feature-box,
body.bv-events-modern #content .bv-event-highlights .col_one_fourth:nth-child(even) .feature-box {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 14px 34px 14px 34px;
  }

  body.bv-events-modern #footer {
    border-radius: 30px 30px 0 0;
  }
}

@media (max-width: 419.98px) {
  body.bv-events-modern #slider .slider-caption-center {
    top: 56%;
    padding: 31px 20px 35px;
  }

  body.bv-events-modern #slider .slider-caption h2 {
    font-size: clamp(34px, 11.6vw, 45px);
  }

  body.bv-events-modern #content .bv-event-intro,
body.bv-events-modern #content .bv-event-card__content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 991.98px) and (max-height: 650px) {
  body.bv-events-modern #slider .slider-caption-center {
    top: 55% !important;
  }
}

@media (max-width: 900px) and (max-height: 560px) and (orientation: landscape) {
  body.bv-events-modern #slider {
    height: 560px !important;
    min-height: 560px;
  }

  body.bv-events-modern #slider .slider-caption-center {
    top: 56% !important;
    width: min(820px, calc(100% - 112px));
    padding: 26px 36px 30px;
  }

  body.bv-events-modern #slider .slider-caption-center::before {
    margin-bottom: 17px;
  }

  body.bv-events-modern #slider .slider-caption h2 {
    font-size: clamp(37px, 6vw, 52px);
  }

  body.bv-events-modern #slider .slider-caption p {
    margin-top: 16px;
    padding: 8px 13px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card__media img,
body.bv-events-modern #content .bv-event-highlights .feature-box {
    transition: none !important;
  }
}

/* Final typographic legibility layer: consistent with the multilingual website. */
:root {
  --bv-font-body: "Manrope", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --bv-font-display: "Sora", "Manrope", "Segoe UI Variable", sans-serif;
}

body.stretched {
  font-size: 18px;
  font-variation-settings: normal;
}

body.stretched p,
body.stretched li {
  font-size: clamp(17.5px, 1.08vw, 19.5px);
  line-height: 1.72;
}

#primary-menu ul li > a,
#primary-menu ul li > a div {
  font-size: 13.5px;
}

#content .button,
#primary-menu .bv-event-official-link > a {
  font-size: 13.5px;
}

body.bv-events-modern #content .bv-event-card .bv-event-keyphrase {
  font-size: clamp(10.75px, .82vw, 12.5px) !important;
  line-height: 1.45;
}

body.bv-events-modern #content .bv-event-card__content > p:not(.bv-event-keyphrase),
body.bv-events-modern #content .bv-event-card__content > p b,
body.bv-events-modern #content .bv-event-card__content > p strong {
  font-size: 18px !important;
}

#content .feature-box h3 .subtitle {
  font-size: 15.5px;
}

@media (max-width: 991.98px) {
  #primary-menu ul li.bv-event-main-link > a div,
#primary-menu ul li.bv-event-official-link > a div {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  body.stretched {
    font-size: 17px;
  }

  body.stretched p,
body.stretched li {
    font-size: 17px;
    line-height: 1.7;
  }

  body.bv-events-modern #content .bv-event-card .bv-event-keyphrase {
    font-size: 10.75px !important;
  }

  body.bv-events-modern #content .bv-event-card__content > p:not(.bv-event-keyphrase),
body.bv-events-modern #content .bv-event-card__content > p b,
body.bv-events-modern #content .bv-event-card__content > p strong {
    font-size: 17px !important;
  }

  #slider .slider-caption p {
    font-size: 16px;
  }
}

/* WCAG 2.2 AA contrast layer for the event microsite. */
:root {
  --bv-sea: #08717a;
  --bv-coral: #b8443a;
  --bv-coral-dark: #983129;
  --bv-event-aqua: #08717a;
  --bv-event-coral: #b8443a;
}

#content p a:not(.button),
#content address a:not(.button),
#copyrights p a:not(.button),
#copyrights .technical-cookie-notice a,
#copyrights .footer-corporate__credit a {
  text-decoration: underline;
  text-decoration-thickness: .1em;
  text-underline-offset: .18em;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #fff !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 6px #063f4d !important;
}

.button.button-3d,
.button.button-teal,
#primary-menu .bv-event-official-link > a,
#primary-menu .bv-event-official-link > a > div {
  border-color: #b8443a !important;
  color: #fff !important;
  background: linear-gradient(135deg, #b8443a 0%, #a83a31 100%) !important;
}

.button.button-3d:hover,
.button.button-3d:focus,
.button.button-teal:hover,
.button.button-teal:focus,
#primary-menu .bv-event-official-link > a:hover,
#primary-menu .bv-event-official-link > a:focus-visible,
#primary-menu .bv-event-official-link > a:hover > div,
#primary-menu .bv-event-official-link > a:focus-visible > div {
  border-color: #983129 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #a83a31 0%, #8d2d27 100%) !important;
}

#content .divcenter.center h1 span {
  color: #08717a;
}

#gotoTop.bv-to-top-modern:hover {
  color: #fff !important;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .24), transparent 45%),
    linear-gradient(145deg, #f37a68 0%, #df5e50 100%) !important;
}

#gotoTop.bv-to-top-modern:focus-visible {
  color: #fff !important;
  outline: none !important;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, .28), transparent 43%),
    linear-gradient(145deg, #159ca2 0%, #08717a 58%, #054a55 100%) !important;
}

#copyrights .footer-corporate__credit,
#copyrights .footer-corporate__credit a,
#copyrights .footer-corporate__copyright,
#copyrights .footer-corporate__address,
#copyrights .technical-cookie-notice,
#copyrights .technical-cookie-notice a {
  color: rgba(255, 255, 255, .84);
}

/* Keep the event hero centred even when the legacy parallax script writes
   inline top/transform values on the caption. */
body.bv-events-modern #slider .slider-caption-center {
  position: absolute !important;
  top: 51% !important;
  right: auto !important;
  left: 50% !important;
  width: min(1040px, calc(100vw - 48px)) !important;
  max-width: calc(100vw - 48px) !important;
  margin: 0 !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%) !important;
}

@media (max-width: 767.98px) {
  body.bv-events-modern #slider .slider-caption-center {
    top: 55% !important;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }
}

@media (max-width: 419.98px) {
  body.bv-events-modern #slider .slider-caption-center {
    top: 56% !important;
    padding: 31px 20px 35px;
  }
}

@media (max-width: 359.98px) {
  body.bv-events-modern #slider .slider-caption-center {
    padding: 28px 18px 32px;
  }
}

/* WCAG AA: the compact legal labels sit on the dark event footer. */
#copyrights .footer-corporate__legal-label {
  color: #9fe3dc !important;
}

/* Never add automatic hyphens when multilingual copy wraps. */
html,
body,
body :where(h1, h2, h3, h4, h5, h6, p, li, a, span, strong, em, small, address, figcaption, label, button) {
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  hyphens: none !important;
}

/* Stable,
crisp language flags: hover must never rotate,
scale or clip them. */
.bv-flag-icon {
  box-sizing: border-box;
  overflow: hidden !important;
  border-radius: 50% !important;
  background-position: center !important;
  transform: none !important;
  transform-origin: center;
  backface-visibility: hidden;
  transition: filter .22s ease, box-shadow .22s ease !important;
}

.bv-flag-icon::after {
  border-radius: 50% !important;
}

#primary-menu ul li.bv-event-language > a,
#primary-menu ul li.bv-event-language > a > div {
  overflow: visible !important;
}

#primary-menu ul li.bv-event-language > a:hover > div,
#primary-menu ul li.bv-event-language > a:focus-visible > div {
  transform: translateY(-2px) !important;
}

#primary-menu ul li.bv-event-language > a:hover .bv-flag-icon,
#primary-menu ul li.bv-event-language > a:focus-visible .bv-flag-icon {
  filter: saturate(1.06) contrast(1.02);
  transform: none !important;
}

@media (max-width: 900px) and (max-height: 560px) and (orientation: landscape) {
  body.bv-events-modern #slider .slider-caption-center {
    top: 56% !important;
    width: min(820px, calc(100vw - 112px)) !important;
    max-width: calc(100vw - 112px) !important;
  }
}

/* Exact anchor alignment for direct links and keyboard skip navigation. */
[id] {
  scroll-margin-top: var(--bv-anchor-offset, 92px) !important;
}

@media (max-width: 991.98px) {
  [id] {
    scroll-margin-top: var(--bv-anchor-offset, 100px) !important;
  }
}

/* Keep wrapped event headings clearly separated at every viewport. */
body.bv-events-modern h1,
body.bv-events-modern h2 {
  line-height: 1.18 !important;
}

body.bv-events-modern h3 {
  line-height: 1.22 !important;
}

body.bv-events-modern h4,
body.bv-events-modern h5,
body.bv-events-modern h6 {
  line-height: 1.3 !important;
}

/* Let the unmodified logo canvas inherit the navigation surface visually. */
#logo,
#header.sticky-header:not(.static-sticky) #logo {
  background: transparent !important;
  mix-blend-mode: normal;
}

#logo img,
#header.sticky-header:not(.static-sticky) #logo img {
  background: transparent !important;
  filter: none !important;
  mix-blend-mode: darken;
}

/* 2026 event-page refinement: balanced navigation and a calmer editorial rhythm. */
@media (min-width: 992px) {
  #header,
  #header.full-header,
  #header.transparent-header {
    height: 116px;
  }

  #header-wrap,
  #header.sticky-header #header-wrap {
    width: min(calc(100% - 32px), 1320px);
    min-height: 100px;
    margin-top: 12px;
    border-radius: 0 0 34px 34px;
  }

  #header-wrap > .container,
  #header.full-header #header-wrap > .container {
    position: relative;
    display: flex;
    width: min(calc(100% - 56px), 1200px) !important;
    max-width: 1200px !important;
    height: 98px;
    min-height: 98px;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
  }

  #logo,
  #header.full-header #logo,
  #header.sticky-header:not(.static-sticky) #logo {
    position: absolute !important;
    z-index: 4;
    top: 50%;
    left: 50%;
    float: none !important;
    width: 100px !important;
    height: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    transform: translate(-50%, -50%);
  }

  #logo > a,
  #header.sticky-header:not(.static-sticky) #logo > a {
    width: 100% !important;
    height: 80px !important;
    line-height: 80px !important;
    text-align: center;
  }

  #logo img,
  #header.sticky-header:not(.static-sticky) #logo img {
    width: auto !important;
    max-width: 96px !important;
    height: 76px !important;
    margin: 0 auto;
    object-fit: contain;
  }

  #primary-menu {
    position: relative;
    z-index: 3;
    display: flex;
    float: none !important;
    width: 100% !important;
    height: 98px !important;
    margin: 0 !important;
    align-items: center;
  }

  #primary-menu > ul {
    display: flex !important;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    align-items: center;
    gap: 8px;
  }

  #primary-menu .bv-event-menu-head,
  #primary-menu .bv-event-language-title {
    display: none !important;
  }

  #primary-menu .bv-event-official-link {
    margin-right: auto !important;
  }

  #primary-menu .bv-event-language-title + .bv-event-language {
    margin-left: auto !important;
  }

  #primary-menu .bv-event-official-link > a {
    height: 54px !important;
    padding: 0 !important;
    line-height: 54px !important;
  }

  #primary-menu .bv-event-official-link > a > div {
    display: flex;
    min-width: 214px;
    min-height: 54px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    border-radius: 17px 29px 17px 29px;
    line-height: 1.2;
    text-align: center;
  }

  #primary-menu ul li.bv-event-language > a,
  #primary-menu ul li.bv-event-language > a > div {
    height: 44px !important;
    min-height: 44px;
  }

  #primary-menu ul li.bv-event-language > a > div {
    width: 44px;
    min-width: 44px;
    border-radius: 14px 21px 14px 21px;
  }

  #header.sticky-header #header-wrap {
    min-height: 78px;
    margin-top: 0;
    border-radius: 0 0 27px 27px;
  }

  #header.sticky-header #header-wrap > .container,
  #header.sticky-header #primary-menu {
    height: 76px !important;
    min-height: 76px;
  }

  #header.sticky-header:not(.static-sticky) #logo,
  #header.sticky-header:not(.static-sticky) #logo > a {
    height: 66px !important;
    line-height: 66px !important;
  }

  #header.sticky-header:not(.static-sticky) #logo img {
    height: 62px !important;
  }
}

body.bv-events-modern #content .content-wrap > .container {
  width: min(calc(100% - 48px), 1240px);
  max-width: 1240px;
}

body.bv-events-modern #content .bv-event-intro {
  width: 100% !important;
  max-width: 1120px !important;
}

body.bv-events-modern #content .bv-event-section-title,
body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card:nth-of-type(even),
body.bv-events-modern #content .bv-event-card--reverse,
body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even),
body.bv-events-modern #content .bv-event-highlights {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

body.bv-events-modern #content .bv-event-section-title {
  grid-template-columns: minmax(54px, 1fr) auto minmax(54px, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  text-align: center;
}

body.bv-events-modern #content .bv-event-section-title::before,
body.bv-events-modern #content .bv-event-section-title::after {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 150, 155, .56));
  content: "";
}

body.bv-events-modern #content .bv-event-section-title::after {
  background: linear-gradient(90deg, rgba(15, 150, 155, .56), transparent);
}

body.bv-events-modern #content .bv-event-section-title > span {
  max-width: 720px;
}

body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card:nth-of-type(even) {
  margin-bottom: clamp(38px, 4.5vw, 64px);
  box-shadow: 0 30px 86px rgba(3, 57, 69, .14);
}

body.bv-events-modern #content .bv-event-highlights {
  margin-top: clamp(62px, 7vw, 104px);
}

@media (max-width: 991.98px) {
  #header-wrap > .container,
#header.full-header #header-wrap > .container {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    box-sizing: border-box;
  }

  body.bv-events-modern #content .content-wrap > .container {
    width: calc(100% - 32px) !important;
    max-width: none !important;
  }

  body.bv-events-modern #content .bv-event-intro,
body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card:nth-of-type(even),
body.bv-events-modern #content .bv-event-card--reverse,
body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even),
body.bv-events-modern #content .bv-event-highlights {
    width: 100% !important;
    max-width: none !important;
  }

  body.bv-events-modern #content .bv-event-section-title {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  body.bv-events-modern #content .content-wrap > .container {
    width: calc(100% - 24px) !important;
  }

  body.bv-events-modern #content .bv-event-intro {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body.bv-events-modern #content .bv-event-section-title {
    display: flex;
    gap: 17px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  body.bv-events-modern #content .bv-event-section-title::before {
    display: none;
  }

  body.bv-events-modern #content .bv-event-section-title::after {
    width: 96px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bv-events-aqua), var(--bv-events-coral));
  }
}

@media (max-width: 359.98px) {
  body.bv-events-modern #content .content-wrap > .container {
    width: calc(100% - 18px) !important;
  }

  body.bv-events-modern #content .bv-event-intro,
body.bv-events-modern #content .bv-event-card__content {
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* Frequently asked questions — editorial accordion shared by every language. */
.bv-faq {
  --bv-faq-deep: #073f4a;
  --bv-faq-deeper: #052f38;
  --bv-faq-aqua: #56d2c8;
  --bv-faq-coral: #f36d60;
  --bv-faq-paper: #fffdf9;
  --bv-faq-ink: #083d49;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(70px, 8vw, 128px) max(18px, env(safe-area-inset-right)) clamp(74px, 8vw, 132px) max(18px, env(safe-area-inset-left));
  color: #fff;
  background:
    radial-gradient(circle at 8% 16%, rgba(86, 210, 200, .22), transparent 27%),
    radial-gradient(circle at 94% 88%, rgba(243, 109, 96, .16), transparent 29%),
    linear-gradient(135deg, var(--bv-faq-deep), var(--bv-faq-deeper));
}

.bv-faq::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.bv-faq::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(320px, 46vw);
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--bv-faq-aqua), var(--bv-faq-coral));
  content: "";
  transform: translateX(-50%);
}

.bv-faq__container {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.38fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  width: min(1420px, 100%);
  margin: 0 auto;
}

.bv-faq__header {
  max-width: 520px;
  padding-top: 8px;
}

.bv-faq__eyebrow {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 22px;
  color: #bff7f2;
  font-size: clamp(12px, .86vw, 14px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.bv-faq__eyebrow::before {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--bv-faq-coral);
  box-shadow: 0 0 0 7px rgba(243, 109, 96, .14);
  content: "";
}

.bv-faq .bv-faq__header h2 {
  max-width: 620px;
  margin: 0;
  color: #fff !important;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(40px, 5.1vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.bv-faq__intro {
  max-width: 520px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: #e8f6f5;
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 500;
  line-height: 1.75;
}

.bv-faq__count {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding: 8px 18px 8px 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #eaf8f7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bv-faq__count strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--bv-faq-deeper);
  background: var(--bv-faq-aqua);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 14px;
}

.bv-faq__list {
  display: grid;
  gap: 15px;
  min-width: 0;
}

.bv-faq__item {
  overflow: hidden;
  border: 1px solid rgba(154, 207, 204, .72);
  border-radius: 25px;
  color: var(--bv-faq-ink);
  background: var(--bv-faq-paper);
  box-shadow: 0 18px 45px rgba(0, 23, 29, .16);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.bv-faq__item:hover {
  border-color: var(--bv-faq-aqua);
  box-shadow: 0 22px 55px rgba(0, 23, 29, .23);
  transform: translateY(-2px);
}

.bv-faq__item[open] {
  border-color: rgba(86, 210, 200, .95);
  background: linear-gradient(135deg, #fffdf9, #f2fbfa);
}

.bv-faq__item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  min-height: 92px;
  padding: 20px clamp(19px, 2.3vw, 30px);
  color: var(--bv-faq-ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.bv-faq__item summary::-webkit-details-marker {
  display: none;
}

.bv-faq__item summary:focus-visible {
  outline: 3px solid var(--bv-faq-coral);
  outline-offset: -5px;
  border-radius: 21px;
}

.bv-faq__index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #c5e5e2;
  border-radius: 15px;
  color: #086a76;
  background: #e9f7f5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
}

.bv-faq__question {
  min-width: 0;
  color: var(--bv-faq-ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(17px, 1.34vw, 21px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.018em;
  overflow-wrap: break-word;
  hyphens: none;
}

.bv-faq__toggle {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid #add7d4;
  border-radius: 50%;
  background: #f1f9f8;
  transition: border-color .25s ease, background .25s ease, transform .35s var(--bv-ease, cubic-bezier(.2, .8, .2, 1));
}

.bv-faq__toggle::before,
.bv-faq__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: #086a76;
  content: "";
  transform: translate(-50%, -50%);
}

.bv-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.bv-faq__item[open] .bv-faq__toggle {
  border-color: var(--bv-faq-coral);
  background: var(--bv-faq-coral);
  transform: rotate(45deg);
}

.bv-faq__item[open] .bv-faq__toggle::before,
.bv-faq__item[open] .bv-faq__toggle::after {
  background: #fff;
}

.bv-faq__answer {
  padding: 0 clamp(20px, 3vw, 34px) clamp(24px, 3vw, 32px) clamp(86px, 7vw, 104px);
}

.bv-faq__answer::before {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 18px;
  background: linear-gradient(90deg, rgba(8, 106, 118, .27), transparent);
  content: "";
}

.bv-faq__answer p {
  margin: 0;
  color: #355c64;
  font-size: clamp(15.5px, 1.08vw, 18px);
  font-weight: 500;
  line-height: 1.72;
  overflow-wrap: break-word;
  hyphens: none;
}

@media (max-width: 991.98px) {
  .bv-faq__container {
    grid-template-columns: 1fr;
  }

  .bv-faq__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
    max-width: none;
  }

  .bv-faq__eyebrow,
.bv-faq__intro {
    grid-column: 1;
  }

  .bv-faq .bv-faq__header h2 {
    grid-column: 1;
  }

  .bv-faq__count {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    margin: 0;
  }
}

@media (max-width: 639.98px) {
  .bv-faq {
    padding: 60px max(12px, env(safe-area-inset-right)) 64px max(12px, env(safe-area-inset-left));
  }

  .bv-faq::before {
    background-size: 48px 48px;
  }

  .bv-faq__container {
    gap: 32px;
  }

  .bv-faq__header {
    display: block;
    padding: 0 6px;
  }

  .bv-faq__eyebrow {
    margin-bottom: 16px;
  }

  .bv-faq .bv-faq__header h2 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.12;
  }

  .bv-faq__intro {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .bv-faq__count {
    margin-top: 24px;
  }

  .bv-faq__item {
    border-radius: 20px;
  }

  .bv-faq__item:hover {
    transform: none;
  }

  .bv-faq__item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
    min-height: 82px;
    padding: 16px 14px;
  }

  .bv-faq__index {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 11px;
  }

  .bv-faq__question {
    font-size: clamp(15.5px, 4.5vw, 18px);
    line-height: 1.42;
  }

  .bv-faq__toggle {
    width: 36px;
    height: 36px;
  }

  .bv-faq__toggle::before,
.bv-faq__toggle::after {
    width: 13px;
  }

  .bv-faq__answer {
    padding: 0 17px 21px 63px;
  }

  .bv-faq__answer::before {
    margin-bottom: 14px;
  }

  .bv-faq__answer p {
    font-size: 15.5px;
    line-height: 1.67;
  }
}

@media (max-width: 359.98px) {
  .bv-faq__item summary {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .bv-faq__toggle {
    display: none;
  }

  .bv-faq__answer {
    padding-left: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bv-faq__item,
.bv-faq__toggle {
    transition: none;
  }
}

/* End frequently asked questions. */

/* FAQ topic badge: page-specific local context replaces the generic counter. */
.bv-faq__count {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 58px;
  padding: 9px 20px 9px 9px;
  box-sizing: border-box;
  align-items: center;
  gap: 13px;
  border-color: rgba(255, 255, 255, .24);
  color: #f1fbfa;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 14px 34px rgba(1, 28, 35, .13);
  letter-spacing: normal;
  text-transform: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bv-faq__count::before {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--bv-faq-deeper) 0 3px, transparent 3.5px),
    linear-gradient(145deg, var(--bv-faq-aqua), #75e2d8);
  box-shadow: 0 9px 22px rgba(1, 29, 36, .22), inset 0 1px 0 rgba(255, 255, 255, .42);
  content: "";
}

.bv-faq__count strong {
  display: none;
}

.bv-faq__count span {
  min-width: 0;
  max-width: 420px;
  color: inherit;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: clamp(11.5px, .82vw, 13px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .07em;
  text-align: left;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

@media (max-width: 991.98px) {
  .bv-faq__header {
    display: block;
  }

  .bv-faq__count {
    margin-top: 28px;
  }
}

@media (max-width: 479.98px) {
  .bv-faq__count {
    width: 100%;
    min-height: 56px;
    padding: 9px 14px 9px 9px;
    border-radius: 22px;
  }

  .bv-faq__count::before {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .bv-faq__count span {
    max-width: none;
    font-size: 11px;
    letter-spacing: .055em;
  }
}

/* Final multiline-title safeguard for every translated event heading. */
body.bv-events-modern h1,
body.bv-events-modern h2 {
  line-height: 1.18 !important;
  overflow-wrap: break-word;
  text-wrap: balance;
}

body.bv-events-modern h3 {
  line-height: 1.22 !important;
  overflow-wrap: break-word;
  text-wrap: balance;
}

@media (max-width: 767.98px) {
  body.bv-events-modern h1,
body.bv-events-modern h2 {
    line-height: 1.2 !important;
    hyphens: auto;
  }

  body.bv-events-modern h3 {
    line-height: 1.24 !important;
    hyphens: auto;
  }
}

/* Language selector: retain clear controls without visible borders. */
#primary-menu ul li.bv-event-language > a > div {
  border: 0 !important;
  box-shadow: none !important;
}

#primary-menu ul li.bv-event-language > a:hover > div,
#primary-menu ul li.bv-event-language > a:focus-visible > div {
  border: 0 !important;
  box-shadow: none !important;
}

#primary-menu ul li.bv-event-language > a:focus-visible {
  outline: 2px solid rgba(10, 135, 148, .52);
  outline-offset: 2px;
}

.bv-flag-icon {
  border: 0 !important;
  box-shadow: 0 4px 11px rgba(6, 63, 77, .14) !important;
}

/* Responsive event-title scale aligned with the rest of the website. */
@media (min-width: 768px) and (max-width: 991.98px) {
  body.bv-events-modern #slider .slider-caption h2 {
    font-size: clamp(38px, 4.8vw, 44px) !important;
    line-height: 1.1 !important;
  }

  body.bv-events-modern #content .bv-event-intro h1 {
    font-size: clamp(38px, 5vw, 46px) !important;
    line-height: 1.08 !important;
  }

  body.bv-events-modern #content .bv-event-section-title,
  body.bv-events-modern .bv-faq__header h2 {
    font-size: clamp(34px, 4.3vw, 40px) !important;
    line-height: 1.12 !important;
  }

  body.bv-events-modern #content .bv-event-card .fancy-title h3 {
    font-size: clamp(30px, 3.8vw, 36px) !important;
    line-height: 1.14 !important;
  }
}

@media (max-width: 767.98px) {
  body.bv-events-modern #slider .slider-caption h2 {
    font-size: clamp(31px, 8.8vw, 37px) !important;
    line-height: 1.1 !important;
  }

  body.bv-events-modern #content .bv-event-intro h1 {
    font-size: clamp(31px, 8.6vw, 38px) !important;
    line-height: 1.1 !important;
  }

  body.bv-events-modern #content .bv-event-section-title,
  body.bv-events-modern .bv-faq__header h2 {
    font-size: clamp(29px, 8vw, 35px) !important;
    line-height: 1.12 !important;
  }

  body.bv-events-modern #content .bv-event-card .fancy-title h3 {
    font-size: clamp(26px, 7.3vw, 32px) !important;
    line-height: 1.15 !important;
  }

  body.bv-events-modern #slider .slider-caption h2,
  body.bv-events-modern #content .bv-event-intro h1,
  body.bv-events-modern #content .bv-event-section-title,
  body.bv-events-modern #content .bv-event-card .fancy-title h3,
  body.bv-events-modern .bv-faq__header h2 {
    overflow-wrap: break-word;
    hyphens: auto;
    text-wrap: balance;
  }
}

/* Official-site CTA: one component rule for every language. Keep its normal,
 * hover, keyboard-focus and pressed states aligned with the section CTAs. */
.button.button-3d.button-teal,
#primary-menu .bv-event-official-link > a,
#primary-menu .bv-event-official-link > a > div {
  border-color: #b8443a !important;
  color: #fff !important;
  background: linear-gradient(135deg, #b8443a 0%, #a83a31 100%) !important;
  transition: none !important;
}

.button.button-3d.button-teal,
#primary-menu .bv-event-official-link > a > div {
  box-shadow: 0 16px 34px rgba(6, 63, 77, .16);
}

.button.button-3d.button-teal:hover,
.button.button-3d.button-teal:focus,
.button.button-3d.button-teal:active,
#primary-menu .bv-event-official-link > a:hover,
#primary-menu .bv-event-official-link > a:focus-visible,
#primary-menu .bv-event-official-link > a:active,
#primary-menu .bv-event-official-link > a:hover > div,
#primary-menu .bv-event-official-link > a:focus-visible > div,
#primary-menu .bv-event-official-link > a:active > div {
  border-color: #983129 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #a83a31 0%, #8d2d27 100%) !important;
}

.button.button-3d.button-teal:hover,
#primary-menu .bv-event-official-link > a:hover {
  opacity: .9 !important;
  transform: translateY(-3px) !important;
}

.button.button-3d.button-teal:active,
#primary-menu .bv-event-official-link > a:active {
  opacity: 1 !important;
  transform: translateY(-1px) !important;
}

#primary-menu .bv-event-official-link > a > div {
  opacity: 1 !important;
  transform: none !important;
}

/* FAQ readability: keep the editorial header on its light-on-dark palette.
 * The legacy body paragraph rules are more specific than the component's
 * original selectors, so these final component-scoped rules close the cascade. */
body.bv-events-modern .bv-faq .bv-faq__eyebrow {
  gap: 0;
  color: #bff7f2 !important;
  font-size: clamp(12px, .86vw, 14px);
  line-height: 1.4;
}

body.bv-events-modern .bv-faq .bv-faq__eyebrow::before {
  display: none !important;
  content: none !important;
}

body.bv-events-modern .bv-faq .bv-faq__intro {
  color: #e8f6f5 !important;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.75;
}

body.bv-events-modern .bv-faq .bv-faq__count {
  color: #f1fbfa !important;
  font-size: 12px;
  line-height: 1.45;
}

body.bv-events-modern .bv-faq .bv-faq__count span {
  color: inherit !important;
  font-size: clamp(11.5px, .82vw, 13px);
  line-height: 1.45;
}

/* Footer cookie notice: the legacy mobile typography rule forces every
 * paragraph to 16px. Restore the compact footer scale and fluid width used
 * throughout the main site, including viewports below 480px. */
@media (max-width: 767.98px) {
  body.bv-events-modern #copyrights > .container {
    width: calc(100% - 28px) !important;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }

  body.bv-events-modern #copyrights .technical-cookie-notice {
    font-size: 12px !important;
    line-height: 1.72 !important;
  }
}

/* YourItaly trust badge: keep its original proportions beside the square
 * social buttons and allow a clean wrap only on exceptionally narrow screens. */
#copyrights .footer-corporate__social {
  align-items: center;
  flex-wrap: wrap;
}

#copyrights .footer-corporate__social a.footer-corporate__youritaly {
  box-sizing: border-box;
  width: 154px;
  padding: 0 6px;
}

#copyrights .footer-corporate__social a.footer-corporate__youritaly img {
  width: 140px;
  height: 39px;
  border-radius: 0;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  #copyrights .footer-corporate__social {
    justify-content: center;
  }
}

/* Event introduction: a compact editorial hero that remains balanced with
 * longer translated headings and collapses cleanly on small viewports. */
body.bv-events-modern #content .bv-event-intro {
  position: relative;
  display: grid;
  width: 100% !important;
  max-width: 1160px !important;
  margin: 0 auto clamp(84px, 9vw, 132px) !important;
  padding: clamp(54px, 6vw, 78px) clamp(42px, 6.5vw, 82px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px 72px 26px 72px;
  isolation: isolate;
  grid-template-areas:
    "eyebrow eyebrow"
    "title copy"
    "title action";
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(46px, 6vw, 82px);
  row-gap: 28px;
  background:
    linear-gradient(90deg, #20b6b2, #f16f5f) top / 100% 6px no-repeat,
    radial-gradient(circle at 100% 0, rgba(32, 182, 178, .2), transparent 24rem),
    radial-gradient(circle at 0 100%, rgba(241, 111, 95, .13), transparent 22rem),
    linear-gradient(145deg, #075363 0%, #063f4d 52%, #032f39 100%);
  box-shadow: 0 34px 94px rgba(3, 47, 57, .24);
  text-align: left !important;
  transform: none !important;
}

body.bv-events-modern #content .bv-event-intro::after {
  display: none;
  content: none;
}

/* Official Bagno Vittoria mark, used as a restrained watermark in the
 * lower-right corner of the introduction card. */
body.bv-events-modern #content .bv-event-intro::before {
  position: absolute;
  z-index: -1;
  right: 48px;
  bottom: 34px;
  display: block;
  width: 150px;
  height: 80px;
  background: url("../images/logo.png") center / contain no-repeat;
  content: "";
  filter: invert(1) grayscale(1) contrast(1.15);
  mix-blend-mode: screen;
  opacity: .24;
  pointer-events: none;
}

body.bv-events-modern #content .bv-event-intro > * {
  position: relative;
  z-index: 1;
}

body.bv-events-modern #content .bv-event-intro__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 8px 13px 7px;
  border: 1px solid rgba(189, 233, 228, .22);
  border-radius: 999px;
  grid-area: eyebrow;
  align-items: center;
  gap: 9px;
  color: #bff7f2 !important;
  background: rgba(255, 255, 255, .07);
  font-size: clamp(11.5px, .8vw, 13px) !important;
  font-weight: 800;
  line-height: 1.35 !important;
  letter-spacing: .075em;
  text-transform: uppercase;
}

body.bv-events-modern #content .bv-event-intro__eyebrow::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f48a77;
  box-shadow: 0 0 0 5px rgba(244, 138, 119, .12);
  content: "";
}

body.bv-events-modern #content .bv-event-intro h1 {
  max-width: 650px;
  margin: 0;
  grid-area: title;
  align-self: start;
  color: #fff !important;
  font-size: clamp(46px, 4.7vw, 68px) !important;
  font-weight: 700;
  line-height: 1.03 !important;
  letter-spacing: -.055em;
  text-wrap: balance;
}

body.bv-events-modern #content .bv-event-intro h1 span {
  color: #65d9d2 !important;
}

body.bv-events-modern #content .bv-event-intro h4 {
  max-width: 470px;
  margin: 0;
  padding-left: clamp(24px, 3vw, 38px);
  border-left: 1px solid rgba(189, 233, 228, .23);
  grid-area: copy;
  color: #deefed !important;
  font-family: var(--bv-font-body) !important;
  font-size: clamp(17px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.72;
}

body.bv-events-modern #content .bv-event-intro > .button {
  margin: 0 0 0 clamp(24px, 3vw, 38px) !important;
  grid-area: action;
  align-self: start;
  justify-self: start;
}

@media (max-width: 991.98px) {
  body.bv-events-modern #content .bv-event-intro {
    max-width: 760px !important;
    padding: clamp(42px, 7vw, 58px) clamp(30px, 6vw, 48px);
    border-radius: 22px 56px 22px 56px;
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "action";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0;
  }

  body.bv-events-modern #content .bv-event-intro__eyebrow {
    margin-bottom: 26px;
  }

  body.bv-events-modern #content .bv-event-intro h1 {
    max-width: 680px;
    margin-bottom: 28px;
  }

  body.bv-events-modern #content .bv-event-intro h4 {
    max-width: 680px;
    margin-bottom: 30px;
    padding-left: 0;
    border-left: 0;
  }

  body.bv-events-modern #content .bv-event-intro > .button {
    margin-left: 0 !important;
  }
}

@media (max-width: 767.98px) {
  body.bv-events-modern #content .bv-event-intro {
    margin-bottom: 70px !important;
    padding: 36px 23px 40px;
    border-radius: 17px 42px 17px 42px;
  }

  body.bv-events-modern #content .bv-event-intro::before {
    right: 12px;
    bottom: 28px;
    width: 110px;
    height: 60px;
    opacity: .22;
  }

  body.bv-events-modern #content .bv-event-intro__eyebrow {
    margin-bottom: 23px;
    padding: 7px 11px 6px;
    font-size: 10.75px !important;
  }

  body.bv-events-modern #content .bv-event-intro h1 {
    margin-bottom: 24px;
    font-size: clamp(31px, 8.7vw, 39px) !important;
    line-height: 1.1 !important;
  }

  body.bv-events-modern #content .bv-event-intro h4 {
    margin-bottom: 28px;
    font-size: 16.5px;
    line-height: 1.68;
  }
}

/* Unified event navigation: compact desktop balance, a true three-line menu
 * control and a self-contained mobile panel for every translated page. */
@media (min-width: 992px) {
  #header,
  #header.full-header,
  #header.transparent-header {
    height: 102px !important;
  }

  #header-wrap,
  #header.sticky-header #header-wrap {
    width: min(calc(100% - 36px), 1240px) !important;
    height: 84px !important;
    min-height: 84px !important;
    margin-top: 14px;
    overflow: visible;
    border: 1px solid rgba(6, 63, 77, .08);
    border-radius: 26px !important;
    background:
      radial-gradient(circle at 10% 10%, rgba(32, 182, 178, .075), transparent 15rem),
      linear-gradient(135deg, rgba(255, 255, 255, .985), rgba(251, 248, 241, .975));
    box-shadow: 0 18px 52px rgba(4, 48, 60, .14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  #header-wrap::after {
    right: 32px;
    bottom: -1px;
    left: 32px;
    height: 3px;
    opacity: .48;
  }

  #header-wrap > .container,
  #header.full-header #header-wrap > .container {
    position: relative;
    display: flex;
    width: 100% !important;
    max-width: 1180px !important;
    height: 82px !important;
    min-height: 82px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    align-items: center;
  }

  #logo,
  #header.full-header #logo,
  #header.sticky-header:not(.static-sticky) #logo {
    position: absolute !important;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 92px !important;
    height: 72px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    transform: translate(-50%, -50%);
  }

  #logo > a,
  #header.sticky-header:not(.static-sticky) #logo > a {
    display: flex;
    width: 92px !important;
    height: 72px !important;
    line-height: 1 !important;
    align-items: center;
    justify-content: center;
  }

  #logo img,
  #header.sticky-header:not(.static-sticky) #logo img {
    width: auto !important;
    max-width: 88px !important;
    height: 68px !important;
    margin: 0 auto;
    padding: 0 !important;
    object-fit: contain;
  }

  #primary-menu,
  #header.sticky-header #primary-menu {
    position: relative;
    z-index: 4;
    display: flex;
    float: none !important;
    width: 100% !important;
    height: 82px !important;
    min-height: 82px !important;
    margin: 0 !important;
    align-items: center;
  }

  #primary-menu > ul {
    display: flex !important;
    width: 100%;
    height: 82px !important;
    margin: 0 !important;
    align-items: center;
    gap: 7px;
  }

  #primary-menu .bv-event-menu-head,
  #primary-menu .bv-event-language-title {
    display: none !important;
  }

  #primary-menu .bv-event-official-link {
    margin-right: auto !important;
  }

  #primary-menu .bv-event-language-title + .bv-event-language {
    margin-left: auto !important;
  }

  #primary-menu .bv-event-official-link > a {
    height: 50px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    line-height: 50px !important;
    box-shadow: none !important;
  }

  #primary-menu .bv-event-official-link > a > div {
    display: flex;
    min-width: 206px;
    min-height: 50px;
    padding: 0 23px;
    border: 0 !important;
    border-radius: 16px 27px 16px 27px;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: linear-gradient(135deg, #b8443a 0%, #a83a31 100%) !important;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 13px 28px rgba(168, 58, 49, .23);
  }

  #primary-menu .bv-event-official-link > a:hover,
  #primary-menu .bv-event-official-link > a:focus-visible {
    background: transparent !important;
    opacity: 1 !important;
    transform: translateY(-2px) !important;
  }

  #primary-menu .bv-event-official-link > a:hover > div,
  #primary-menu .bv-event-official-link > a:focus-visible > div {
    background: linear-gradient(135deg, #a83a31 0%, #8d2d27 100%) !important;
    box-shadow: 0 17px 34px rgba(141, 45, 39, .29);
    transform: none !important;
  }

  #primary-menu ul li.bv-event-language > a,
  #primary-menu ul li.bv-event-language > a > div {
    width: 44px !important;
    min-width: 44px;
    height: 44px !important;
    min-height: 44px;
  }

  #primary-menu ul li.bv-event-language > a {
    padding: 0 !important;
    line-height: 1 !important;
  }

  #primary-menu ul li.bv-event-language > a > div {
    display: grid;
    padding: 0;
    border: 0 !important;
    border-radius: 15px;
    background: rgba(255, 255, 255, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 20px rgba(6, 63, 77, .085) !important;
    place-items: center;
  }

  #primary-menu ul li.bv-event-language > a:hover > div,
  #primary-menu ul li.bv-event-language > a:focus-visible > div {
    background: #fff;
    box-shadow: 0 12px 26px rgba(6, 63, 77, .14) !important;
    transform: translateY(-2px) !important;
  }

  #primary-menu .bv-flag-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  #header.sticky-header:not(.static-sticky) {
    height: 76px !important;
  }

  #header.sticky-header #header-wrap {
    height: 72px !important;
    min-height: 72px !important;
    margin-top: 0;
    border-radius: 0 0 24px 24px !important;
  }

  #header.sticky-header #header-wrap > .container,
  #header.sticky-header #primary-menu,
  #header.sticky-header #primary-menu > ul {
    height: 70px !important;
    min-height: 70px !important;
  }

  #header.sticky-header:not(.static-sticky) #logo,
  #header.sticky-header:not(.static-sticky) #logo > a {
    height: 62px !important;
  }

  #header.sticky-header:not(.static-sticky) #logo img {
    height: 58px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #header-wrap,
  #header.sticky-header #header-wrap {
    width: calc(100% - 24px) !important;
  }

  #header-wrap > .container,
  #header.full-header #header-wrap > .container {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  #primary-menu .bv-event-official-link > a > div {
    min-width: 190px;
    padding-right: 19px;
    padding-left: 19px;
    font-size: 12.5px;
  }

  #logo,
  #header.full-header #logo,
  #header.sticky-header:not(.static-sticky) #logo {
    width: 84px !important;
  }

  #logo > a,
  #header.sticky-header:not(.static-sticky) #logo > a {
    width: 84px !important;
  }

  #logo img,
  #header.sticky-header:not(.static-sticky) #logo img {
    max-width: 82px !important;
  }
}

@media (max-width: 991.98px) {
  #header,
  #header.full-header,
  #header.transparent-header {
    z-index: 220;
    height: 100px !important;
  }

  #header-wrap,
  #header.sticky-header #header-wrap {
    position: relative;
    width: calc(100% - 24px) !important;
    height: 76px !important;
    min-height: 76px !important;
    margin: 12px auto 0 !important;
    overflow: visible !important;
    border: 1px solid rgba(6, 63, 77, .09);
    border-radius: 24px !important;
    background:
      radial-gradient(circle at 88% 0, rgba(32, 182, 178, .08), transparent 11rem),
      rgba(255, 253, 249, .985);
    box-shadow: 0 14px 38px rgba(4, 43, 54, .16);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  #header-wrap > .container,
  #header.full-header #header-wrap > .container {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    height: 74px !important;
    min-height: 74px !important;
    margin: 0 !important;
    padding: 0 12px !important;
    box-sizing: border-box;
  }

  #logo,
  #header.full-header #logo,
  #header.sticky-header:not(.static-sticky) #logo {
    position: absolute !important;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 88px !important;
    height: 68px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  #logo > a,
  #header.sticky-header:not(.static-sticky) #logo > a {
    display: flex;
    width: 88px !important;
    height: 68px !important;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
  }

  #logo img,
  #header.sticky-header:not(.static-sticky) #logo img {
    width: auto !important;
    max-width: 84px !important;
    height: 64px !important;
    margin: 0 auto;
    padding: 0 !important;
    object-fit: contain;
  }

  #primary-menu-trigger {
    position: absolute;
    z-index: 8;
    top: 13px;
    left: 15px;
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0;
    border: 1px solid rgba(10, 135, 148, .18);
    border-radius: 16px;
    color: #063f4d;
    background: rgba(10, 135, 148, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    cursor: pointer;
    place-items: center;
    transform: none !important;
  }

  #primary-menu-trigger:hover,
  #primary-menu-trigger:focus-visible {
    border-color: rgba(10, 135, 148, .32);
    background: rgba(10, 135, 148, .12);
    box-shadow: 0 9px 22px rgba(7, 57, 71, .12);
  }

  #primary-menu-trigger.is-active {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #20b6b2, #08717a);
    box-shadow: 0 12px 26px rgba(10, 135, 148, .25);
    transform: none !important;
  }

  #primary-menu-trigger::before,
  #primary-menu-trigger::after {
    display: none !important;
    content: none !important;
  }

  #primary-menu-trigger i,
  #primary-menu-trigger i::before,
  #primary-menu-trigger i::after {
    display: block !important;
    width: 22px;
    height: 2px;
    border: 0;
    border-radius: 999px;
    color: inherit;
    background: currentColor !important;
    font-size: 0;
    line-height: 0;
    transition: transform .24s ease, background .2s ease;
  }

  #primary-menu-trigger i {
    position: relative;
  }

  #primary-menu-trigger i::before,
  #primary-menu-trigger i::after {
    position: absolute;
    left: 0;
    content: "" !important;
  }

  #primary-menu-trigger i::before {
    top: -7px;
  }

  #primary-menu-trigger i::after {
    top: 7px;
  }

  #primary-menu-trigger.is-active i {
    background: transparent !important;
  }

  #primary-menu-trigger.is-active i::before {
    transform: translateY(7px) rotate(45deg);
  }

  #primary-menu-trigger.is-active i::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  #primary-menu {
    position: static !important;
    z-index: 6;
    display: block;
    float: none !important;
    width: 100% !important;
    height: 0 !important;
    margin: 0 !important;
  }

  #primary-menu > ul,
  #primary-menu > ul.show {
    position: absolute !important;
    z-index: 7;
    top: 84px;
    left: 0;
    display: grid !important;
    width: min(420px, calc(100vw - 24px)) !important;
    height: auto !important;
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
    margin: 0 !important;
    padding: 14px 14px max(20px, env(safe-area-inset-bottom)) !important;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(6, 63, 77, .09);
    border-radius: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 8px;
    opacity: 0;
    visibility: hidden;
    background:
      radial-gradient(circle at 94% 7%, rgba(32, 182, 178, .13), transparent 13rem),
      linear-gradient(155deg, #fffdf9 0%, #f1f8f5 100%);
    box-shadow: 0 28px 70px rgba(3, 47, 57, .24);
    pointer-events: none;
    transform: translateY(-10px) scale(.985);
    transform-origin: top left;
    transition: opacity .24s ease, visibility 0s linear .24s, transform .3s cubic-bezier(.22, 1, .36, 1);
    overscroll-behavior: contain;
    scrollbar-color: rgba(10, 135, 148, .32) transparent;
    scrollbar-width: thin;
  }

  #primary-menu > ul.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  #primary-menu .bv-event-menu-head,
  #primary-menu .bv-event-official-link,
  #primary-menu .bv-event-language-title {
    grid-column: 1 / -1;
    width: 100%;
  }

  #primary-menu .bv-event-menu-head {
    position: relative;
    display: flex;
    min-height: 94px;
    margin: 0 !important;
    padding: 19px 78px 18px 20px;
    overflow: hidden;
    border: 0;
    border-radius: 20px 34px 20px 34px;
    color: #fff;
    background:
      radial-gradient(circle at 90% 14%, rgba(189, 233, 228, .22), transparent 8rem),
      linear-gradient(135deg, #08717a, #063f4d);
    box-shadow: 0 16px 34px rgba(7, 57, 71, .18);
    flex-direction: column;
    justify-content: center;
  }

  #primary-menu .bv-event-menu-head > span {
    color: #bff7f2;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  #primary-menu .bv-event-menu-head > strong {
    max-width: 250px;
    margin-top: 6px;
    color: #fff;
    font-family: var(--bv-font-display);
    font-size: clamp(21px, 5.8vw, 27px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -.04em;
  }

  #primary-menu .bv-event-menu-head > .bv-event-menu-head__mark {
    right: 15px;
    width: 58px;
    height: 58px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 12px 26px rgba(3, 33, 42, .24), 0 0 0 5px rgba(255, 255, 255, .07);
  }

  #primary-menu .bv-event-official-link {
    float: none !important;
    margin: 0 !important;
  }

  #primary-menu .bv-event-official-link > a {
    width: 100%;
    height: auto !important;
    min-height: 56px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
  }

  #primary-menu .bv-event-official-link > a > div {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 13px 48px 13px 18px;
    border: 0 !important;
    border-radius: 17px 29px 17px 29px;
    align-items: center;
    color: #fff !important;
    background: linear-gradient(135deg, #b8443a 0%, #a83a31 100%) !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .02em;
    box-shadow: 0 13px 28px rgba(168, 58, 49, .22);
  }

  #primary-menu .bv-event-official-link > a > div::after {
    position: absolute;
    top: 50%;
    right: 18px;
    color: rgba(255, 255, 255, .92);
    content: "›";
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-53%);
  }

  #primary-menu .bv-event-official-link > a:hover,
  #primary-menu .bv-event-official-link > a:focus-visible {
    background: transparent !important;
    opacity: 1 !important;
    transform: none !important;
  }

  #primary-menu .bv-event-official-link > a:hover > div,
  #primary-menu .bv-event-official-link > a:focus-visible > div {
    background: linear-gradient(135deg, #a83a31 0%, #8d2d27 100%) !important;
    box-shadow: 0 17px 34px rgba(141, 45, 39, .27);
    transform: translateY(-2px) !important;
  }

  #primary-menu .bv-event-language-title {
    display: block;
    clear: none;
    margin: 4px 0 -1px !important;
    padding: 10px 3px 0;
    border: 0;
    border-top: 1px solid rgba(7, 57, 71, .1);
    color: #496970;
    font-size: 9px;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  #primary-menu ul li.bv-event-language {
    float: none;
    width: auto;
    margin: 0 !important;
    padding: 0;
    border: 0;
  }

  #primary-menu ul li.bv-event-language > a,
  #primary-menu ul li.bv-event-language > a > div {
    width: 100% !important;
    min-width: 0;
    height: 58px !important;
    min-height: 58px;
  }

  #primary-menu ul li.bv-event-language > a {
    padding: 0 !important;
    line-height: 1 !important;
  }

  #primary-menu ul li.bv-event-language > a > div {
    display: grid;
    padding: 0;
    border: 0 !important;
    border-radius: 16px 24px 16px 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 20px rgba(6, 63, 77, .075) !important;
    place-items: center;
  }

  #primary-menu ul li.bv-event-language > a:hover > div,
  #primary-menu ul li.bv-event-language > a:focus-visible > div {
    background: #fff;
    box-shadow: 0 12px 26px rgba(6, 63, 77, .13) !important;
    transform: translateY(-2px) !important;
  }

  #primary-menu .bv-flag-icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .bv-event-menu-scrim {
    z-index: 205;
    background: rgba(3, 33, 42, .66);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }
}

@media (max-width: 575.98px) {
  #primary-menu > ul,
  #primary-menu > ul.show {
    width: 100% !important;
  }
}

@media (max-width: 359.98px) {
  #header-wrap,
  #header.sticky-header #header-wrap {
    width: calc(100% - 14px) !important;
  }

  #primary-menu-trigger {
    left: 10px;
    width: 46px;
    height: 46px;
  }

  #logo,
  #header.full-header #logo,
  #header.sticky-header:not(.static-sticky) #logo,
  #logo > a,
  #header.sticky-header:not(.static-sticky) #logo > a {
    width: 80px !important;
  }

  #logo img,
  #header.sticky-header:not(.static-sticky) #logo img {
    max-width: 78px !important;
    height: 60px !important;
  }

  #primary-menu > ul,
  #primary-menu > ul.show {
    top: 82px;
    width: 100% !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
    gap: 8px 5px;
  }

  #primary-menu .bv-event-menu-head {
    min-height: 88px;
    padding-right: 70px;
    padding-left: 17px;
  }

  #primary-menu .bv-event-menu-head > strong {
    max-width: 210px;
    font-size: 21px;
  }

  #primary-menu .bv-event-menu-head > .bv-event-menu-head__mark {
    right: 12px;
    width: 52px;
    height: 52px;
  }

  #primary-menu .bv-event-official-link > a > div {
    padding-left: 15px;
    font-size: 12px;
  }

  #primary-menu .bv-flag-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

@media (max-width: 991.98px) and (max-height: 500px) and (orientation: landscape) {
  #header,
  #header.full-header,
  #header.transparent-header {
    height: 78px !important;
  }

  #header-wrap,
  #header.sticky-header #header-wrap,
  #header-wrap > .container,
  #header.full-header #header-wrap > .container {
    height: 64px !important;
    min-height: 64px !important;
  }

  #header-wrap,
  #header.sticky-header #header-wrap {
    margin-top: 7px !important;
    border-radius: 20px !important;
  }

  #primary-menu-trigger {
    top: 9px;
    width: 46px;
    height: 46px;
  }

  #logo,
  #header.full-header #logo,
  #header.sticky-header:not(.static-sticky) #logo,
  #logo > a,
  #header.sticky-header:not(.static-sticky) #logo > a {
    height: 58px !important;
  }

  #logo img,
  #header.sticky-header:not(.static-sticky) #logo img {
    height: 54px !important;
  }

  #primary-menu > ul,
  #primary-menu > ul.show {
    top: 70px;
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
  }

  #primary-menu .bv-event-menu-head {
    display: none;
  }
}

/* Keep the framework's standard/retina logo pair from entering the flex flow
 * together: exactly one asset is visible at every density. */
#logo > a.standard-logo,
#header.sticky-header:not(.static-sticky) #logo > a.standard-logo {
  display: flex !important;
}

#logo > a.retina-logo,
#header.sticky-header:not(.static-sticky) #logo > a.retina-logo {
  display: none !important;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi) {
  #logo > a.standard-logo,
  #header.sticky-header:not(.static-sticky) #logo > a.standard-logo {
    display: none !important;
  }

  #logo > a.retina-logo,
  #header.sticky-header:not(.static-sticky) #logo > a.retina-logo {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  #primary-menu-trigger {
    display: none !important;
  }
}

/* Keep the translated event navigation available while scrolling on tablet
 * and mobile. Canvas toggles .responsive-sticky-header after the threshold;
 * this override preserves the custom floating-card geometry. */
@media (max-width: 991.98px) {
  body.bv-events-modern.sticky-responsive-menu #header.responsive-sticky-header #header-wrap {
    position: fixed !important;
    z-index: 220;
    top: 0 !important;
    right: auto !important;
    left: 50% !important;
    margin-top: 8px !important;
    transform: translateX(-50%);
  }
}

/* Remove Canvas' dark header tail: the outer header must end with the custom
 * navigation card instead of extending below it with the legacy dark fill. */
body.bv-events-modern #header,
body.bv-events-modern #header.full-header,
body.bv-events-modern #header.transparent-header {
  background: transparent !important;
}

@media (max-width: 991.98px) {
  body.bv-events-modern #header,
  body.bv-events-modern #header.full-header,
  body.bv-events-modern #header.transparent-header {
    height: 76px !important;
    min-height: 76px !important;
  }
}

@media (max-width: 991.98px) and (max-height: 500px) and (orientation: landscape) {
  body.bv-events-modern #header,
  body.bv-events-modern #header.full-header,
  body.bv-events-modern #header.transparent-header {
    height: 64px !important;
    min-height: 64px !important;
  }
}

/* Branded first paint: match the loader used by the main Bagno Vittoria site
 * and fully replace Canvas' legacy three-dot spinner. */
body.bv-events-modern #page-loader {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: grid !important;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(32, 182, 178, .16), transparent 23rem),
    radial-gradient(circle at 86% 82%, rgba(239, 112, 95, .12), transparent 24rem),
    linear-gradient(145deg, #f8f4eb, #eef6f3);
  place-items: center;
  transition: opacity .38s ease, visibility .38s ease;
}

body.bv-events-modern #page-loader .cssload-container {
  position: relative;
  display: grid;
  width: min(calc(100% - 40px), 290px);
  height: auto;
  min-height: 238px;
  padding: 30px 26px 27px;
  border: 1px solid rgba(7, 57, 71, .1);
  border-radius: 18px 48px 18px 48px;
  background: rgba(255, 253, 249, .94);
  box-shadow: 0 30px 86px rgba(7, 57, 71, .16);
  place-items: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.bv-events-modern #page-loader .cssload-container::before {
  width: 112px;
  height: 104px;
  background: url("../../images/logo.png?v=20260817-modern") center / contain no-repeat;
  content: "";
}

body.bv-events-modern #page-loader .cssload-container::after {
  color: #073947;
  content: "Bagno Vittoria · Tirrenia";
  font-family: var(--bv-font-display);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -.02em;
  text-align: center;
}

body.bv-events-modern #page-loader .cssload-speeding-wheel {
  width: 30px;
  height: 30px;
  margin: 7px auto 0;
  border: 3px solid rgba(10, 135, 148, .18);
  border-top-color: var(--bv-coral);
  border-right-color: var(--bv-sea);
  border-radius: 50%;
  box-shadow: none;
  animation: bv-event-loader-spin .88s infinite linear;
}

body.bv-events-modern.bv-page-ready #page-loader {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.bv-events-modern #page-loader[hidden] {
  display: none !important;
}

@keyframes bv-event-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 479.98px) {
  body.bv-events-modern #page-loader .cssload-container {
    width: min(calc(100% - 32px), 254px);
    min-height: 214px;
    padding: 25px 22px 23px;
    border-radius: 15px 38px 15px 38px;
  }

  body.bv-events-modern #page-loader .cssload-container::before {
    width: 98px;
    height: 91px;
  }
}

@media (max-height: 419.98px) and (orientation: landscape) {
  body.bv-events-modern #page-loader .cssload-container {
    width: min(calc(100% - 32px), 238px);
    min-height: 184px;
    padding: 17px 20px 16px;
    border-radius: 14px 34px 14px 34px;
  }

  body.bv-events-modern #page-loader .cssload-container::before {
    width: 78px;
    height: 72px;
  }

  body.bv-events-modern #page-loader .cssload-speeding-wheel {
    width: 25px;
    height: 25px;
    margin-top: 3px;
  }

  body.bv-events-modern #page-loader .cssload-container::after {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.bv-events-modern #page-loader .cssload-speeding-wheel {
    animation-duration: 1.8s;
  }
}

/* Event highlight icons: tailored coastal medallions replace the legacy
 * circular Canvas hover and give every card a clearer visual identity. */
body.bv-events-modern #content .bv-event-highlights .col_one_fourth:nth-child(1) {
  --bv-highlight-accent: #12a9a4;
  --bv-highlight-accent-dark: #087b80;
  --bv-highlight-soft: rgba(18, 169, 164, .13);
  --bv-highlight-border: rgba(18, 169, 164, .3);
  --bv-highlight-ring: rgba(18, 169, 164, .58);
  --bv-highlight-shadow: rgba(18, 125, 128, .25);
}

body.bv-events-modern #content .bv-event-highlights .col_one_fourth:nth-child(2) {
  --bv-highlight-accent: #087f91;
  --bv-highlight-accent-dark: #075565;
  --bv-highlight-soft: rgba(8, 127, 145, .12);
  --bv-highlight-border: rgba(8, 127, 145, .3);
  --bv-highlight-ring: rgba(8, 127, 145, .58);
  --bv-highlight-shadow: rgba(7, 85, 101, .25);
}

body.bv-events-modern #content .bv-event-highlights .col_one_fourth:nth-child(3) {
  --bv-highlight-accent: #ed7463;
  --bv-highlight-accent-dark: #bd4b40;
  --bv-highlight-soft: rgba(237, 116, 99, .13);
  --bv-highlight-border: rgba(237, 116, 99, .3);
  --bv-highlight-ring: rgba(237, 116, 99, .58);
  --bv-highlight-shadow: rgba(189, 75, 64, .24);
}

body.bv-events-modern #content .bv-event-highlights .col_one_fourth:nth-child(4) {
  --bv-highlight-accent: #d9a33f;
  --bv-highlight-accent-dark: #a7731f;
  --bv-highlight-soft: rgba(217, 163, 63, .14);
  --bv-highlight-border: rgba(217, 163, 63, .32);
  --bv-highlight-ring: rgba(217, 163, 63, .6);
  --bv-highlight-shadow: rgba(167, 115, 31, .23);
}

body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 30px;
  place-items: center;
  isolation: isolate;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon i {
  position: relative;
  z-index: 1;
  display: grid !important;
  width: 72px;
  height: 72px;
  border: 1px solid var(--bv-highlight-border) !important;
  border-radius: 20px 34px 20px 34px;
  place-items: center;
  color: var(--bv-highlight-accent);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .28)),
    var(--bv-highlight-soft);
  box-shadow:
    0 12px 28px rgba(3, 57, 69, .1),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  font-size: 28px;
  line-height: 1 !important;
  transition:
    color .28s ease,
    background .32s ease,
    border-color .28s ease,
    box-shadow .36s ease,
    transform .42s cubic-bezier(.22, 1, .36, 1);
}

body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon i::before {
  position: relative;
  z-index: 2;
  display: block;
  line-height: 1;
  transition: transform .36s cubic-bezier(.22, 1, .36, 1);
}

body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon i::after {
  position: absolute;
  z-index: -1;
  inset: -5px;
  width: auto;
  height: auto;
  padding: 0;
  border: 1px solid var(--bv-highlight-ring);
  border-radius: 25px 39px 25px 39px;
  opacity: .72;
  background: transparent;
  box-shadow: none;
  content: "";
  box-sizing: border-box;
  transform: rotate(-5deg) scale(.94);
  transform-origin: center;
  transition:
    border-color .3s ease,
    opacity .3s ease,
    transform .48s cubic-bezier(.22, 1, .36, 1);
}

@media (hover: hover) and (pointer: fine) {
  body.bv-events-modern #content .bv-event-highlights .feature-box:hover {
    background:
      linear-gradient(90deg, var(--bv-events-aqua), var(--bv-events-coral)) top / 100% 5px no-repeat,
      radial-gradient(circle at 15% 11%, var(--bv-highlight-soft), transparent 11rem),
      rgba(255, 253, 248, .98);
  }

  body.bv-events-modern #content .bv-event-highlights .feature-box:hover .fbox-icon {
    transform: translateY(-3px);
  }

  body.bv-events-modern #content .bv-event-highlights .feature-box:hover .fbox-icon i {
    border-color: transparent !important;
    color: #fff;
    background: linear-gradient(145deg, var(--bv-highlight-accent), var(--bv-highlight-accent-dark));
    box-shadow:
      0 18px 36px var(--bv-highlight-shadow),
      inset 0 1px 0 rgba(255, 255, 255, .3);
    transform: rotate(-1.5deg) scale(1.035);
  }

  body.bv-events-modern #content .bv-event-highlights .feature-box:hover .fbox-icon i::before {
    transform: scale(1.08);
  }

  body.bv-events-modern #content .bv-event-highlights .feature-box:hover .fbox-icon i::after {
    border-color: var(--bv-highlight-accent);
    opacity: 1;
    transform: rotate(6deg) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon,
  body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon i,
  body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon i::before,
  body.bv-events-modern #content .bv-event-highlights .feature-box .fbox-icon i::after {
    transition: none !important;
  }
}

/* High-resolution event stories: inset photographic frames, lighter overlays
 * and tailored focal points keep the supplied images crisp at every size. */
body.bv-events-modern #content .bv-event-card,
body.bv-events-modern #content .bv-event-card:nth-of-type(even) {
  position: relative;
  grid-template-columns: minmax(0, 1.13fr) minmax(410px, .87fr);
  min-height: 540px;
  padding: 12px;
  border-color: rgba(7, 116, 127, .16);
  border-radius: 32px 88px 32px 88px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 244, 236, .94));
  box-shadow:
    0 34px 94px rgba(3, 57, 69, .145),
    inset 0 1px 0 rgba(255, 255, 255, .94);
}

body.bv-events-modern #content .bv-event-card--reverse,
body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even) {
  grid-template-columns: minmax(410px, .87fr) minmax(0, 1.13fr);
  border-radius: 88px 32px 88px 32px;
}

body.bv-events-modern #content .bv-event-card__seo-label {
  position: absolute;
  z-index: 4;
  top: 32px;
  left: 32px;
  display: flex;
  width: max-content;
  max-width: min(190px, calc(100% - 64px));
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 16px 27px 16px 27px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(3, 57, 69, .68);
  box-shadow: 0 14px 30px rgba(1, 33, 41, .2), inset 0 1px 0 rgba(255, 255, 255, .2);
  font-family: var(--bv-font-display);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.2;
  letter-spacing: .035em;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .3s ease, transform .4s var(--bv-ease);
}

body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__seo-label {
  right: 32px;
  left: auto;
  border-radius: 27px 16px 27px 16px;
}

body.bv-events-modern #content .bv-event-card__media {
  min-height: 516px;
  border-radius: 23px 68px 23px 68px;
  isolation: isolate;
  background: #063f4d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__media {
  border-radius: 68px 23px 68px 23px;
}

body.bv-events-modern #content .bv-event-card__media::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(2, 39, 48, .015) 45%, rgba(2, 39, 48, .18) 100%),
    linear-gradient(90deg, rgba(18, 164, 167, .045), transparent 30%);
}

body.bv-events-modern #content .bv-event-card__media img {
  min-height: 516px;
  image-rendering: auto;
  object-fit: cover;
  object-position: 50% 50%;
  backface-visibility: hidden;
  transform: scale(1) !important;
  filter: saturate(1.025) contrast(1.012);
}

body.bv-events-modern #content .bv-event-card[data-bv-event-index="01"] .bv-event-card__media img {
  object-position: 50% 48%;
}

body.bv-events-modern #content .bv-event-card[data-bv-event-index="02"] .bv-event-card__media img {
  object-position: 50% 50%;
}

body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .bv-event-card__media img {
  object-position: 50% 50%;
}

body.bv-events-modern #content .bv-event-card[data-bv-event-index="04"] .bv-event-card__media img {
  object-position: 50% 43%;
}

body.bv-events-modern #content .bv-event-card[data-bv-event-index="05"] .bv-event-card__media img {
  object-position: 56% 68%;
}

body.bv-events-modern #content .bv-event-card__content,
body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__content {
  position: relative;
  padding: clamp(44px, 4.6vw, 68px);
  background: transparent;
}

body.bv-events-modern #content .bv-event-card__content::before {
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(15, 150, 155, .3), transparent);
  content: "";
}

body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__content::before {
  right: 0;
  left: auto;
  background: linear-gradient(180deg, transparent, rgba(241, 111, 95, .25), transparent);
}

@media (hover: hover) and (pointer: fine) {
  body.bv-events-modern #content .bv-event-card:hover .bv-event-card__seo-label {
    background: rgba(7, 127, 139, .86);
    transform: translateY(-3px) rotate(-2deg);
  }

  body.bv-events-modern #content .bv-event-card:hover .bv-event-card__media img {
    filter: saturate(1.055) contrast(1.02);
    transform: scale(1.027) !important;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  body.bv-events-modern #content .bv-event-card,
  body.bv-events-modern #content .bv-event-card:nth-of-type(even) {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
    min-height: 520px;
    padding: 10px;
  }

  body.bv-events-modern #content .bv-event-card--reverse,
  body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even) {
    grid-template-columns: minmax(390px, .92fr) minmax(0, 1fr);
  }

  body.bv-events-modern #content .bv-event-card__media,
  body.bv-events-modern #content .bv-event-card__media img {
    min-height: 500px;
  }

  body.bv-events-modern #content .bv-event-card__content,
  body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__content {
    padding: 42px 38px;
  }
}

@media (max-width: 991.98px) {
  body.bv-events-modern #content .bv-event-card,
  body.bv-events-modern #content .bv-event-card:nth-of-type(even),
  body.bv-events-modern #content .bv-event-card--reverse,
  body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even) {
    grid-template-areas:
      "media"
      "content";
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 10px;
    border-radius: 25px 64px 25px 64px;
  }

  body.bv-events-modern #content .bv-event-card .bv-event-card__seo-label,
  body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__seo-label {
    top: 28px;
    right: auto;
    left: 28px;
  }

  body.bv-events-modern #content .bv-event-card__media,
  body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 18px 50px 18px 50px;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .bv-event-card__media {
    aspect-ratio: 16 / 10;
  }

  body.bv-events-modern #content .bv-event-card__media img {
    min-height: 0;
  }

  body.bv-events-modern #content .bv-event-card__content,
  body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__content {
    padding: clamp(40px, 7vw, 62px);
  }

  body.bv-events-modern #content .bv-event-card__content::before,
  body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__content::before {
    top: 0;
    right: 34px;
    bottom: auto;
    left: 34px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 150, 155, .28), transparent);
  }
}

@media (max-width: 767.98px) {
  body.bv-events-modern #content .bv-event-card,
  body.bv-events-modern #content .bv-event-card:nth-of-type(even),
  body.bv-events-modern #content .bv-event-card--reverse,
  body.bv-events-modern #content .bv-event-card--reverse:nth-of-type(even) {
    padding: 7px;
    border-radius: 17px 43px 17px 43px;
  }

  body.bv-events-modern #content .bv-event-card .bv-event-card__seo-label,
  body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__seo-label {
    top: 21px;
    right: auto;
    left: 21px;
    max-width: min(170px, calc(100% - 42px));
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 13px 22px 13px 22px;
    font-size: 10px;
  }

  body.bv-events-modern #content .bv-event-card__media,
  body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__media {
    border-radius: 12px 35px 12px 35px;
  }

  body.bv-events-modern #content .bv-event-card__content,
  body.bv-events-modern #content .bv-event-card--reverse .bv-event-card__content {
    padding: 32px 21px 38px;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="05"] .bv-event-card__media img {
    object-position: 58% 65%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.bv-events-modern #content .bv-event-card__seo-label {
    transition: none !important;
  }
}

/* The sunset photograph is genuinely panoramic: feature it across the full
 * card instead of forcing it into the portrait rhythm of the other stories. */
@media (min-width: 992px) {
  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"],
  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"]:nth-of-type(even) {
    grid-template-areas:
      "media"
      "content";
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .bv-event-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 23px 68px 23px 68px;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .bv-event-card__media img {
    min-height: 0;
    object-position: 50% 50%;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .bv-event-card__content {
    display: grid;
    grid-template-areas:
      "keyphrase description"
      "title description"
      "button description";
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    column-gap: clamp(48px, 6vw, 86px);
    row-gap: 0;
    padding: clamp(48px, 5vw, 70px) clamp(48px, 6vw, 84px);
    align-items: start;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .bv-event-card__content::before {
    display: none;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .bv-event-keyphrase {
    grid-area: keyphrase;
    justify-self: start;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .fancy-title {
    grid-area: title;
    align-self: start;
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .bv-event-card__content > p:not(.bv-event-keyphrase) {
    grid-area: description;
    max-width: none;
    padding-left: clamp(30px, 4vw, 56px);
    border-left: 1px solid rgba(15, 150, 155, .2);
  }

  body.bv-events-modern #content .bv-event-card[data-bv-event-index="03"] .button {
    grid-area: button;
    justify-self: start;
  }
}

/* Canvas moves the responsive trigger to 5px when the header becomes sticky.
 * Centre it against the live header container instead, so the closed and open
 * controls keep equal space above and below at every tablet/mobile height. */
@media (max-width: 991.98px) {
  body.bv-events-modern #primary-menu-trigger,
  body.bv-events-modern #primary-menu-trigger.is-active {
    top: 50% !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
  }
}

/* Keep the language links comfortably tappable without drawing a white tile
 * around each circular flag. Keyboard focus remains on the link itself. */
body.bv-events-modern #primary-menu ul li.bv-event-language > a > div,
body.bv-events-modern #primary-menu ul li.bv-event-language > a:hover > div,
body.bv-events-modern #primary-menu ul li.bv-event-language > a:focus-visible > div {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* The source logo intentionally stays untouched. Multiplying its pale canvas
 * into the warm navigation surface removes the rectangular colour seam while
 * retaining the original green and coral artwork. */
body.bv-events-modern #logo img,
body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo img {
  background: transparent !important;
  mix-blend-mode: multiply !important;
}

/* 2026 header refinement: reuse the complete site logo, balance the three
 * navigation blocks and present the language choices as one quiet control. */
body.bv-events-modern #header-wrap,
body.bv-events-modern #header.sticky-header #header-wrap {
  border-color: rgba(6, 63, 77, .07) !important;
  box-shadow: 0 14px 38px rgba(4, 48, 60, .11) !important;
}

body.bv-events-modern #primary-menu .bv-flag-icon {
  box-shadow: 0 2px 6px rgba(6, 63, 77, .1) !important;
}

body.bv-events-modern #primary-menu ul li.bv-event-language > a > div,
body.bv-events-modern #primary-menu ul li.bv-event-language > a:hover > div,
body.bv-events-modern #primary-menu ul li.bv-event-language > a:focus-visible > div {
  border-top: 1px solid rgba(7, 113, 122, .1) !important;
  border-bottom: 1px solid rgba(7, 113, 122, .1) !important;
  border-radius: 0 !important;
  background: rgba(7, 113, 122, .045) !important;
  box-shadow: none !important;
  transform: none !important;
}

body.bv-events-modern #primary-menu .bv-event-language-title + .bv-event-language > a > div,
body.bv-events-modern #primary-menu .bv-event-language-title + .bv-event-language > a:hover > div,
body.bv-events-modern #primary-menu .bv-event-language-title + .bv-event-language > a:focus-visible > div {
  border-left: 1px solid rgba(7, 113, 122, .1) !important;
  border-radius: 16px 0 0 16px !important;
}

body.bv-events-modern #primary-menu ul li.bv-event-language:last-child > a > div {
  border-right: 1px solid rgba(7, 113, 122, .1) !important;
  border-radius: 0 16px 16px 0 !important;
}

body.bv-events-modern #primary-menu ul li.bv-event-language > a:hover > div,
body.bv-events-modern #primary-menu ul li.bv-event-language > a:focus-visible > div {
  background: rgba(10, 135, 148, .11) !important;
}

/* A real layout gap keeps every translated hero label clear of the title,
 * independently of font rendering and the legacy caption animation. */
body.bv-events-modern #slider .slider-caption-center {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  row-gap: clamp(26px, 2.5vw, 38px);
}

body.bv-events-modern #slider .slider-caption-center::before {
  margin-bottom: 0 !important;
}

body.bv-events-modern #slider .slider-caption h2,
body.bv-events-modern #slider .slider-caption p {
  position: relative;
  flex: 0 0 auto;
  margin: 0 !important;
}

@media (min-width: 992px) {
  body.bv-events-modern #header,
  body.bv-events-modern #header.full-header,
  body.bv-events-modern #header.transparent-header {
    height: 120px !important;
  }

  body.bv-events-modern #header-wrap {
    height: 92px !important;
    min-height: 92px !important;
  }

  body.bv-events-modern #header-wrap > .container,
  body.bv-events-modern #header.full-header #header-wrap > .container,
  body.bv-events-modern #primary-menu,
  body.bv-events-modern #primary-menu > ul {
    height: 90px !important;
    min-height: 90px !important;
  }

  body.bv-events-modern #header-wrap > .container,
  body.bv-events-modern #header.full-header #header-wrap > .container {
    padding-right: 22px !important;
    padding-left: 22px !important;
  }

  body.bv-events-modern #logo,
  body.bv-events-modern #header.full-header #logo,
  body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo,
  body.bv-events-modern #logo > a,
  body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo > a {
    width: 110px !important;
    height: 84px !important;
  }

  body.bv-events-modern #logo img,
  body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo img {
    width: auto !important;
    max-width: 94px !important;
    height: 80px !important;
    object-fit: contain;
  }

  body.bv-events-modern #primary-menu > ul {
    column-gap: 0 !important;
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  body.bv-events-modern #primary-menu ul li.bv-event-language {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.bv-events-modern #primary-menu .bv-event-official-link > a > div {
    min-width: 202px;
    padding-right: 22px;
    padding-left: 22px;
    box-shadow: 0 9px 20px rgba(168, 58, 49, .17) !important;
  }

  body.bv-events-modern #primary-menu .bv-event-official-link > a:hover > div,
  body.bv-events-modern #primary-menu .bv-event-official-link > a:focus-visible > div {
    box-shadow: 0 12px 25px rgba(141, 45, 39, .22) !important;
  }

  body.bv-events-modern #primary-menu .bv-event-language-title + .bv-event-language {
    margin-left: auto !important;
  }

  body.bv-events-modern #primary-menu ul li.bv-event-language,
  body.bv-events-modern #primary-menu ul li.bv-event-language > a,
  body.bv-events-modern #primary-menu ul li.bv-event-language > a > div {
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
  }

  body.bv-events-modern #slider .slider-caption h2 {
    line-height: 1.02 !important;
  }

  body.bv-events-modern #header.sticky-header:not(.static-sticky) {
    height: 78px !important;
  }

  body.bv-events-modern #header.sticky-header #header-wrap {
    height: 74px !important;
    min-height: 74px !important;
    box-shadow: 0 11px 30px rgba(4, 48, 60, .12) !important;
  }

  body.bv-events-modern #header.sticky-header #header-wrap > .container,
  body.bv-events-modern #header.sticky-header #primary-menu,
  body.bv-events-modern #header.sticky-header #primary-menu > ul {
    height: 72px !important;
    min-height: 72px !important;
  }

  body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo,
  body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo > a {
    height: 68px !important;
  }

  body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo img {
    height: 64px !important;
  }
}

@media (max-width: 991.98px) {
  body.bv-events-modern #logo img,
  body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo img {
    max-width: 82px !important;
    height: 68px !important;
  }

  body.bv-events-modern #primary-menu > ul,
  body.bv-events-modern #primary-menu > ul.show {
    column-gap: 0 !important;
    row-gap: 10px;
  }

  body.bv-events-modern #primary-menu ul li.bv-event-language > a > div {
    height: 56px !important;
    min-height: 56px !important;
  }

  body.bv-events-modern #slider .slider-caption-center {
    row-gap: 22px;
  }
}

@media (max-width: 900px) and (max-height: 560px) and (orientation: landscape) {
  body.bv-events-modern #logo img,
  body.bv-events-modern #header.sticky-header:not(.static-sticky) #logo img {
    max-width: 66px !important;
    height: 54px !important;
  }

  body.bv-events-modern #slider .slider-caption-center {
    row-gap: 15px;
  }
}

/* The open-menu badge is circular, but the complete rectangular logo must
 * remain fully visible inside it rather than being cropped like a photo. */
body.bv-events-modern #primary-menu .bv-event-menu-head__mark {
  overflow: hidden;
  background: #fff;
}

body.bv-events-modern #primary-menu .bv-event-menu-head__mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  object-fit: contain !important;
  filter: none !important;
  transform: none !important;
}

/* Keep the repeated official-site CTAs vertically centred in every language.
 * The legacy large-button height/line-height pair otherwise conflicts with
 * the newer pill padding. */
body.bv-events-modern #content a.button.button-3d.button-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
  min-height: 56px;
  line-height: 1.2;
}

/* Navigation-only official-site CTA. It deliberately uses the sea palette
 * and a compact directional badge so it cannot be confused with the coral
 * conversion buttons repeated throughout the page content. */
body.bv-events-modern #primary-menu .bv-event-official-link > a {
  display: inline-flex;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  align-items: center;
  background: transparent !important;
  line-height: 1 !important;
  text-decoration: none;
  box-shadow: none !important;
  transition: transform .24s cubic-bezier(.22, 1, .36, 1) !important;
}

body.bv-events-modern #primary-menu .bv-event-official-link > a > div {
  position: relative;
  display: inline-flex;
  min-width: 220px;
  min-height: 54px;
  padding: 0 58px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(172, 235, 225, .58) !important;
  border-radius: 18px 27px 18px 27px;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, .2), transparent 34%),
    linear-gradient(135deg, #0b8d91 0%, #08717a 46%, #063f4d 100%) !important;
  font-family: var(--bv-font-display) !important;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .005em;
  text-align: center;
  text-shadow: 0 1px 1px rgba(2, 35, 43, .28);
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .24),
    0 11px 24px rgba(6, 63, 77, .2) !important;
  transition:
    border-color .24s ease,
    box-shadow .24s ease !important;
}

body.bv-events-modern #primary-menu .bv-event-official-link > a > div::before {
  width: 7px;
  height: 7px;
  margin-right: 11px;
  border-radius: 50%;
  flex: 0 0 7px;
  background: #c8f4eb;
  box-shadow: 0 0 0 5px rgba(200, 244, 235, .13);
  content: "";
}

body.bv-events-modern #primary-menu .bv-event-official-link > a > div::after {
  position: absolute;
  top: 50%;
  right: 9px;
  display: flex;
  width: 36px;
  height: 36px;
  padding: 0 0 2px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px 18px 12px 18px;
  align-items: center;
  justify-content: center;
  color: #063f4d;
  background-color: #d9f3ed;
  background-image: none;
  content: "\2192";
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-shadow: none;
  box-shadow: 0 5px 12px rgba(2, 43, 52, .2);
  transform: translateY(-50%);
  transition:
    background-color .18s ease-out,
    box-shadow .18s ease-out;
}

body.bv-events-modern #primary-menu .bv-event-official-link > a:hover,
body.bv-events-modern #primary-menu .bv-event-official-link > a:focus-visible {
  opacity: 1 !important;
  background: transparent !important;
  transform: translateY(-2px) !important;
}

body.bv-events-modern #primary-menu .bv-event-official-link > a:hover > div,
body.bv-events-modern #primary-menu .bv-event-official-link > a:focus-visible > div {
  border-color: rgba(207, 249, 240, .9) !important;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, .2), transparent 34%),
    linear-gradient(135deg, #0b8d91 0%, #08717a 46%, #063f4d 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .3),
    0 15px 30px rgba(6, 63, 77, .27) !important;
  transform: none !important;
}

body.bv-events-modern #primary-menu .bv-event-official-link > a:hover > div::after,
body.bv-events-modern #primary-menu .bv-event-official-link > a:focus-visible > div::after {
  background-color: #fff;
  background-image: none;
  box-shadow: 0 7px 15px rgba(2, 43, 52, .24);
  transform: translateY(-50%);
}

body.bv-events-modern #primary-menu .bv-event-official-link > a:active {
  opacity: 1 !important;
  transform: scale(.985) !important;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body.bv-events-modern #primary-menu .bv-event-official-link > a > div {
    min-width: 200px;
    padding-right: 54px;
    padding-left: 18px;
    font-size: 12.25px;
  }
}

@media (max-width: 991.98px) {
  body.bv-events-modern #primary-menu .bv-event-official-link > a {
    display: flex;
    width: 100%;
    min-height: 58px;
  }

  body.bv-events-modern #primary-menu .bv-event-official-link > a > div {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 12px 60px 12px 20px;
    font-size: 13px;
    white-space: normal;
  }

  body.bv-events-modern #primary-menu .bv-event-official-link > a > div::after {
    right: 10px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 359.98px) {
  body.bv-events-modern #primary-menu .bv-event-official-link > a > div {
    min-height: 54px;
    padding-right: 50px;
    padding-left: 14px;
    font-size: 11.5px;
  }

  body.bv-events-modern #primary-menu .bv-event-official-link > a > div::before {
    width: 6px;
    height: 6px;
    margin-right: 8px;
    flex-basis: 6px;
    box-shadow: 0 0 0 3px rgba(200, 244, 235, .13);
  }

  body.bv-events-modern #primary-menu .bv-event-official-link > a > div::after {
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 10px 15px 10px 15px;
    font-size: 17px;
  }
}

@media (max-width: 991.98px) and (max-height: 500px) and (orientation: landscape) {
  body.bv-events-modern #primary-menu .bv-event-official-link > a,
  body.bv-events-modern #primary-menu .bv-event-official-link > a > div {
    min-height: 50px;
  }

  body.bv-events-modern #primary-menu .bv-event-official-link > a > div {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  body.bv-events-modern #primary-menu .bv-event-official-link > a > div::after {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.bv-events-modern #primary-menu .bv-event-official-link > a,
  body.bv-events-modern #primary-menu .bv-event-official-link > a > div,
  body.bv-events-modern #primary-menu .bv-event-official-link > a > div::after {
    transition: none !important;
  }
}
