.block-office-locations {
  background: var(--mcl-colour-brand-blue-tint);
  padding-block: 56px;
}
.block-office-locations__inner {
  width: 100%;
  max-width: var(--mcl-container-max-width);
  padding-inline: var(--mcl-layout-gutter);
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
.block-office-locations__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.block-office-locations__heading {
  font-size: 36px;
  font-weight: var(--mcl-fw-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--mcl-colour-brand-blue-light);
}
.block-office-locations__heading-rule {
  display: block;
  width: 210px;
  height: 3px;
  background-color: var(--mcl-colour-brand-orange);
}
.block-office-locations__intro {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #232323;
}
.block-office-locations__accordion {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.block-office-locations__trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: left;
}
.block-office-locations__trigger:focus-visible {
  outline: 2px solid var(--mcl-colour-brand-blue-light);
  outline-offset: -2px;
}
.block-office-locations__pin-icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.block-office-locations__trigger-label {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #232323;
  line-height: 1;
}
.block-office-locations__toggle-icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23232323' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.block-office-locations__trigger[aria-expanded=true] .block-office-locations__toggle-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.block-office-locations__panel[hidden] {
  display: none;
}
.block-office-locations__panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding: 0 12px 12px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
}
.block-office-locations__trigger[aria-expanded=true] + .block-office-locations__panel {
  max-height: 1000px;
}
.block-office-locations__map {
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
}
.block-office-locations__panel[data-single-office=true] .block-office-locations__map {
  border-radius: 10px 10px 0 0;
}
.block-office-locations__cards-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding-top: 16px;
  margin-inline: -12px;
}
.block-office-locations__cards-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  background: var(--mcl-colour-brand-blue-tint);
  padding: 12px;
  margin-bottom: -12px;
}
.block-office-locations__arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--mcl-colour-brand-blue-light);
  color: #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.block-office-locations__arrow.disabled {
  opacity: 0.25;
  pointer-events: none;
}
.block-office-locations__arrow:hover:not(.disabled) {
  opacity: 0.8;
}
.block-office-locations__arrow:focus-visible {
  outline: 2px solid var(--mcl-colour-brand-blue-light);
  outline-offset: 2px;
}
.block-office-locations__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: -webkit-grab;
  cursor: grab;
  padding-bottom: 12px;
  padding-inline: 10px;
  scroll-padding-left: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--mcl-colour-brand-blue-light) rgba(41, 75, 142, 0.12);
}
.block-office-locations__cards::-webkit-scrollbar {
  height: 4px;
}
.block-office-locations__cards::-webkit-scrollbar-track {
  background: rgba(41, 75, 142, 0.12);
  border-radius: 2px;
}
.block-office-locations__cards::-webkit-scrollbar-thumb {
  background: var(--mcl-colour-brand-blue-light);
  border-radius: 2px;
}
.block-office-locations__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 87%;
      -ms-flex: 0 0 87%;
          flex: 0 0 87%;
  scroll-snap-align: start;
}
@media (min-width: 576px) {
  .block-office-locations__slide {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 8px);
        -ms-flex: 0 0 calc(50% - 8px);
            flex: 0 0 calc(50% - 8px);
  }
}
@media (min-width: 992px) {
  .block-office-locations__slide {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(28.5% - 14px);
        -ms-flex: 0 0 calc(28.5% - 14px);
            flex: 0 0 calc(28.5% - 14px);
  }
}
.block-office-locations__card {
  height: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(29, 50, 80, 0.08);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.15s ease;
  transition: border-color 0.15s ease;
  cursor: pointer;
  box-sizing: border-box;
}
.block-office-locations__card.is-active {
  border-color: var(--mcl-colour-brand-blue-light);
}
.block-office-locations__card-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.block-office-locations__card-name {
  font-size: 24px;
  font-weight: var(--mcl-fw-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #232323;
}
.block-office-locations__card-address {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: #232323;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.block-office-locations__caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: var(--mcl-colour-brand-blue-light);
  color: var(--mcl-colour-brand-blue-tint);
  padding: 16px 24px;
  border-radius: 0 0 10px 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.block-office-locations__caption svg {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}