/* iOS Safari: remove visible border/outline around <video> */
video {
  border: none !important;
  outline: none !important;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel {
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Swiper / UAGB Slider: focus ring handling on slides (iOS Safari) */
.uagb-slider-child-wrap,
.uagb-slider-child-wrap * {
  -webkit-tap-highlight-color: transparent;
}
.uagb-slider-child-wrap:focus {
  outline: none !important;
}
.uagb-slider-child-wrap:focus-visible {
  outline: none !important;
}
.uagb-slider-child-wrap figure:focus,
.uagb-slider-child-wrap .wp-block-video:focus,
.uagb-slider-child-wrap .wp-block-video video:focus {
  outline: none !important;
}
@media (hover: hover) and (pointer: fine) {
  .uagb-slider-child-wrap:focus-visible {
    outline: none !important;
  }
}
.uagb-slider-child-wrap:focus-within video,
.uagb-slider-child-wrap:focus video,
.uagb-slider-child-wrap.swiper-slide-active video,
.uagb-slider-child-wrap.swiper-slide-next video,
.uagb-slider-child-wrap.swiper-slide-prev video,
.uagb-slider-child-wrap.swiper-slide-duplicate-active video {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-focus-ring-color: transparent !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
}
.uagb-slider-child-wrap:focus-within figure.wp-block-video,
.uagb-slider-child-wrap:focus figure.wp-block-video {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
}
.uagb-slider-child-wrap:focus-within .wp-block-video,
.uagb-slider-child-wrap:focus-within .wp-block-video video {
  background-color: transparent !important;
  -webkit-tap-highlight-color: transparent !important;
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
}

/* Sticky layout: make .left-container sticky within .main-container */
:root{
  --sticky-top: 0px;
}
.main-container{
  display: flex;
  align-items: flex-start;
  overflow: visible !important;
}
.left-container,
.uag-blocks-common-selector.left-container,
.wp-block-uagb-container.left-container{
  position: sticky;
  top: var(--sticky-top, 0px);
  align-self: flex-start;
  height: fit-content;
}
body.admin-bar .left-container,
body.admin-bar .uag-blocks-common-selector.left-container,
body.admin-bar .wp-block-uagb-container.left-container{
  top: calc(var(--sticky-top, 0px) + 32px);
}
@media (max-width: 960px){
  .left-container,
  .uag-blocks-common-selector.left-container,
  .wp-block-uagb-container.left-container{
    position: static;
  }
}

/* iOS Safari: 100vh fixes */
html { height: -webkit-fill-available; }
body { min-height: 100svh; min-height: 100dvh; }
html, body { overscroll-behavior: auto; }

/* ETAC Section Anchor Nav */
.etac-section-anchor-nav {
  --etac-section-anchor-indicator-x: var(--etac-space-2xs, var(--wp--preset--spacing--xxx-small, 4px));
  --etac-section-anchor-indicator-y: var(--etac-space-2xs, var(--wp--preset--spacing--xxx-small, 4px));
  --etac-section-anchor-indicator-width: 0px;
  --etac-section-anchor-indicator-height: 0px;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  width: auto;
  max-width: 100%;
  margin-block: var(--wp--preset--spacing--medium, 24px) var(--wp--preset--spacing--large, 32px);
  padding: var(--etac-space-2xs, var(--wp--preset--spacing--xxx-small, 4px));
  border-radius: var(--etac-radius-pill, 999px);
  background: #f2f2f7;
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, 0.1);
}

.wp-block-group.has-global-padding.is-layout-constrained:has(> .etac-section-anchor-nav) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.wp-block-group.has-global-padding.is-layout-constrained:has(> .etac-section-anchor-nav) > .etac-section-anchor-nav {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.etac-section-anchor-nav__indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: var(--etac-section-anchor-indicator-width);
  height: var(--etac-section-anchor-indicator-height);
  border-radius: var(--etac-radius-pill, 999px);
  background: var(--etac-color-primary, var(--wp--preset--color--primary));
  box-shadow: var(--etac-shadow-button, 0 16px 34px rgba(11, 18, 32, 0.14));
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--etac-section-anchor-indicator-x), var(--etac-section-anchor-indicator-y), 0);
  transition:
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.16s ease;
}

.etac-section-anchor-nav.is-indicator-ready .etac-section-anchor-nav__indicator {
  opacity: 1;
}

