/* ---- Partner hero: two-column with interactive Europe map ---- */
.partner-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.partner-hero .sec-head {
  max-width: none;
}
@media (max-width: 1023px) {
  .partner-hero {
    grid-template-columns: 1fr;
  }
}

/* ---- Scoped interactive map (eumap) ---- */
.eumap {
  background: rgba(6, 28, 48, 0.6);
  border: 1px solid var(--tfg-color-line);
  border-radius: var(--tfg-radius-2xl);
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.eumap__head {
  display: none;
}
.eumap__title {
  font-family: var(--tfg-font-mono);
  font-size: var(--tfg-fs-micro);
  letter-spacing: var(--tfg-tracking-label);
  text-transform: uppercase;
  color: var(--tfg-fg-3);
}
.eumap__legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--tfg-font-mono);
  font-size: 11px;
  color: var(--tfg-fg-3);
  flex-wrap: wrap;
}
.eumap__legend .sw {
  width: 14px;
  height: 9px;
  border-radius: 2px;
  display: inline-block;
}
.eumap__layout {
  display: block;
  flex: 1;
}
@media (max-width: 620px) {
  .eumap__layout {
    grid-template-columns: 1fr;
  }
}
.eumap__mapbox {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  min-height: 300px;
  height: 100%;
  display: block;
}
.eumap__mapbox svg {
  width: 100%;
  height: 100%;
  display: block;
}
.eumap__tip {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s;
  background: var(--tfg-color-surface, #113048);
  border: 1px solid var(--tfg-brand-primary);
  color: var(--tfg-fg-1);
  font-family: var(--tfg-font-mono);
  font-size: 12px;
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
  transform: translate(-50%, -130%);
  z-index: 5;
}
.eumap__panel {
  display: none;
}
.eumap__foot {
  display: none;
}
/* Match the home runtime visual footprint (square-ish) on desktop */
@media (min-width: 1024px) {
  .eumap {
    aspect-ratio: 1/1;
  }
}
.eumap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 8px;
  align-content: start;
  max-height: 420px;
  overflow: auto;
}
.eumz {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  cursor: pointer;
  padding: 10px 11px;
  border-radius: var(--tfg-radius-md);
  border: 1px solid var(--tfg-color-line);
  background: var(--c);
  font-family: inherit;
  transition:
    border-color var(--tfg-motion-fast, 0.14s) var(--tfg-ease-runtime, ease),
    transform var(--tfg-motion-fast, 0.14s) var(--tfg-ease-runtime, ease);
}
.eumz:hover {
  border-color: var(--tfg-brand-primary);
  transform: translateY(-1px);
}
.eumz.is-sel {
  border-color: var(--tfg-brand-primary);
  box-shadow: inset 0 0 0 1px var(--tfg-brand-primary);
}
.eumz__n {
  font-size: 12.5px;
  color: var(--tfg-fg-1);
  font-weight: 500;
}
.eumz__p {
  font-family: var(--tfg-font-mono);
  font-size: 13px;
  color: var(--tfg-fg-1);
}
.eumz__bar {
  height: 5px;
  border-radius: 3px;
  background: rgba(10, 33, 56, 0.55);
  overflow: hidden;
}
.eumz__bar i {
  display: block;
  height: 100%;
  background: var(--tfg-brand-primary);
  border-radius: 3px;
}
