:root {
  --sidebar-width: 31rem;
  --layout-gap: 4rem;
  --wp--style--block-gap: clamp(3.5rem, 2.737rem + 1.404vw, 4rem);
}

@media (min-width: 1300px) {
  :root {
    --sidebar-width: 34rem;
    --layout-gap: 6rem;
  }
}
.operations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  overflow: hidden;
}
* + .operations {
  margin-top: var(--wp--preset--spacing--l) !important;
}
.operations__map {
  position: relative;
  aspect-ratio: 620/554;
  overflow: hidden;
  border-radius: 6px;
}
.operations__map > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.operations__markers {
  position: absolute;
  inset: 0;
}
.operations__marker {
  position: absolute;
  top: var(--map-y);
  left: var(--map-x);
  width: 13px;
  height: 13px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 2px solid #FFF;
  border-radius: 50%;
  background: #09293E;
  box-shadow: 0 1px 3px rgba(10, 10, 10, 0.32);
  cursor: pointer;
  transition: background-color 0.45s ease-in-out, transform 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}
.operations__marker.active, .operations__marker:hover, .operations__marker:focus-visible {
  background: #FF4D2D;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 4px rgba(255, 77, 45, 0.2), 0 1px 3px rgba(10, 10, 10, 0.25);
}
.operations__marker:focus-visible {
  outline: 2px solid #FFF;
  outline-offset: 3px;
}
.operations__locations {
  min-width: 0;
}
.operations .location {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  min-height: 160px;
  border-bottom: 1px solid rgba(50, 62, 70, 0.14);
}
.operations .location:last-child {
  border-bottom: 0;
}
.operations .location__toggle {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0 calc(40% + 64px) 0 48px;
  border: 0;
  color: #0A0A0A;
  background: transparent;
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-28);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
}
.operations .location.active .location__toggle {
  width: 100%;
  height: 51px;
  align-items: flex-start;
  padding: 0 calc(40% + 64px) 0 48px;
}
.operations .location__icon {
  position: absolute;
  top: 20px;
  right: 0;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 0 6px 0 6px;
  background-color: #FFF;
  background-image: radial-gradient(circle at center, transparent 17px, #FF4D2D 17px, #FF4D2D 18px, transparent 18px);
}
.operations .location__icon::before, .operations .location__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: #104161;
}
.operations .location__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
}
.operations .location.active .location__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}
.operations .location__panel {
  grid-column: 1;
  grid-row: 1;
  height: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.operations .location__panel[hidden] {
  display: none;
}
.operations .location__panel > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.14s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.operations .location.active .location__panel > * {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 0.24s, 0.3s;
  transition-delay: 0.2s;
}
.operations .location__content {
  padding: 60px 40px 24px 48px;
  color: #323E46;
}
.operations .location__content p {
  margin: 0;
  font-size: var(--wp--preset--font-size--font-18);
  line-height: 1.55;
}
.operations .location__subtitle {
  margin-bottom: 0.75em !important;
  color: #104161;
  font-weight: 600;
}
.operations .location__image {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 120px;
  margin: 20px 0;
  object-fit: cover;
  border-radius: 6px;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.operations .location .btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: #0A0A0A !important;
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-18);
  font-weight: 500;
  border: 0 !important;
  text-decoration: none !important;
}
.operations .location .btn-sm:hover, .operations .location .btn-sm:focus-visible {
  color: #0A0A0A !important;
}
.operations .location__arrow {
  position: relative;
  width: 22px;
  height: 1px;
  background: #FF4D2D;
}
.operations .location__arrow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 1px solid #FF4D2D;
  border-right: 1px solid #FF4D2D;
}
@media (max-width: 1023px) {
  .operations {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .operations .location__toggle, .operations .location__content {
    padding-left: 32px;
  }
  .operations .location__toggle, .operations .location.active .location__toggle {
    padding-right: calc(40% + 64px);
  }
}
@media (max-width: 620px) {
  .operations {
    border-radius: 0;
  }
  .operations__map {
    border-radius: 0;
  }
  .operations .location {
    grid-template-columns: 58% 42%;
  }
  .operations .location.active {
    grid-template-columns: 1fr;
  }
  .operations .location.active .location__toggle {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 74px;
    align-items: center;
    padding: 0 64px 0 24px;
  }
  .operations .location__toggle {
    font-size: var(--wp--preset--font-size--font-24);
  }
  .operations .location.active .location__icon, .operations .location__icon {
    top: 20px;
    right: 0;
  }
  .operations .location__panel {
    grid-column: 1;
    grid-row: 2;
  }
  .operations .location__content {
    padding: 0 24px 24px;
  }
  .operations .location__image {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 120px;
    border-radius: 0;
  }
  .operations .location.active .location__image {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .operations * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