.etac-section-anchor-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: var(--etac-radius, 3px);
  padding: 8px 40px 8px 18px;
  background: #fff;
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.etac-section-anchor-nav .etac-section-anchor-nav__link {
  z-index: 1;
  min-height: var(--etac-space-5xl, var(--wp--preset--spacing--x-large, 48px));
  border: 0;
  border-radius: var(--etac-radius-pill, 999px);
  padding: 0 var(--etac-space-xl, var(--wp--preset--spacing--medium, 24px));
  background: transparent;
  color: var(--etac-text, #0b1220);
  font-size: var(--wp--preset--font-size--small, 14px);
  font-weight: 400;
  line-height: 1.2857142857;
}

.etac-section-anchor-nav .etac-section-anchor-nav__link::after {
  display: none;
}

.etac-section-anchor-nav__link::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.etac-section-anchor-nav__link:hover,
.etac-section-anchor-nav__link:focus-visible {
  border-color: var(--wp--preset--color--primary);
  background: var(--etac-blueBg);
  color: var(--wp--preset--color--primary);
}

.etac-section-anchor-nav__link:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}

.etac-section-anchor-nav .etac-section-anchor-nav__link:hover,
.etac-section-anchor-nav .etac-section-anchor-nav__link:focus-visible,
.etac-section-anchor-nav .etac-section-anchor-nav__link.is-active {
  background: transparent;
  border-color: transparent;
  color: var(--etac-onPrimary, #ffffff);
  opacity: 1;
}

.etac-section-anchor-nav .etac-section-anchor-nav__link:hover {
  outline: 0;
}

.etac-section-anchor-nav .etac-section-anchor-nav__link:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: var(--etac-space-2xs, var(--wp--preset--spacing--xxx-small, 4px));
}

#about-us,
#division,
#base,
#network,
#history,
#global-products,
#global-download,
#global-business,
#global-inquiry {
  scroll-margin-top: calc(var(--etac-header-h, 56px) + var(--wp--preset--spacing--large, 32px));
}

@media (max-width: 767px) {
  .etac-section-anchor-nav {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-block: var(--wp--preset--spacing--small, 16px) var(--wp--preset--spacing--medium, 24px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .etac-section-anchor-nav::-webkit-scrollbar {
    display: none;
  }

  .etac-section-anchor-nav .etac-section-anchor-nav__link {
    flex: 0 0 auto;
    min-height: var(--etac-space-4xl, 40px);
    padding: 0 var(--etac-space-lg, 20px);
  }
}


/* ETAC Filter Table */
.etac-filter-table {
  margin-top: var(--wp--preset--spacing--small, 16px);
  display: grid;
  gap: var(--wp--preset--spacing--small, 16px);
}

.etac-filter-table__controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) auto;
  gap: 12px 16px;
  align-items: end;
}

.etac-filter-table__control {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.etac-filter-table__controls .etac-filter-table__control::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--wp--preset--color--primary);
  border-bottom: 1.5px solid var(--wp--preset--color--primary);
  pointer-events: none;
  transform: rotate(45deg);
}

.etac-filter-table__label {
  margin: 0;
  color: var(--etac-text);
  font-size: var(--wp--preset--font-size--x-small, 14px);
  line-height: 1.4;
  font-weight: 600;
}

.etac-filter-table__input,
.etac-filter-table__select {
  width: 100%;
  min-width: 0;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--primary) 45%, #cbd5e1);
  border-radius: var(--etac-radius-pill, 999px);
  padding: 0 12px;
  background: #fff;
  color: var(--etac-text);
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
}

.etac-filter-table__select {
  appearance: none;
  background-image: none;
  padding-right: 40px;
}

.etac-filter-table__input::placeholder {
  color: color-mix(in srgb, var(--etac-muted) 78%, transparent);
}

.etac-filter-table__input:focus-visible,
.etac-filter-table__select:focus-visible {
  outline: 2px solid var(--etac-primary, var(--wp--preset--color--primary));
  outline-offset: 1px;
}

