.location-header {
  margin-bottom: 0;

  @include breakpoint(sm) {
    display: flex;
    justify-content: space-between;
  }

  h1 {
    @extend %flexbox-row;
    align-items: baseline;
    margin-bottom: 0;
  }

  .country-prefix,
  .country-flag-container {
    margin: 0 $margin-normal 0 0;
  }

  .country-prefix {
    position: relative;
    top: -1.35em;
    flex-shrink: 0;
  }

  &.in-hero {
    align-items: center;

    h1 {
      color: $color-white;
      align-items: flex-end;
      line-height: 1;
    }

    .country-prefix {
      text-align: left;
      position: static;
      text-transform: uppercase;
    }

    .country-flag-container {
      margin-left: $margin-half;
    }

    .country-flag {
      height: 48px;
      width: 48px;
      display: block;
    }

    @include breakpoint(sm) {
      .country-flag-container {
        margin-left: 0;
      }

      .country-flag {
        height: 60px;
        width: 60px;
      }
    }

    @include breakpoint(md) {
      .country-flag {
        height: 72px;
        width: 72px;
      }
    }
  }
}
