section.block-map-realisation {
  padding-top: var(--wp--preset--spacing--2-xl);
}
section.block-map-realisation h1 {
  margin-top: 0px;
  padding: 0px;
  margin-bottom: 0px;
}
section.block-map-realisation * {
  box-sizing: border-box;
}
section.block-map-realisation .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  section.block-map-realisation .container {
    flex-direction: column-reverse;
  }
}
section.block-map-realisation .container .content {
  position: relative;
  z-index: 3;
  overflow-y: auto;
  padding: var(--wp--preset--spacing--3-xl) var(--wp--preset--spacing--2-xl);
  background-color: black;
  border-radius: 16px;
  width: 600px;
}
section.block-map-realisation .container .content p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  section.block-map-realisation .container .content {
    width: 100%;
    max-height: none;
    border-radius: 0px;
    max-height: auto;
    padding: 0px;
    background-color: transparent;
  }
}
@media screen and (min-width: 768px) {
  section.block-map-realisation .container .content .select-wrapper {
    margin-top: 0px;
  }
}
section.block-map-realisation .map {
  height: fit-content;
  position: sticky;
  top: var(--wp--preset--spacing--header-safe-area);
}
section.block-map-realisation .map .header {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  section.block-map-realisation .map {
    position: relative;
    top: 0px;
    width: 100%;
    margin-bottom: var(--wp--preset--spacing--2-xl);
  }
}
section.block-map-realisation .map:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #0B94E9 0%, #4BD860 100%);
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 1500px;
  opacity: 0.2;
  top: 0px;
  left: 0px;
  filter: blur(250px);
}
@media screen and (max-width: 768px) {
  section.block-map-realisation .map:after {
    filter: blur(100px);
    opacity: 0.3;
  }
}
section.block-map-realisation svg {
  position: relative;
  z-index: 3;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  section.block-map-realisation svg {
    max-width: 100%;
  }
}
section.block-map-realisation svg path[data-region] {
  cursor: pointer;
}
section.block-map-realisation svg path[data-region]:hover, section.block-map-realisation svg path[data-region].active {
  opacity: 1;
}
section.block-map-realisation .realisations:has(.active) .realisation, section.block-map-realisation.has-selection .realisation {
  display: none;
}
section.block-map-realisation .realisations:has(.active) .realisation.active, section.block-map-realisation.has-selection .realisation.active {
  display: block;
}
section.block-map-realisation .select-wrapper {
  margin-top: var(--wp--preset--spacing--2-xl);
}
@media screen and (max-width: 768px) {
  section.block-map-realisation .select-wrapper {
    margin-top: 0px;
  }
}
section.block-map-realisation .realisations {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: var(--wp--preset--spacing--xl);
}
@media screen and (min-width: 768px) {
  section.block-map-realisation .realisations .realisation .wp-block-group.is-style-card {
    display: flex;
    flex-direction: row;
  }
  section.block-map-realisation .realisations .realisation .wp-block-group.is-style-card > .wp-block-group:has(figure) {
    width: 200px;
  }
  section.block-map-realisation .realisations .realisation .wp-block-group.is-style-card > .wp-block-group:has(figure) figure {
    width: 100%;
    height: 100%;
  }
  section.block-map-realisation .realisations .realisation .wp-block-group.is-style-card > .wp-block-group:has(figure) figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  section.block-map-realisation .realisations .realisation .wp-block-group.is-style-card > .wp-block-group:not(:has(figure)) {
    width: calc(100% - 200px);
  }
}