.etac-filter-table__summary {
  margin: 0;
  grid-column: 1 / -1;
  justify-self: end;
  color: var(--etac-muted);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  line-height: 1.5;
  font-weight: 600;
  white-space: nowrap;
}
.etac-filter-table__reset {
  min-height: 36px;
  border: 1px dashed color-mix(in srgb, var(--wp--preset--color--primary) 55%, transparent);
  border-radius: var(--etac-radius-pill, 999px);
  background: #fff;
  color: color-mix(in srgb, var(--wp--preset--color--primary) 78%, #2d3748);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  font-weight: 400;
  line-height: 1.4;
  padding: 6px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.etac-filter-table__reset:hover,
.etac-filter-table__reset:focus-visible {
  border-color: var(--wp--preset--color--primary);
  background: var(--etac-blueBg);
  color: var(--wp--preset--color--primary);
}

.etac-filter-table__reset:focus-visible {
  outline: 2px solid var(--etac-primary, var(--wp--preset--color--primary));
  outline-offset: 2px;
}

.etac-filter-table__reset:disabled {
  cursor: default;
  opacity: 0.45;
  background: #fff;
  border-color: rgba(11, 18, 32, 0.16);
  color: var(--etac-muted);
}

.etac-filter-table__scroller {
  overflow: auto;
}

.etac-filter-table__table {
  width: max-content;
  min-width: 100%;
  max-width: none;
  table-layout: auto;
  border-collapse: collapse;
  background: #fff;
  color: var(--etac-text);
  font-size: 13px;
  line-height: 1.65;
  border-top: 1px solid rgba(11, 18, 32, 0.12);
}

.etac-filter-table__table th,
.etac-filter-table__table td {
  padding: var(--wp--preset--spacing--xx-small, 8px) var(--wp--preset--spacing--x-small, 12px);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
  text-align: left;
  vertical-align: top;
}

.etac-filter-table__table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: color-mix(in srgb, var(--etac-primary) 6%, #ffffff);
  color: var(--etac-text);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.etac-filter-table__table thead th:nth-child(1),
.etac-filter-table__table tbody td:nth-child(1),
.etac-filter-table__table thead th:nth-child(2),
.etac-filter-table__table tbody td:nth-child(2),
.etac-filter-table__table thead th:nth-child(3),
.etac-filter-table__table tbody td:nth-child(3),
.etac-filter-table__table thead th:nth-child(4),
.etac-filter-table__table tbody td:nth-child(4) {
  white-space: nowrap;
}

.etac-filter-table__table thead th:nth-child(2),
.etac-filter-table__table tbody td:nth-child(2) {
  min-width: 14em;
}

.etac-filter-table__table thead th:nth-child(3),
.etac-filter-table__table tbody td:nth-child(3) {
  min-width: 8em;
}

.etac-filter-table__table thead th:nth-child(5),
.etac-filter-table__table tbody td:nth-child(5) {
  width: 100%;
}

.etac-filter-table__table tbody tr:nth-child(odd) {
  background: #f9f9f9;
}

.etac-filter-table__table tbody tr:nth-child(even) {
  background: #ffffff;
}

.etac-filter-table__table tbody tr:hover {
  background: var(--etac-blueBg);
}

.etac-filter-table__empty {
  margin: 0;
  padding: 20px;
  border-top: 1px solid rgba(11, 18, 32, 0.12);
  background: #fff;
  color: var(--etac-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .etac-filter-table__controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .etac-filter-table__summary {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .etac-filter-table__controls {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ETAC Filter Table Pagination */
.etac-filter-table__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--wp--preset--spacing--xx-small, 8px);
}

.etac-filter-table__pagination[hidden] {
  display: none;
}

.etac-filter-table__page-button {
  min-height: 36px;
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--primary) 55%, transparent);
  border-radius: var(--etac-radius-pill, 999px);
  background: #fff;
  color: color-mix(in srgb, var(--wp--preset--color--primary) 78%, #2d3748);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  font-weight: 400;
  line-height: 1.4;
  padding: 6px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.etac-filter-table__page-button:hover,
.etac-filter-table__page-button:focus-visible {
  border-color: var(--wp--preset--color--primary);
  background: var(--etac-blueBg);
  color: var(--wp--preset--color--primary);
}

.etac-filter-table__page-button:focus-visible {
  outline: 2px solid var(--etac-primary, var(--wp--preset--color--primary));
  outline-offset: 2px;
}

.etac-filter-table__page-button:disabled {
  cursor: default;
  opacity: 0.45;
  background: #fff;
  border-color: rgba(11, 18, 32, 0.16);
  color: var(--etac-muted);
}

.etac-filter-table__page-status {
  min-width: 4.5em;
  color: var(--etac-muted);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .etac-filter-table__pagination {
    justify-content: flex-start;
  }
}

/* ETAC About Tables */
.etac-about-table .etac-filter-table__table thead th:nth-child(n),
.etac-about-table .etac-filter-table__table tbody td:nth-child(n) {
  width: auto;
  min-width: 0;
  white-space: normal;
}

.etac-about-table--base .etac-filter-table__table thead th:nth-child(1),
.etac-about-table--base .etac-filter-table__table tbody td:nth-child(1),
.etac-about-table--base .etac-filter-table__table thead th:nth-child(2),
.etac-about-table--base .etac-filter-table__table tbody td:nth-child(2),
.etac-about-table--history .etac-filter-table__table thead th:nth-child(1),
.etac-about-table--history .etac-filter-table__table tbody td:nth-child(1) {
  white-space: nowrap;
}

.etac-about-table--base .etac-filter-table__table thead th:nth-child(3),
.etac-about-table--base .etac-filter-table__table tbody td:nth-child(3) {
  min-width: 18em;
}

.etac-about-table--base .etac-filter-table__table thead th:nth-child(4),
.etac-about-table--base .etac-filter-table__table tbody td:nth-child(4) {
  min-width: 22em;
}

.etac-about-table--history .etac-filter-table__table thead th:nth-child(1),
.etac-about-table--history .etac-filter-table__table tbody td:nth-child(1) {
  width: 7em;
}

.etac-about-table--history .etac-filter-table__table thead th:nth-child(2),
.etac-about-table--history .etac-filter-table__table tbody td:nth-child(2) {
  width: 100%;
  min-width: 32em;
}

.etac-about-table--history .etac-filter-table__table tbody tr:nth-child(odd):hover {
  background: #f9f9f9;
}

.etac-about-table--history .etac-filter-table__table tbody tr:nth-child(even):hover {
  background: #ffffff;
}
.etac-about-division {
  display: grid;
  gap: var(--wp--preset--spacing--large, 32px);
  margin-top: var(--wp--preset--spacing--small, 16px);
}

.etac-about-division__item {
  display: grid;
  gap: var(--wp--preset--spacing--x-small, 12px);
}

.etac-about-division__heading {
  margin: 0;
  color: var(--etac-text);
  font-size: var(--wp--preset--font-size--large, 20px);
  line-height: 1.45;
  font-weight: 700;
}

.etac-about-table--division.etac-filter-table {
  margin-top: 0;
}

.etac-about-table--division .etac-filter-table__table {
  width: 100%;
}

.etac-about-table--division .etac-filter-table__table thead th:nth-child(1),
.etac-about-table--division .etac-filter-table__table tbody td:nth-child(1) {
  width: 12em;
  white-space: nowrap;
  color: var(--etac-text);
  font-weight: 700;
}

.etac-about-table--division .etac-filter-table__table thead th:nth-child(2),
.etac-about-table--division .etac-filter-table__table tbody td:nth-child(2) {
  width: 100%;
  min-width: 24em;
}

#division .etac-about-table--division .etac-filter-table__table tbody tr:nth-child(odd):not([data-etac-map-open]):not(:has(a)):hover {
  background: #f9f9f9;
}

#division .etac-about-table--division .etac-filter-table__table tbody tr:nth-child(even):not([data-etac-map-open]):not(:has(a)):hover {
  background: #ffffff;
}
#about-us .etac-about-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--etac-radius, 8px);
  overflow: hidden;
  background: #0b1220;
}

#about-us .etac-about-video__frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

#about-us .etac-about-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(56px, 7vw, 72px);
  height: clamp(56px, 7vw, 72px);
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--primary) 35%, #ffffff);
  border-radius: var(--etac-radius-pill, 999px);
  background: color-mix(in srgb, var(--wp--preset--color--primary) 92%, #ffffff);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.2);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

#about-us .etac-about-video__play:hover,
#about-us .etac-about-video__play:focus-visible {
  border-color: var(--wp--preset--color--primary);
  background: var(--wp--preset--color--primary);
}

#about-us .etac-about-video__play:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 4px;
}

