/* SIMA I18N FR/EN/ES — selector V2. Base V19R5R2 CSS remains untouched. */
.language-switcher{
  position:relative;
  flex:0 0 auto;
  margin:0;
}
.language-switcher-trigger{
  min-width:82px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 11px;
  color:#fff;
  background:#18314f;
  border:1px solid rgba(255,255,255,.30);
  border-radius:999px;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.language-switcher-trigger:hover,
.language-switcher-trigger:focus-visible{
  background:#203d5e;
  border-color:rgba(255,255,255,.48);
  outline:none;
}
.language-switcher-trigger:focus-visible{
  box-shadow:0 0 0 3px rgba(231,104,2,.26);
}
.language-flag,.language-option-flag{
  display:block;
  width:22px;
  height:15px;
  flex:0 0 22px;
  object-fit:cover;
  border-radius:2px;
  box-shadow:0 0 0 1px rgba(255,255,255,.18),0 1px 3px rgba(0,0,0,.25);
}
.language-code{
  font-size:13px;
  line-height:1;
  font-weight:600;
  letter-spacing:.02em;
}
.language-chevron{
  width:12px;
  height:12px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:.9;
  transition:transform .18s ease;
}
.language-switcher.is-open .language-chevron{transform:rotate(180deg)}
.language-menu{
  position:absolute;
  z-index:180;
  top:calc(100% + 10px);
  right:0;
  width:190px;
  padding:9px;
  display:grid;
  gap:3px;
  color:#fff;
  background:#18314f;
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.38);
}
.language-menu[hidden]{display:none !important}
.language-option{
  width:100%;
  min-height:52px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:8px 10px;
  color:rgba(255,255,255,.92);
  text-align:left;
  background:transparent;
  border:0;
  border-left:3px solid transparent;
  border-radius:11px;
  cursor:pointer;
  transition:background .16s ease,border-color .16s ease;
}
.language-option:hover,.language-option:focus-visible{
  background:rgba(255,255,255,.075);
  outline:none;
}
.language-option.is-active{
  background:rgba(255,255,255,.10);
  border-left-color:#e76802;
}
.language-option-copy{display:grid;gap:2px;line-height:1.05}
.language-option-copy strong{font-size:13px;font-weight:600;color:#fff}
.language-option-copy small{font-size:11px;color:rgba(255,255,255,.62)}

/* Desktop: one switcher DOM, immediately after the SIMA brand lockup. */
@media (min-width:861px){
  .site-header .nav-wrap{
    justify-content:flex-start !important;
    gap:12px !important;
  }
  .site-header .site-nav{
    margin-left:auto !important;
  }
}
@media (min-width:861px) and (max-width:1100px){
  .site-header .site-nav{gap:10px !important}
  .language-switcher-trigger{min-width:70px;height:38px;padding:0 8px;gap:6px}
  .language-flag{width:20px;height:14px;flex-basis:20px}
  .language-code{font-size:12px}
  .language-chevron{width:10px;height:10px}
}
@media (max-width:860px){
  .language-switcher{width:100%;margin:7px 0 0}
  .language-switcher-trigger{
    width:100%;
    min-width:0;
    height:46px;
    justify-content:flex-start;
    padding:0 14px;
    border-radius:12px;
    background:#18314f;
  }
  .language-switcher-trigger .language-chevron{margin-left:auto}
  .language-menu{
    position:static;
    width:100%;
    margin-top:7px;
    padding:7px;
    border-radius:14px;
    box-shadow:none;
  }
  .language-option{min-height:48px}
}
@media (prefers-reduced-motion:reduce){
  .language-switcher-trigger,.language-chevron,.language-option{transition:none}
}

/* V2R1 — Venue city/country badge: match the date chip hierarchy, using the venue green. */
.place-card .hero-info-copy small{
  width:max-content;
  max-width:100%;
  margin-top:8px;
  padding:6px 11px;
  border-radius:999px;
  background:rgba(16,163,95,.11);
  color:#5ee49c;
  border:1px solid rgba(16,163,95,.25);
  font-size:10px;
  line-height:1.15;
  font-weight:620;
  letter-spacing:.06em;
  text-transform:uppercase;
}
