@layer components {
  .location-field {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  @media (min-width: 1024px) {
    .location-field {
      flex-direction: row;
      gap: 1.5rem;
    }
    .location-field > * {
      flex: 1;
    }
  }
  .location-field__country-wrapper {
    display: flex;
    flex-direction: column;
  }
  .location-field__required {
    margin-left: 0.25rem;
    color: var(--theme-text-primary);
  }
  .location-field__country-error {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    margin-top: 0.5rem;
    color: var(--theme-feedback-error);
  }
  .location-field__country-error:empty {
    margin-top: 0;
  }
  .location-field__postal-label--sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  @media (min-width: 1024px) {
    .location-field__postal-label--sr-only {
      position: static;
      width: auto;
      height: auto;
      padding: 0;
      margin: 0 0 1rem;
      overflow: visible;
      clip-path: none;
      white-space: normal;
      opacity: 0;
      pointer-events: none;
    }
  }
}