#about-us .etac-about-video__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
}

#about-us .etac-about-video.is-playing .etac-about-video__play {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}
#about-us .etac-about-video__controls {
  position: absolute;
  right: var(--wp--preset--spacing--x-small, 12px);
  bottom: var(--wp--preset--spacing--x-small, 12px);
  left: var(--wp--preset--spacing--x-small, 12px);
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  gap: var(--wp--preset--spacing--xx-small, 8px);
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--etac-radius, 8px);
  background: rgba(11, 18, 32, 0.72);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

#about-us .etac-about-video.is-playing .etac-about-video__controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

#about-us .etac-about-video__stop,
#about-us .etac-about-video__fullscreen {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--etac-radius-pill, 999px);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

#about-us .etac-about-video__stop:hover,
#about-us .etac-about-video__stop:focus-visible,
#about-us .etac-about-video__fullscreen:hover,
#about-us .etac-about-video__fullscreen:focus-visible {
  border-color: var(--wp--preset--color--primary);
  background: color-mix(in srgb, var(--wp--preset--color--primary) 88%, #ffffff);
  color: #ffffff;
}

#about-us .etac-about-video__stop:focus-visible,
#about-us .etac-about-video__fullscreen:focus-visible,
#about-us .etac-about-video__seek:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}

#about-us .etac-about-video__stop-icon {
  display: flex;
  gap: 3px;
  width: 13px;
  height: 14px;
}

#about-us .etac-about-video__stop-icon::before,
#about-us .etac-about-video__stop-icon::after {
  content: "";
  display: block;
  width: 5px;
  height: 14px;
  border-radius: 1px;
  background: currentColor;
}
#about-us .etac-about-video__fullscreen-icon {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
}

