.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.bu-contact-selector {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 32px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background-color: #f9f9f9;
  padding: 24px;
  align-items: start;
}

.bu-select-wrap label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.bu-select {
  width: 100%;
  max-width: 300px;
  padding: 8px 12px;
  border: 1px solid #2a6496;
  border-radius: 4px;
  color: #2a6496;
  box-sizing: border-box;
}

.bu-contact-display {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
}

.bu-contact-rep {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  width: 60%;
  box-sizing: border-box;
}

.bu-contact-card {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
  padding: 0 8px;
}

.bu-contact-card.is-active {
  display: flex;
  min-width: 0;
}

.bu-contact-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.bu-contact-card .info {
  flex: 1 1 150px;
  min-width: 0;
}

.bu-contact-card .info strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}

.bu-contact-card .info div {
  margin-bottom: 4px;
  color: #444;
}

.bu-contact-card .info a {
  color: #2a6496;
  word-break: break-all;
  display: block;
}

@media (max-width: 1024px) {
  .bu-contact-display {
    justify-content: flex-start;
  }

  .bu-contact-card {
    justify-content: flex-start;
  }

  .bu-contact-rep {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .bu-contact-selector {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .bu-select {
    max-width: 100%;
  }

  .bu-contact-display {
    justify-content: unset;
    margin-top: 12px;
    flex-direction: column;
    gap: 12px;
  }

  .bu-contact-card.is-active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bu-contact-card img {
    width: 72px;
    height: 72px;
  }

  .bu-contact-rep {
    width: 100%;
    gap: 12px;
    align-items: flex-start;
  }

  .bu-contact-card .info {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .bu-contact-selector {
    padding: 12px;
    gap: 12px;
  }

  .bu-contact-card img {
    width: 56px;
    height: 56px;
  }

  .bu-contact-card .info strong {
    font-size: 15px;
  }
}