#about-us .etac-about-video__fullscreen-icon::before,
#about-us .etac-about-video__fullscreen-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-color: currentColor;
  border-style: solid;
}

#about-us .etac-about-video__fullscreen-icon::before {
  border-width: 2px 0 0 2px;
  clip-path: polygon(0 0, 48% 0, 48% 18%, 18% 18%, 18% 48%, 0 48%);
}

#about-us .etac-about-video__fullscreen-icon::after {
  border-width: 0 2px 2px 0;
  clip-path: polygon(52% 82%, 82% 82%, 82% 52%, 100% 52%, 100% 100%, 52% 100%);
}

#about-us .etac-about-video__time {
  min-width: 3.2em;
  font-size: var(--wp--preset--font-size--x-small, 12px);
  line-height: 1;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

#about-us .etac-about-video__seek {
  width: 100%;
  min-width: 0;
  accent-color: var(--wp--preset--color--primary);
  cursor: pointer;
}

@media (max-width: 767px) {
  #about-us .etac-about-video__controls {
    grid-template-columns: auto 1fr auto auto;
  }

  #about-us .etac-about-video__time[data-etac-vimeo-current] {
    display: none;
  }
}

@media (max-width: 767px) {
  .etac-about-table--division .etac-filter-table__table thead th:nth-child(2),
  .etac-about-table--division .etac-filter-table__table tbody td:nth-child(2) {
    min-width: 18em;
  }
}

/* ETAC Map Panel */
.etac-filter-table__table [data-etac-map-open] {
  cursor: pointer;
}

.etac-filter-table__table [data-etac-map-open]:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: -2px;
}

.etac-map-panel[hidden] {
  display: none;
}

.etac-map-panel {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
}

.etac-map-panel.is-open {
  pointer-events: auto;
}

.etac-map-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.42);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.etac-map-panel.is-open .etac-map-panel__backdrop {
  opacity: 1;
}

.etac-map-panel__dialog {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: var(--wp--preset--spacing--small, 16px);
  width: min(100%, 560px);
  height: 100dvh;
  padding: var(--wp--preset--spacing--medium, 24px);
  background: #fff;
  box-shadow: -20px 0 48px rgba(11, 18, 32, 0.18);
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.admin-bar .etac-map-panel__dialog {
  top: 32px;
  height: calc(100dvh - 32px);
}

.etac-map-panel.is-open .etac-map-panel__dialog {
  transform: translateX(0);
}

.etac-map-panel__close {
  position: absolute;
  top: var(--wp--preset--spacing--small, 16px);
  right: var(--wp--preset--spacing--small, 16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--wp--preset--color--primary);
  cursor: pointer;
  opacity: .8;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease, opacity .2s ease;
}

.etac-map-panel__close:hover,
.etac-map-panel__close:focus-visible {
  background: var(--etac-blueBg);
  border-color: currentColor;
  color: var(--wp--preset--color--primary);
  opacity: 1;
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}

.etac-map-panel__close-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}

.etac-map-panel__close-icon::before,
.etac-map-panel__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  opacity: .8;
  transform-origin: 50% 50%;
}

.etac-map-panel__close:hover .etac-map-panel__close-icon::before,
.etac-map-panel__close:hover .etac-map-panel__close-icon::after,
.etac-map-panel__close:focus-visible .etac-map-panel__close-icon::before,
.etac-map-panel__close:focus-visible .etac-map-panel__close-icon::after {
  opacity: 1;
}

.etac-map-panel__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.etac-map-panel__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.etac-map-panel__header {
  padding-right: 64px;
}

.etac-map-panel__kicker {
  margin: 0 0 var(--wp--preset--spacing--xx-small, 8px);
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  font-weight: 700;
  line-height: 1.4;
}

.etac-map-panel__title {
  margin: 0;
  color: var(--etac-text);
  font-size: var(--wp--preset--font-size--large, 24px);
  line-height: 1.25;
}

.etac-map-panel__address {
  margin: var(--wp--preset--spacing--x-small, 12px) 0 0;
  color: var(--etac-muted);
  font-size: var(--wp--preset--font-size--small, 16px);
  line-height: 1.7;
}

.etac-map-panel__frame {
  min-height: 360px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: #f8fafc;
  overflow: hidden;
}

.etac-map-panel__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.etac-map-panel__link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: var(--etac-radius-pill, 999px);
  padding: 8px 16px;
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.etac-map-panel__link:hover,
.etac-map-panel__link:focus-visible {
  background: var(--etac-blueBg);
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}

@media (max-width: 782px) {
  .admin-bar .etac-map-panel__dialog {
    top: 46px;
    height: calc(100dvh - 46px);
  }
}

@media (max-width: 767px) {
  .etac-map-panel__dialog {
    width: 100%;
    padding: var(--wp--preset--spacing--small, 16px);
  }
}

/* Page content section titles */
.wp-block-group > .etac-post-grid-intro__kicker {
  margin-block-start: var(--wp--preset--spacing--xxx-large, 80px) !important;
  margin-block-end: 0 !important;
}

.wp-block-group > .etac-post-grid-intro__kicker + .wp-block-heading.etac-post-grid-intro__title {
  margin-block-start: 0;
  padding-block-start: var(--wp--preset--spacing--x-small, 8px);
}

.wp-block-group .wp-block-heading.etac-post-grid-intro__title {
  font-size: var(--etac-post-grid-title-size, var(--wp--preset--font-size--xxxx-large, 48px));
}

/* Global page */
body:has(#global-products) .wp-site-blocks,
body:has(#global-download) .wp-site-blocks {
  overflow-x: clip;
}

body:has(#global-products),
body:has(#global-download) {
  overflow-x: clip;
}

[data-etac-global-tab-panel][hidden] {
  display: none !important;
}

[data-etac-global-tab-panel] {
  animation: etac-global-tab-panel-in 0.22s ease both;
}

@keyframes etac-global-tab-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-etac-global-tab-panel] {
    animation: none;
  }
}

.etac-global-business {
  display: grid;
  gap: var(--wp--preset--spacing--x-large, 48px);
  margin-top: var(--wp--preset--spacing--medium, 24px);
}

.etac-global-business__section {
  display: grid;
  gap: var(--wp--preset--spacing--small, 16px);
}

.etac-global-business__heading {
  margin: 0;
  color: var(--etac-text, #0b1220);
  font-size: var(--wp--preset--font-size--x-large, 24px);
  line-height: 1.35;
  font-weight: 700;
}

.etac-global-business__lead {
  max-width: 76ch;
  margin: 0;
  color: var(--etac-muted, #5f6673);
  font-size: var(--wp--preset--font-size--medium, 16px);
  line-height: 1.75;
}

.etac-global-business .etac-about-table--division .etac-filter-table__table tbody tr:nth-child(odd):not([data-etac-map-open]):not(:has(a)):hover {
  background: #f9f9f9;
}

.etac-global-business .etac-about-table--division .etac-filter-table__table tbody tr:nth-child(even):not([data-etac-map-open]):not(:has(a)):hover {
  background: #ffffff;
}

.etac-global-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--small, 16px);
  margin-top: var(--wp--preset--spacing--small, 16px);
}

#global-products > .etac-global-card-grid.etac-post-grid,
#global-download > .etac-global-card-grid.etac-post-grid {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: var(--wp--preset--spacing--medium, 24px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.etac-global-card {
  display: grid;
  gap: var(--wp--preset--spacing--xx-small, 8px);
  padding: var(--wp--preset--spacing--small, 16px);
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: var(--etac-radius, 8px);
  background: #ffffff;
  color: var(--etac-text);
}

.etac-global-card__meta,
.etac-global-card__text {
  margin: 0;
  color: var(--etac-muted);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  line-height: 1.65;
}

.etac-global-card__title {
  margin: 0;
  color: var(--etac-text);
  font-size: var(--wp--preset--font-size--large, 20px);
  line-height: 1.35;
  font-weight: 700;
}

.etac-global-card__link {
  justify-self: start;
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}

.etac-global-card__link:hover,
.etac-global-card__link:focus-visible {
  text-decoration: underline;
}

.etac-post-grid-card__more-icon:empty::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
}

.etac-global-table .etac-filter-table__table thead th:nth-child(1),
.etac-global-table .etac-filter-table__table tbody td:nth-child(1) {
  width: 16em;
  white-space: nowrap;
  font-weight: 700;
}

.etac-global-table .etac-filter-table__table thead th:nth-child(2),
.etac-global-table .etac-filter-table__table tbody td:nth-child(2) {
  width: 100%;
  min-width: 26em;
}

.etac-global-link-row {
  display: flex;
  justify-content: flex-end;
  margin: var(--wp--preset--spacing--small, 16px) 0 0;
}

@media (max-width: 767px) {
  .etac-global-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #global-products > .etac-global-card-grid.etac-post-grid,
  #global-download > .etac-global-card-grid.etac-post-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .etac-global-table .etac-filter-table__table thead th:nth-child(2),
  .etac-global-table .etac-filter-table__table tbody td:nth-child(2) {
    min-width: 20em;
  }
}

/* Home hero */
body.home .wp-site-blocks {
  overflow-x: clip;
}

.etac-home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 78svh, 860px);
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  background: var(--etac-text, #0b1220);
  color: #ffffff;
}

.etac-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.72) 0%, rgba(11, 18, 32, 0.46) 44%, rgba(11, 18, 32, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.18) 0%, rgba(11, 18, 32, 0.7) 100%);
  pointer-events: none;
}

.etac-home-hero.is-video-changing .etac-home-hero__video {
  opacity: 0.38;
}
.etac-home-hero__vimeo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: max(100%, 177.777777vh);
  height: max(100%, 56.25vw);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.28s ease;
}

.etac-home-hero.is-vimeo-active.is-vimeo-ready .etac-home-hero__vimeo.is-active {
  opacity: 1;
}
.etac-home-hero__custom-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.etac-home-hero.is-custom-video-active.is-custom-video-ready .etac-home-hero__custom-video {
  opacity: 1;
}

.etac-home-hero.is-custom-video-active.is-custom-video-ready .etac-home-hero__video {
  opacity: 0;
}

.etac-home-hero.is-vimeo-active.is-vimeo-ready .etac-home-hero__video {
  opacity: 0;
}

.etac-home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.etac-home-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1234px, 100%);
  margin: 0 auto;
  padding: clamp(96px, 14vh, 170px) var(--wp--preset--spacing--medium, 24px) clamp(64px, 9vh, 112px);
  box-sizing: border-box;
}

.etac-home-hero__logo {
  display: block;
  width: clamp(142px, 14vw, 224px);
  height: auto;
  margin: 0 0 clamp(22px, 3vw, 38px);
  filter: brightness(0) invert(1);
}

.etac-home-hero__tagline {
  margin: 0 0 var(--wp--preset--spacing--small, 16px);
  padding-top: 4px;
  color: var(--wp--preset--color--primary);
  display: inline-block;
  background-image: var(
    --wp--preset--gradient--primary,
    linear-gradient(90deg, var(--wp--preset--color--primary), var(--wp--preset--color--primary))
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0;
  max-width: none;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .etac-home-hero__tagline {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.etac-home-hero__catch {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.etac-home-hero__description {
  max-width: 820px;
  margin: clamp(22px, 2.8vw, 34px) 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0;
}

.etac-home-hero__actions {
  width: min(980px, 100%);
  margin-top: clamp(28px, 3.4vw, 44px);
}

.etac-home-hero__action-list {
  --etac-home-hero-indicator-x: var(--etac-space-2xs, var(--wp--preset--spacing--xxx-small, 4px));
  --etac-home-hero-indicator-y: var(--etac-space-2xs, var(--wp--preset--spacing--xxx-small, 4px));
  --etac-home-hero-indicator-width: 0px;
  --etac-home-hero-indicator-height: 0px;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  max-width: 100%;
  padding: var(--etac-space-2xs, var(--wp--preset--spacing--xxx-small, 4px));
  border-radius: var(--etac-radius-pill, 999px);
  background: color-mix(in srgb, var(--etac-color-surface-canvas, #ffffff) 16%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--etac-color-surface-canvas, #ffffff) 18%, transparent);
  backdrop-filter: blur(var(--etac-space-sm, var(--wp--preset--spacing--x-small, 12px)));
}

.etac-home-hero__action-indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: var(--etac-home-hero-indicator-width);
  height: var(--etac-home-hero-indicator-height);
  border-radius: var(--etac-radius-pill, 999px);
  background: var(--etac-color-primary, var(--wp--preset--color--primary));
  box-shadow: var(--etac-shadow-button, 0 16px 34px rgba(11, 18, 32, 0.14));
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--etac-home-hero-indicator-x), var(--etac-home-hero-indicator-y), 0);
  transition:
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.16s ease;
}

.etac-home-hero__action-list.is-indicator-ready .etac-home-hero__action-indicator {
  opacity: 1;
}

.etac-home-hero__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--etac-space-5xl, var(--wp--preset--spacing--x-large, 48px));
  padding: 0 var(--etac-space-xl, var(--wp--preset--spacing--medium, 24px));
  border: 0;
  border-radius: var(--etac-radius-pill, 999px);
  background: transparent;
  color: var(--etac-onPrimary, #ffffff);
  text-decoration: none;
  box-shadow: none;
  opacity: 1;
  transition: color 0.2s ease;
}

.etac-home-hero__button-label {
  color: currentColor;
  font-size: var(--wp--preset--font-size--small, 14px);
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: 0;
  white-space: nowrap;
}

.etac-home-hero__button:hover,
.etac-home-hero__button:focus-visible,
.etac-home-hero__button.is-active {
  color: var(--etac-onPrimary, #ffffff);
  opacity: 1;
}

.etac-home-hero__button:focus-visible {
  outline: 2px solid var(--etac-color-primary, var(--wp--preset--color--primary));
  outline-offset: var(--etac-space-2xs, var(--wp--preset--spacing--xxx-small, 4px));
}

.etac-home-hero__action-description {
  max-width: 820px;
  min-height: 5.55em;
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.16vw, 18px);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.etac-home-hero__action-description.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .etac-home-hero {
    min-height: 720px;
  }

  .etac-home-hero__inner {
    width: min(100%, 1234px);
    padding: 96px var(--wp--preset--spacing--medium, 24px) 52px;
  }

  .etac-home-hero__tagline {
    font-size: 16px;
    line-height: 1.34;
  }

  .etac-home-hero__catch {
    font-size: 40px;
  }

  .etac-home-hero__description {
    font-size: 15px;
    line-height: 1.8;
  }

  .etac-home-hero__actions {
    width: 100%;
  }

  .etac-home-hero__action-list {
    width: 100%;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .etac-home-hero__action-list::-webkit-scrollbar {
    display: none;
  }

  .etac-home-hero__button {
    flex: 0 0 auto;
    min-height: var(--etac-space-4xl, 40px);
    padding: 0 var(--etac-space-lg, 20px);
  }

  .etac-home-hero__button-label {
    font-size: var(--wp--preset--font-size--x-small, 12px);
  }

  .etac-home-hero__action-description {
    min-height: 7.4em;
  }
}

@media (max-width: 640px) {
  .etac-home-hero__catch {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .etac-home-hero__catch {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .etac-home-hero__catch {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .etac-home-hero__catch {
    font-size: 21px;
  }
}

@media (max-width: 360px) {
  .etac-home-hero__catch {
    font-size: 17px;
  }
}
/* End home hero */

@media (prefers-reduced-motion: reduce) {
  .etac-home-hero__video,
  .etac-home-hero__vimeo,
  .etac-home-hero__custom-video,
  .etac-home-hero__action-indicator {
    transition: none;
  }
}

/* ETAC About Base Map Layout */
#base .etac-about-base-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  margin-top: var(--wp--preset--spacing--small, 16px);
}

#base .etac-about-base-map {
  position: sticky;
  top: calc(var(--etac-header-h, 80px) + 24px);
  display: grid;
  gap: var(--wp--preset--spacing--x-small, 12px);
  min-width: 0;
}

#base .etac-about-base-map__header {
  display: grid;
  gap: 4px;
}

#base .etac-about-base-map__kicker {
  margin: 0;
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--x-small, 12px);
  line-height: 1.4;
  font-weight: 700;
}

#base .etac-about-base-map__title {
  margin: 0;
  color: var(--etac-text);
  font-size: var(--wp--preset--font-size--large, 20px);
  line-height: 1.45;
  font-weight: 700;
}

#base .etac-about-base-map__address {
  margin: 0;
  color: var(--etac-muted);
  font-size: var(--wp--preset--font-size--x-small, 13px);
  line-height: 1.65;
}

#base .etac-about-base-map__frame {
  aspect-ratio: 4 / 3;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: var(--etac-radius, 8px);
  background: #f8fafc;
}

#base .etac-about-base-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

#base .etac-about-base-map__link {
  justify-self: start;
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--x-small, 13px);
  line-height: 1.5;
  font-weight: 700;
  text-decoration: none;
}

#base .etac-about-base-map__link:hover,
#base .etac-about-base-map__link:focus-visible {
  text-decoration: underline;
}

#base .etac-about-base-table {
  min-width: 0;
}

#base .etac-about-base-table .etac-about-table--base.etac-filter-table {
  margin-top: 0;
}

#base .etac-about-base-table .etac-filter-table__scroller {
  max-height: min(70vh, 680px);
}

#base .etac-about-table--base tbody tr[data-etac-map-open] {
  cursor: pointer;
}

#base .etac-about-table--base tbody tr[data-etac-map-open].is-map-active {
  background: color-mix(in srgb, var(--wp--preset--color--primary) 10%, #ffffff);
  outline: 2px solid color-mix(in srgb, var(--wp--preset--color--primary) 40%, transparent);
  outline-offset: -2px;
}

#base .etac-about-table--base tbody tr[data-etac-map-open].is-map-active > td:first-child {
  color: var(--etac-text);
  font-weight: 700;
}

@media (max-width: 1023px) {
  #base .etac-about-base-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  #base .etac-about-base-map {
    position: static;
  }

  #base .etac-about-base-map__frame {
    min-height: 320px;
  }

  #base .etac-about-base-table .etac-filter-table__scroller {
    max-height: none;
  }
}

@media (max-width: 767px) {
  #base .etac-about-base-map__frame {
    min-height: 260px;
  }
}
